/* ========== RESET Y VARIABLES GLOBALES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* ========== HEADER / NAVEGACIÓN ========== */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 60px;
    width: auto;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--primary-color);
}



/*=========================
    HERO
==========================*/

.hero{
    background:#16245d;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-texto{
    width:50%;
    color:#fff;
}

.hero-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:40px;
}

.hero-logo img{
    width:55px;
}

.hero-logo span{
    color:#27c1c8;
    font-size:2rem;
    font-weight:600;
}

.hero h1{
    font-size:4.3rem;
    font-weight:800;
    line-height:1.05;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero p{
    font-size:1.6rem;
    margin-bottom:40px;
    color:#f2f2f2;
}

.btn-hero{
    display:inline-block;
    padding:15px 40px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:12px;
    font-size:1.3rem;
    font-weight:bold;
    transition:.3s;
}

.btn-hero:hover{
    background:#24c5cf;
    color:#fff;
}

/*=========================
    IMAGEN
==========================*/

.hero-imagen{
    width:45%;
    display:flex;
    justify-content:flex-end;
}

.hero-imagen img{
    width:100%;
    max-width:650px;
}

/*=========================
    FIGURA BLANCA INFERIOR
==========================*/

.hero-bottom{
    position:absolute;
    bottom:-5px;
    left:0;
    width:100%;
    height:180px;
    background:#fff;

    clip-path:polygon(
        0 100%,
        0 70%,
        26% 10%,
        100% 100%
    );
}




/*=========================
    RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{
    min-height:auto;
    padding:100px 0;
}

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-texto{
    width:100%;
}

.hero-logo{
    justify-content:center;
}

.hero-imagen{
    width:100%;
    justify-content:center;
    margin-top:50px;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    font-size:1.2rem;
}

.hero-bottom{
    height:100px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:2.2rem;
}

.hero-logo span{
    font-size:1.5rem;
}

.hero-imagen img{
    max-width:360px;
}

.btn-hero{
    padding:14px 30px;
}

}

/*=========================
      SECCIÓN 2
==========================*/

.modulo{
    position:relative;
    background:#fff;
    padding:90px 0 130px;
    overflow:hidden;
}

.modulo .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*=========================
        TÍTULO
==========================*/

.modulo-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.modulo-icono{
    width:110px;
    height:110px;
    background:#16245d;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.modulo-icono img{
    width: 110px;
}

.modulo-header h2{
    font-size:3.3rem;
    font-weight:900;
    text-transform:uppercase;
    color:#111;
    margin-bottom:10px;
}

.modulo-header p{
    font-size:2rem;
    color:#666;
    line-height:1.1;
}

/*=========================
      CONTENIDO
==========================*/

.modulo-contenido{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.modulo-imagen{
    flex:1;
    text-align:center;
}

.modulo-imagen img{
    width:100%;
    max-width:700px;
}

.modulo-listas{
    flex:1.3;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}

.modulo-listas ul{
    list-style:none;
    padding:0;
}

.modulo-listas li{
    position:relative;
    padding-left:40px;
    margin-bottom:28px;
    font-size:1.6rem;
    font-weight:600;
    color:#111;
    line-height:1.3;
}

/* Icono */

.modulo-listas li::before{

    content:"✓";

    position:absolute;
    left:0;
    top:2px;

    width:24px;
    height:24px;

    border:2px solid #16245d;
    color:#16245d;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:13px;
}

/*=========================
      FRANJA AZUL
==========================*/
/*
.modulo-bottom{

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:150px;

    background:#16245d;

    clip-path:polygon(
        0 70%,
        55% 100%,
        100% 35%,
        100% 100%,
        0 100%
    );

}
*/
/*=========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

    .modulo-header{
        flex-direction:column;
        text-align:center;
    }

    .modulo-contenido{
        flex-direction:column;
    }

    .modulo-listas{
        grid-template-columns:1fr;
    }

    .modulo-header h2{
        font-size:2.4rem;
    }

    .modulo-header p{
        font-size:1.4rem;
    }

    .modulo-imagen img{
        max-width:350px;
    }

}

/*====================================
            SECCIÓN 3
====================================*/

.ventas{

    position:relative;
    background:#16245d;
    color:#fff;
    overflow:hidden;
    padding:140px 0 140px;

}

.ventas .container{

    width:90%;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;

}

/*=========================
        Encabezado
==========================*/

.ventas-header{

    display:flex;
    align-items:center;
    gap:25px;

    margin-bottom:70px;

}

.ventas-icono{

    width:110px;
    height:110px;

    border:3px rgba(255,255,255,.7);
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.ventas-icono img{

    width: 110px;

}

.ventas-header h2{

    font-size:3.5rem;
    font-weight:900;
    margin-bottom:10px;
    text-transform:uppercase;

}

.ventas-header p{

    font-size:1.9rem;
    color:#fff;
    line-height:1.15;
    max-width:900px;

}

/*=========================
        Contenido
==========================*/

.ventas-contenido{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

}

.ventas-listas{
    flex:1.4;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.ventas-listas ul{

    list-style:none;
    padding:0;

}

.ventas-listas li{
    position:relative;
    padding-left:40px;
    margin-bottom:28px;
    font-size:1.55rem;
    font-weight:600;
    line-height:1.3;
}

.ventas-listas li::before{

    content:"✓";

    position:absolute;
    left:0;
    top:3px;

    width:24px;
    height:24px;

    border:2px solid #ffffff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:12px;
    color:#fff;

}

/*=========================
          Imagen
==========================*/

.ventas-imagen{
    flex:0.8;
    text-align:right;
}

.ventas-imagen img{
    width:100%;
    max-width:520px;
}

/*=========================
     Franja superior
==========================*/

.ventas-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:140px;
    background:#fff;
    clip-path:polygon(
        0 0,
        100% 0,
        75% 100%,
        0 20%
    );
}

/*=========================
     Franja inferior
==========================*/

.ventas-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:120px;

    background:#fff;

    clip-path:polygon(
        0 0,
        100% 65%,
        100% 100%,
        25% 100%
    );

}

/*=========================
        Responsive
==========================*/

@media (max-width:992px){
    .ventas{
        padding:110px 0;
    }
    .ventas-header{
        flex-direction:column;
        text-align:center;
    }
    .ventas-header h2{
        font-size:2.5rem;
    }
    .ventas-header p{
        font-size:1.3rem;
    }
    .ventas-contenido{
        flex-direction:column-reverse;
    }
    .ventas-listas{
        grid-template-columns:1fr;
    }
    .ventas-imagen{
        text-align:center;
    }
    .ventas-imagen img{
        max-width:350px;
    }
}

/*==================================
        SECCIÓN 4
===================================*/

.credito{

    position:relative;
    overflow:hidden;

    background:#fff;

    padding:170px 0 170px;

}

.credito .container{

    width:90%;
    max-width:1250px;
    margin:auto;

    position:relative;
    z-index:2;

}

.credito h2{

    font-size:4rem;
    font-weight:900;
    text-transform:uppercase;

    margin-bottom:50px;

    color:#000;

}

/*==========================
      Contenido
==========================*/

.credito-contenido{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;

}

.credito-imagen{

    flex:1;
    text-align:center;

}

.credito-imagen img{

    width:100%;
    max-width:620px;

}

.credito-texto{

    flex:.8;

}

.credito-texto p{

    font-size:2rem;
    line-height:1.7;
    color:#111;

}

/*==========================
      Franja superior
==========================*/

.credito-top{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:120px;

    background:#16245d;

    clip-path:polygon(
        0 0,
        100% 0,
        100% 30%,
        30% 100%
    );

}

/*==========================
      Franja inferior
==========================*/

.credito-bottom{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:120px;

    background:#16245d;

    clip-path:polygon(
        0 100%,
        75% 20%,
        100% 100%
    );

}

/*==========================
      Responsive
==========================*/

@media(max-width:992px){

.credito{

    padding:120px 0;

}

.credito h2{

    text-align:center;
    font-size:2.8rem;

}

.credito-contenido{

    flex-direction:column;

}

.credito-texto{

    text-align:center;

}

.credito-texto p{

    font-size:1.4rem;

}

.credito-imagen img{

    max-width:420px;

}

}


/*======================================
        SECCIÓN 5 - FIDELIZACIÓN
=======================================*/

.fidelizacion{

    position:relative;
    overflow:hidden;

    background:#16245d;

    color:#fff;

    padding:170px 0;

}

.fidelizacion .container{

    width:90%;
    max-width:1250px;
    margin:auto;

    position:relative;
    z-index:2;

}

/*=========================
        TÍTULO
=========================*/

.fidelizacion h2{

    text-align:center;

    font-size:4rem;
    font-weight:900;

    margin-bottom:70px;

    text-transform:uppercase;

}

/*=========================
        CONTENIDO
=========================*/

.fidelizacion-contenido{

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:80px;

}

.fidelizacion-imagen{

    flex:1;

    text-align:center;

}

.fidelizacion-imagen img{

    width:100%;
    max-width:430px;

}

.fidelizacion-texto{

    flex:1;

}

.fidelizacion-texto p{

    font-size:2rem;
    line-height:1.8;

    color:#fff;

}

.fidelizacion-texto strong{

    color:#ffffff;
    font-weight:700;

}

/*=========================
      FRANJA SUPERIOR
=========================*/

.fidelizacion-top{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:130px;

    background:#fff;

    clip-path:polygon(
        0 0,
        75% 0,
        100% 100%,
        0 100%
    );

}

/*=========================
      FRANJA INFERIOR
=========================*/

.fidelizacion-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:130px;

    background:#fff;

    clip-path:polygon(
        0 0,
        100% 100%,
        0 100%
    );

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.fidelizacion{

    padding:120px 0;

}

.fidelizacion h2{

    font-size:2.8rem;

}

.fidelizacion-contenido{

    flex-direction:column;

    text-align:center;

}

.fidelizacion-imagen img{

    max-width:320px;

}

.fidelizacion-texto p{

    font-size:1.4rem;

}

}


/*======================================
        SECCIÓN 6 - REPORTES/PRODUCTOS MÁS VENDIDOS
=======================================*/

.reportes{

    position:relative;
    overflow:hidden;

    background:#fff;

    padding:100px 0;

}

.reportes .container{

    width:90%;
    max-width:1250px;
    margin:auto;

    position:relative;
    z-index:2;

}

/*=========================
        TÍTULO
=========================*/

.reportes h2{

    text-align:center;

    font-size:4rem;
    font-weight:900;

    margin-bottom:70px;

    text-transform:uppercase;

    color:#111;

}

/*=========================
        CONTENIDO
=========================*/

.reportes-contenido{

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:80px;

}

.reportes-imagen{

    flex:1;

    text-align:center;

}

.reportes-imagen img{

    width:100%;
    max-width:430px;

}

.reportes-texto{

    flex:1;

}

.reportes-texto p{

    font-size:2rem;
    line-height:1.8;

    color:#333;

}

/*=========================
      FRANJA SUPERIOR
=========================*/

.reportes-top{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:130px;

    background:#16245d;

    clip-path:polygon(
        0 0,
        75% 0,
        100% 100%,
        0 100%
    );

}

/*=========================
      FRANJA INFERIOR
=========================*/

.reportes-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:130px;

    background:#16245d;

    clip-path:polygon(
        0 0,
        100% 100%,
        0 100%
    );

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.reportes{

    padding:120px 0;

}

.reportes h2{

    font-size:2.8rem;

}

.reportes-contenido{

    flex-direction:column;

    text-align:center;

}

.reportes-imagen img{

    max-width:320px;

}

.reportes-texto p{

    font-size:1.4rem;

}

}


