/* ========================================
   SOFTWARE - ESTILOS ESPECÍFICOS (línea Skedule)
   ======================================== */

/* Base Conkavo */
@import url('style.css');

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --software-primary: #DFBF12;
    --software-secondary: #f1c40f;
    --software-accent: #f39c12;
    --software-dark: #1a1a1a;
    --software-light: #f8fafc;
    --software-text: #2d2d2d;
    --software-gray: #6b7280;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 80px 0;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   HERO
   ======================================== */
.software-hero {
    background: linear-gradient(135deg, var(--software-dark) 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.software-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23DFBF12" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: .3;
}

.software-hero-badge {
    background: rgba(223, 191, 18, .15);
    border: 1px solid rgba(223, 191, 18, .3);
    color: #DFBF12;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.software-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.software-hero-subtitle {
    font-size: 1.5rem;
    color: var(--software-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.software-hero-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.software-btn-primary {
    background: linear-gradient(45deg, var(--software-primary), var(--software-secondary));
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(223, 191, 18, .4);
    margin-right: 15px;
    margin-bottom: 15px;
}

.software-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 191, 18, .6);
    color: #000;
}

.software-btn-secondary {
    background: transparent;
    color: var(--software-primary);
    padding: 15px 30px;
    border: 2px solid var(--software-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
    margin-bottom: 15px;
}

.software-btn-secondary:hover {
    background: var(--software-primary);
    color: #000;
    transform: translateY(-2px);
}

/* ========================================
   SECCIONES GENÉRICAS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--software-primary);
    opacity: .9;
}

/* ========================================
   SOLUCIONES
   ======================================== */
.software-solutions {
    background: linear-gradient(135deg, var(--software-dark) 0%, #000 100%);
    padding: 80px 0;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    color: #fff;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--software-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   PROCESO
   ======================================== */
.software-process {
    background: #ffffff;
    padding: 80px 0;
    color: var(--software-text);
}

.software-process .section-title {
    color: var(--software-text);
}

.software-process .section-subtitle {
    color: var(--software-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all .3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: var(--software-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .15);
}

.process-number {
    font-size: 2rem;
    margin-bottom: 12px;
}

.process-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-content p {
    font-size: .95rem;
    color: var(--software-gray);
}

/* ========================================
   BENEFICIOS
   ======================================== */
.software-benefits {
    background: linear-gradient(135deg, var(--software-dark) 0%, #000 100%);
    padding: 80px 0;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all .3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--software-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

/* ========================================
   UX/UI
   ======================================== */
.software-ux {
    background: #ffffff;
    padding: 100px 0;
}

.ux-card {
    background: linear-gradient(135deg, var(--software-primary) 0%, var(--software-secondary) 100%);
    color: #000;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(223, 191, 18, .25);
}

.ux-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ux-text {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, .8);
}

/* ========================================
   TECNOLOGÍAS
   ======================================== */
.software-tech {
    background: #fff;
    padding: 80px 0;
}

.software-tech .section-title {
    color: var(--software-text);
}

.software-tech .section-subtitle {
    color: var(--software-gray);
}

.tech-groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-group-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--software-text);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.tech-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    border-color: var(--software-primary);
    box-shadow: 0 10px 25px rgba(223, 191, 18, .2);
}

.tech-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(223, 191, 18, .2));
}

.tech-item span {
    font-size: .9rem;
    color: #374151;
    font-weight: 600;
}

/* ========================================
   MODERNÍZATE
   ======================================== */
.software-modernize {
    background: linear-gradient(135deg, var(--software-dark) 0%, #000 100%);
    padding: 80px 0;
    color: #fff;
}

.modernize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.modernize-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
}

.modernize-item:hover {
    transform: translateY(-4px);
    border-color: var(--software-primary);
    box-shadow: 0 12px 30px rgba(223, 191, 18, .2);
}

.modernize-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ========================================
   CASOS DE USO
   ======================================== */
.software-cases {
    background: #ffffff;
    padding: 80px 0;
}

.software-cases .section-title {
    color: var(--software-text);
}

.software-cases .section-subtitle {
    color: var(--software-gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    color: var(--software-text);
}

.case-card:hover {
    transform: translateY(-3px);
    border-color: var(--software-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .15);
}

/* ========================================
   IMPACTO/ESTADÍSTICAS
   ======================================== */
.software-impact {
    background: linear-gradient(135deg, var(--software-primary) 0%, var(--software-secondary) 100%);
    color: #000;
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.impact-item {
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.impact-text {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* ========================================
   TESTIMONIOS
   ======================================== */
.software-testimonials {
    background: #fff;
    padding: 80px 0;
}

.software-testimonials .section-title {
    color: var(--software-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonial {
    background: #f8fafc;
    border-radius: 18px;
    padding: 28px;
    border-left: 4px solid var(--software-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--software-text);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    color: var(--software-primary);
    font-weight: 600;
}

/* ========================================
   CTA FINAL
   ======================================== */
.software-cta {
    background: linear-gradient(135deg, var(--software-primary) 0%, var(--software-secondary) 100%);
    color: #000;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, .8);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

/* ========================================
   PRECIOS (placeholder)
   ======================================== */
.software-pricing {
    background: linear-gradient(135deg, var(--software-dark) 0%, #000 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.software-plan-btn {
    background: var(--software-primary);
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
    display: inline-block;
}

.software-plan-btn:hover {
    background: var(--software-secondary);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .software-hero-title {
        font-size: 2.5rem;
    }

    .software-hero-subtitle {
        font-size: 1.2rem;
    }

    .benefits-grid,
    .solutions-grid,
    .tech-grid,
    .cases-grid,
    .impact-grid,
    .modernize-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .software-hero-title {
        font-size: 2rem;
    }

    .software-btn-primary,
    .software-btn-secondary {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* Asegurar que sobresalgan del contenedor */
.lian-automate-grid,
.lian-capabilities-grid,
.lian-how-steps,
.lian-diffs-grid {
    overflow: visible;
}

/* Neutralizar transform de AOS en tarjetas */
.lian-automate-item[data-aos],
.lian-capabilities-card[data-aos],
.lian-step[data-aos],
.lian-diff-card[data-aos] {
    transform: none !important;
}

/* Base con transición */
.lian-automate-item,
.lian-capabilities-card,
.lian-step,
.lian-diff-card {
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Hover forzado (mismo efecto en todas) */
.lian-automate-item:hover,
.lian-capabilities-card:hover,
.lian-step:hover,
.lian-diff-card:hover {
    transform: translateY(-10px) !important;
    /* ajusta a -2px o -5px si prefieres */
    border-color: var(--lian-primary) !important;
    box-shadow: 0 15px 40px rgba(223, 191, 18, .25) !important;
    z-index: 5 !important;
}