/*======================================
        SECCIÓN 7 - REPORTES INTELIGENTES
=======================================*/

.reportes-inteligentes{

    position:relative;
    overflow:hidden;

    background:#16245d;
    color:#fff;

    padding:140px 0 140px;

}

.reportes-inteligentes .container{

    width:90%;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;

}

/*=========================
        ENCABEZADO
=========================*/

.reportes-int-header{

    display:flex;
    align-items:center;
    gap:25px;

    margin-bottom:70px;

}

.reportes-int-icono{

    width:110px;
    height:110px;

    border:3px solid rgba(255,255,255,.7);
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.reportes-int-icono img{

    width:55px;

}

.reportes-int-header h2{

    font-size:3.5rem;
    font-weight:900;
    margin-bottom:10px;
    text-transform:uppercase;

}

.reportes-int-header p{

    font-size:1.9rem;
    color:#fff;
    line-height:1.15;
    max-width:900px;

}

/*=========================
        CONTENIDO
=========================*/

.reportes-int-contenido{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

}

.reportes-int-listas{
    flex:1.4;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.reportes-int-listas ul{

    list-style:none;
    padding:0;

}

.reportes-int-listas li{
    position:relative;
    padding-left:40px;
    margin-bottom:28px;
    font-size:1.55rem;
    font-weight:600;
    line-height:1.3;
}

.reportes-int-listas li::before{

    content:"✓";

    position:absolute;
    left:0;
    top:3px;

    width:24px;
    height:24px;

    border:2px solid #ffffff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:12px;
    color:#fff;

}

/*=========================
        IMAGEN
=========================*/

.reportes-int-imagen{
    flex:0.8;
    text-align:right;
}

.reportes-int-imagen img{
    width:100%;
    max-width:520px;
}

/*=========================
     FRANJA SUPERIOR
=========================*/

.reportes-int-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:140px;
    background:#fff;
    clip-path:polygon(
        0 0,
        100% 0,
        75% 100%,
        0 20%
    );
}

/*=========================
     FRANJA INFERIOR
=========================*/

.reportes-int-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:120px;

    background:#fff;

    clip-path:polygon(
        0 0,
        100% 65%,
        100% 100%,
        25% 100%
    );

}

/*=========================
        RESPONSIVE
=========================*/

@media (max-width:992px){
    .reportes-inteligentes{
        padding:110px 0;
    }
    .reportes-int-header{
        flex-direction:column;
        text-align:center;
    }
    .reportes-int-header h2{
        font-size:2.5rem;
    }
    .reportes-int-header p{
        font-size:1.3rem;
    }
    .reportes-int-contenido{
        flex-direction:column-reverse;
    }
    .reportes-int-listas{
        grid-template-columns:1fr;
    }
    .reportes-int-imagen{
        text-align:center;
    }
    .reportes-int-imagen img{
        max-width:350px;
    }
}


/*======================================
        SECCIÓN 8 - BENEFICIOS
=======================================*/

.beneficios{

    position:relative;
    overflow:hidden;

    background:#fff;

    padding:100px 0;

}

.beneficios .container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/*=========================
        TÍTULO
=========================*/

.beneficios h2{

    text-align:center;

    font-size:4rem;
    font-weight:900;

    margin-bottom:80px;

    text-transform:uppercase;

    color:#16245d;

}

/*=========================
        GRID DE BENEFICIOS
=========================*/

.beneficios-grid{

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:50px;

    max-width:1200px;
    margin:0 auto;

}

/*=========================
        TARJETA DE BENEFICIO
=========================*/

.beneficio-card{

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    transition:transform 0.3s ease, box-shadow 0.3s ease;

}

.beneficio-card:hover{

    transform:translateY(-10px);

}

/*=========================
        ICONO
=========================*/

.beneficio-icono{

    width:110px;
    height:110px;

    
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:20px;

    flex-shrink:0;

}

.beneficio-icono img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/*=========================
        TEXTO
=========================*/

.beneficio-card p{

    font-size:1.5rem;
    font-weight:600;

    color:#111;

    line-height:1.4;

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

    .beneficios{
        padding:80px 0;
    }

    .beneficios h2{
        font-size:2.8rem;
        margin-bottom:60px;
    }

    .beneficios-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:40px;
    }

    .beneficio-icono{
        width:70px;
        height:70px;
    }

    .beneficio-icono img{
        width:45px;
        height:45px;
        object-fit: contain;
    }

    .beneficio-card p{
        font-size:1.2rem;
    }

}

@media(max-width:576px){

    .beneficios{
        padding:60px 0;
    }

    .beneficios h2{
        font-size:2rem;
        margin-bottom:40px;
    }

    .beneficios-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .beneficio-icono{
        width:80px;
        height:80px;
    }

    .beneficio-icono img{
        width:40px;
    }

    .beneficio-card p{
        font-size:1rem;
    }

}


/*======================================
        SECCIÓN 9 - PLANES
=======================================*/

.planes{

    position:relative;
    overflow:hidden;

    background:#16245d;
    color:#fff;

    padding:140px 0;

}

.planes .container{

    width:90%;
    max-width:1300px;
    margin:auto;

    position:relative;
    z-index:2;

}

/*=========================
        HEADER
=========================*/

.planes-header{

    text-align:center;
    margin-bottom:70px;

}

.planes-header h2{

    font-size:3.5rem;
    font-weight:900;

    margin-bottom:20px;
    text-transform:uppercase;

}

.planes-highlight{

    color:#24c5cf;

}

.planes-header p{

    font-size:1.3rem;
    color:#ddd;

    line-height:1.6;

}

/*=========================
        TABLA
=========================*/

.planes-tabla-wrapper{

    overflow-x:auto;
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);

}

.planes-tabla{

    width:100%;
    border-collapse:collapse;

    font-size:0.9rem;

}

/*=========================
        HEADER DE TABLA
=========================*/

.planes-tabla thead{

    background:#f8f9fa;

}

.planes-tabla th{

    padding:15px 8px;
    text-align:center;
    font-weight:600;
    color:#111;

    border-bottom:2px solid #e0e0e0;

}

.planes-caracteristicas{

    text-align:left;
    background:#e8f4f8;
    color:#0077a8 !important;
    font-weight:600;
    font-size:0.9rem;

}

.planes-plan{

    background:#f0f0f0;

}

.planes-plan.basico{

    background:#007bff;
    color:#fff;

}

.planes-plan.estandar{

    background:#28a745;
    color:#fff;

}

.planes-plan.premium{

    background:#0077a8;
    color:#fff;

}

.planes-plan.profesional{

    background:#dc3545;
    color:#fff;

}

.planes-plan.empresarial{

    background:#ffc107;
    color:#111;

}

.plan-nombre{

    font-size:0.8rem;
    font-weight:700;
    margin-bottom:5px;

}

.plan-precio{

    font-size:1rem;
    font-weight:900;

}

.planes-plan.empresarial .plan-precio{

    color:#111;

}

/*=========================
        FILAS DE TABLA
=========================*/

.planes-tabla tbody tr{

    border-bottom:1px solid #e0e0e0;

    transition:background-color 0.3s ease;

}

.planes-tabla tbody tr:hover{

    background:#f5f5f5;

}

.planes-tabla tbody tr:nth-child(odd){

    background:#fafafa;

}

.planes-tabla tbody tr:nth-child(odd):hover{

    background:#f0f0f0;

}

.planes-tabla tbody td{

    padding:12px 6px;
    text-align:center;
    color:#111;

}

.planes-tabla tbody td.planes-caracteristicas{

    text-align:left;
    background:#e8f4f8;
    color:#0077a8;
    font-weight:600;
    font-size:0.85rem;

}

.planes-tabla tbody td img{

    width:16px;
    height:16px;

}

/*=========================
        FOOTER DE TABLA
=========================*/

.planes-tabla tfoot tr{

    border-top:2px solid #e0e0e0;
    background:#f8f9fa;

}

.planes-tabla tfoot th{

    padding:15px 8px;
    text-align:center;
    color:#111;
    background:#f8f9fa;

}

.planes-tabla tfoot th.planes-licencia{

    text-align:left;
    background:#e8f4f8;
    color:#0077a8;
    font-weight:600;
    font-size:0.9rem;

}

.licencia-precio{

    display:inline-block;
    background:#007bff;
    color:#fff;
    padding:6px 12px;
    border-radius:8px;
    font-weight:700;
    font-size:0.85rem;

}

/*=========================
     FRANJAS
=========================*/

.planes-top{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:120px;

    background:#fff;

    clip-path:polygon(
        0 0,
        100% 0,
        100% 70%,
        0 30%
    );

}

.planes-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:120px;

    background:#fff;

    clip-path:polygon(
        0 20%,
        100% 0,
        100% 100%,
        0 100%
    );

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

    .planes-header h2{
        font-size:2.5rem;
    }

    .planes-header p{
        font-size:1.1rem;
    }

    .planes-tabla-wrapper{
        padding:15px;
        border-radius:15px;
    }

    .planes-tabla th,
    .planes-tabla td{
        padding:12px 6px;
        font-size:0.85rem;
    }

    .plan-nombre{
        font-size:0.85rem;
    }

    .plan-precio{
        font-size:1rem;
    }

    .licencia-precio{
        font-size:0.85rem;
        padding:6px 12px;
    }

}

@media(max-width:768px){

    .planes{
        padding:100px 0;
    }

    .planes-header h2{
        font-size:2rem;
    }

    .planes-tabla th,
    .planes-tabla td{
        padding:10px 4px;
        font-size:0.75rem;
    }

    .planes-tabla tbody td img{
        width:20px;
        height:20px;
    }

}


/*======================================
        SECCIÓN 10 - OFERTAS
=======================================*/

.ofertas{

    position:relative;
    overflow:hidden;

    background:#fff;

    padding:120px 0;

}

.ofertas .container{

    width:90%;
    max-width:1300px;
    margin:auto;

    position:relative;
    z-index:2;

}

/*=========================
        TÍTULO
=========================*/

.ofertas h2{

    text-align:center;

    font-size:4rem;
    font-weight:900;

    margin-bottom:80px;

    text-transform:uppercase;

    color:#007bff;

}

/*=========================
        CONTENIDO
=========================*/

.ofertas-contenido{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;

    flex-wrap:wrap;

}

.ofertas-card{

    display:flex;
    justify-content:center;
    align-items:center;

    transition:transform 0.3s ease;

}

.ofertas-card:hover{

    transform:scale(1.05);

}

.ofertas-card img{

    width:100%;
    max-width:250px;

    object-fit:contain;

}

.ofertas-persona img{

    max-width:350px;

}

/*=========================
     FRANJA SUPERIOR
=========================*/

.ofertas-top{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:120px;

    background:#16245d;

    clip-path:polygon(
        0 0,
        100% 0,
        100% 70%,
        0 30%
    );

}

/*=========================
     FRANJA INFERIOR
=========================*/

.ofertas-bottom{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:120px;

    background:#16245d;

    clip-path:polygon(
        0 20%,
        100% 0,
        100% 100%,
        0 100%
    );

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

    .ofertas{
        padding:100px 0;
    }

    .ofertas h2{
        font-size:2.8rem;
        margin-bottom:60px;
    }

    .ofertas-contenido{
        gap:30px;
    }

    .ofertas-card img{
        max-width:200px;
    }

    .ofertas-persona img{
        max-width:280px;
    }

}

@media(max-width:576px){

    .ofertas{
        padding:80px 0;
    }

    .ofertas h2{
        font-size:2rem;
        margin-bottom:40px;
    }

    .ofertas-contenido{
        gap:20px;
        flex-direction:column;
    }

    .ofertas-card img{
        max-width:150px;
    }

    .ofertas-persona img{
        max-width:200px;
    }

}


/*======================================
        SECCIÓN 11 - CONTACTO
=======================================*/

.contacto{

    position:relative;
    overflow:hidden;

    background:#16245d;
    color:#fff;

    padding:100px 0 60px 0;

}

.contacto .container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/*=========================
        HEADER
=========================*/

.contacto-header{

    text-align:center;
    margin-bottom:60px;

}

.contacto-header h2{

    font-size:3rem;
    font-weight:900;

    margin-bottom:20px;
    text-transform:uppercase;

}

.contacto-header p{

    font-size:1.1rem;
    color:#ddd;

    line-height:1.8;

}

/*=========================
        CONTENIDO
=========================*/

.contacto-contenido{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;

}

.contacto-formulario-wrapper{

    flex:1;

}

.contacto-imagen{

    flex:0.9;
    text-align:center;

}

.contacto-imagen img{

    width:100%;
    max-width:400px;

}

/*=========================
        FORMULARIO
=========================*/

.contacto-formulario{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.form-group{

    display:flex;
    flex-direction:column;

}

.form-group input,
.form-group textarea,
.form-group select{

    padding:12px 15px;
    border:none;
    border-radius:8px;

    font-family:'Exo 2', sans-serif;
    font-size:1rem;

    background:#fff;
    color:#111;

    transition:box-shadow 0.3s ease;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    outline:none;
    box-shadow:0 0 0 3px rgba(36, 197, 207, 0.3);

}

.form-group textarea{

    resize:vertical;
    min-height:120px;

}

.form-row{

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;

}

.country-input{

    display:grid;
    grid-template-columns:100px 1fr;
    gap:10px;

    align-items:stretch;

}

.country-input select{

    padding:12px 10px;

}

.country-input input{

    padding:12px 15px;

}

/*=========================
        BOTÓN
=========================*/

.btn-enviar{

    padding:14px 40px;
    background:#24c5cf;
    color:#fff;

    border:none;
    border-radius:8px;

    font-size:1.1rem;
    font-weight:700;

    cursor:pointer;

    transition:background 0.3s ease, transform 0.2s ease;

    align-self:flex-start;

}

.btn-enviar:hover{

    background:#1bb5c1;
    transform:translateY(-2px);

}

.btn-enviar:active{

    transform:translateY(0);

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

    .contacto{
        padding:80px 0;
    }

    .contacto-header h2{
        font-size:2.2rem;
    }

    .contacto-header p{
        font-size:1rem;
    }

    .contacto-contenido{
        flex-direction:column;
        gap:40px;
    }

    .contacto-formulario-wrapper{
        width:100%;
    }

    .contacto-imagen{
        width:100%;
    }

    .contacto-imagen img{
        max-width:300px;
    }

}

@media(max-width:576px){

    .contacto{
        padding:60px 0;
    }

    .contacto-header h2{
        font-size:1.8rem;
    }

    .contacto-header p{
        font-size:0.95rem;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .country-input{
        grid-template-columns:1fr;
    }

    .btn-enviar{
        width:100%;
        align-self:stretch;
    }

}




/*======================================
        BOTÓN FLOTANTE WHATSAPP (NINJA STYLE)
=======================================*/

.whatsapp-container{
    position:fixed !important;
    bottom:20px !important;
    right:20px !important;
    z-index:9999 !important;
    font-family:'Exo 2', sans-serif !important;
}

/* ========== BOTÓN PRINCIPAL ========== */

.whatsapp-btn{
    position:relative !important;
    width:60px !important;
    height:60px !important;
    
    border:none !important;
    border-radius:50% !important;
    cursor:pointer !important;
    
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    
    padding:0 !important;
    margin:0 !important;
    
    box-shadow:0 4px 12px rgba(0, 0, 0, 0.15) !important;
    
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    
    animation:whatsapp-pulse 2s infinite !important;
}

.whatsapp-btn:hover{
    transform:scale(1.1) !important;
    box-shadow:0 8px 24px rgba(37, 211, 102, 0.4) !important;
    animation:none !important;
}

.whatsapp-btn:active{
    transform:scale(0.95) !important;
}

.whatsapp-btn img{
    width:60px !important;
    height:60px !important;
    object-fit:contain !important;
}

/* ========== ANIMACIÓN PULSE ========== */

@keyframes whatsapp-pulse{
    0%, 100%{
        box-shadow:0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50%{
        box-shadow:0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* ========== MENÚ DESPLEGABLE ========== */

.whatsapp-menu{
    position:absolute !important;
    bottom:80px !important;
    right:0 !important;
    
    width:300px !important;
    background:#fff !important;
    border-radius:12px !important;
    
    box-shadow:0 5px 40px rgba(0, 0, 0, 0.16) !important;
    
    opacity:0 !important;
    visibility:hidden !important;
    transform:translateY(10px) !important;
    
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    
    overflow:hidden !important;
}

.whatsapp-menu.active{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}

/* ========== HEADER DEL MENÚ ========== */

.whatsapp-menu-header{
    background:linear-gradient(135deg, #25D366 0%, #20BA59 100%) !important;
    color:#fff !important;
    padding:16px !important;
    
    display:flex !important;
    gap:12px !important;
    align-items:flex-start !important;
}

.whatsapp-menu-icon{
    width:40px !important;
    height:40px !important;
    object-fit:contain !important;
    background:rgba(255, 255, 255, 0.2) !important;
    border-radius:50% !important;
    padding:8px !important;
}

.whatsapp-menu-text h3{
    font-size:16px !important;
    font-weight:600 !important;
    margin:0 !important;
    padding:0 !important;
    color:#fff !important;
    line-height:1.3 !important;
}

.whatsapp-menu-text p{
    font-size:13px !important;
    margin:4px 0 0 0 !important;
    padding:0 !important;
    color:rgba(255, 255, 255, 0.9) !important;
    line-height:1.3 !important;
}

/* ========== CONTENIDO DEL MENÚ ========== */

.whatsapp-menu-content{
    padding:16px !important;
    font-size:14px !important;
    color:#555 !important;
    line-height:1.5 !important;
    border-bottom:1px solid #f0f0f0 !important;
}

/* ========== BOTÓN DEL MENÚ ========== */

.whatsapp-menu-button{
    display:block !important;
    width:100% !important;
    padding:14px 16px !important;
    background:#25D366 !important;
    color:#fff !important;
    text-decoration:none !important;
    text-align:center !important;
    font-weight:600 !important;
    font-size:14px !important;
    
    border:none !important;
    cursor:pointer !important;
    
    transition:all 0.3s ease !important;
    
    box-sizing:border-box !important;
}

.whatsapp-menu-button:hover{
    background:#20BA59 !important;
    text-decoration:none !important;
}

.whatsapp-menu-button:active{
    background:#1da94d !important;
}

.whatsapp-menu-button span{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
}

/* ========== RESPONSIVE ========== */

@media(max-width:576px){
    .whatsapp-container{
        bottom:15px !important;
        right:15px !important;
    }
    
    .whatsapp-btn{
        width:55px !important;
        height:55px !important;
    }
    
    .whatsapp-btn img{
        width:28px !important;
        height:28px !important;
    }
    
    .whatsapp-menu{
        width:280px !important;
        bottom:70px !important;
    }
}


/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 0;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar ul {
        gap: 15px;
        font-size: 14px;
        justify-content: center;
    }

    .seccion {
        padding: 50px 20px;
        min-height: auto;
    }

    .seccion h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .navbar ul {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    .seccion {
        padding: 40px 15px;
    }

    .seccion h2 {
        font-size: 24px;
    }
}



