@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =====================================================
   ADMIN LAB - STYLE CSS
   PARTE 1
===================================================== */


/* ===========================
   VARIABLES
=========================== */

:root {

    --primary: #0B3D91;
    --primary-light: #2563EB;
    --secondary: #60A5FA;

    --background: #F8FAFC;
    --white: #FFFFFF;

    --text: #111827;
    --text-light: #475569;

    --border: #E2E8F0;

    --shadow:
        0 20px 40px rgba(15, 23, 42, 0.08);

    --shadow-hover:
        0 25px 50px rgba(37, 99, 235, 0.15);

    --radius: 18px;

    --transition: all .3s ease;

}


/* ===========================
   JERARQUÍA TIPOGRÁFICA ELEVADA (PLUS JAKARTA SANS)
=========================== */

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.trust-title,
.section-heading h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.brand-name,
.brand-tag,
.navbar,
.topbar-link,
.eyebrow,
.section-heading-subtitle,
.button,
.service-more,
.step-number,
.input-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-name {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-tag {
    font-weight: 600;
}

.section-heading h2,
.about-text h2,
.about-values-title {
    letter-spacing: -0.02em;
}

.section-heading > p:not(.eyebrow),
.section-heading-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    line-height: 1.7;
}



/* ===========================
   RESET
=========================== */


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

}



img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}



ul {

    list-style: none;

}




/* ===========================
   HEADER
=========================== */


.topbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding:
        16px 7%;

    display: flex;

    flex-wrap: nowrap;

    align-items: center;

    justify-content: space-between;

    gap: 12px 30px;


    background:
        rgba(255,255,255,.95);

    backdrop-filter:
        blur(15px);


    border-bottom:
        1px solid rgba(226,232,240,.7);


    z-index: 1000;

}

.navbar {

    flex: 1 1 auto;

    display: flex;

    flex-wrap: nowrap;

    justify-content: center;

    gap: 18px;

    padding: 10px 0 0;

}



.brand {

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 14px;

}

.brand-text {

    text-align: center;
    white-space: nowrap;
    min-width: fit-content;

}

.brand-name,
.brand-tag {

    white-space: nowrap;

}



.brand-mark {

    width: 45px;

    height: 45px;

    display:flex;

    justify-content:center;

    align-items:center;


    border-radius: 14px;


    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );


    color:white;

    font-size: 24px;

    font-weight: 800;

}



.brand-name {

    font-size: 22px;

    font-weight: 800;

    color: var(--primary);

}



.brand-tag {

    font-size: 12px;

    color: var(--text-light);

}



.navbar {

    display:flex;

    gap:30px;

}



.navbar a {

    font-size: 14px;

    font-weight: 500;

    color:#334155;

    transition:var(--transition);

}



.navbar a:hover {

    color:var(--primary-light);

}



.topbar-link {

    padding:
        12px 22px;


    border-radius:
        50px;


    background:
        var(--primary);


    color:white;


    font-weight:600;


    transition:var(--transition);

}



.topbar-link:hover {


    background:
        var(--primary-light);


    transform:
        translateY(-3px);

}




/* ===========================
   BOTONES
=========================== */


.button {


    display:inline-flex;


    align-items:center;


    justify-content:center;


    padding:
        14px 30px;


    border-radius:
        50px;


    font-weight:600;


    transition:
        var(--transition);

}



.button-primary {


    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );


    color:white;


    box-shadow:
        0 10px 25px rgba(37,99,235,.25);

}



.button-primary:hover {


    transform:
        translateY(-4px);


    box-shadow:
        var(--shadow-hover);

}



.button-secondary {


    border:
        1px solid var(--primary);


    color:
        var(--primary);


    background:white;

}



.button-secondary:hover {


    background:
        #EFF6FF;


    transform:
        translateY(-4px);

}




/* ===========================
   HERO
=========================== */




    text-align:center;


    z-index:-2;

}



.hero-background-overlay {


    position:absolute;


    inset:0;


    background:
        rgba(255,255,255,.88);

}



.hero-background-gradient {


    position:absolute;


    inset:0;


    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(37,99,235,.20),
            transparent 40%
        );

}








/* ===========================
   HERO CARD
=========================== */


.hero-card {


    background:
        rgba(255,255,255,.75);


    backdrop-filter:
        blur(20px);


    border:
        1px solid rgba(226,232,240,.8);



    padding:
        40px;


    border-radius:
        30px;


    box-shadow:
        var(--shadow);


    width: min(100%, 480px);


}



.card-label {


    font-size:
        12px;


    color:
        var(--primary-light);


    font-weight:
        700;


    letter-spacing:
        2px;


}



.hero-card h2 {


    font-size:
        30px;


    line-height:
        1.2;


    margin:
        15px 0;

    text-align: center;


}


/* Posicionar el h2 al lado derecho del viewport en pantallas grandes */
@media (min-width: 1100px) {

    .hero-card h2 {

        position: fixed;

        right: 0;

        top: 160px;

        max-width: 420px;

        text-align: center;

        margin: 0 auto;

        background: transparent;

        z-index: 1000;

        padding-right: 24px;

    }

}


.hero-card p {


    color:
        var(--text-light);


}



.summary-grid {


    margin-top:
        30px;


    display:grid;


    grid-template-columns:
        1fr 1fr;


    gap:
        15px;


}



.summary-item {


    padding:
        18px;


    border-radius:
        15px;


    background:
        #F8FAFC;


    border:
        1px solid var(--border);


}



.summary-item span {


    display:block;


    font-size:
        13px;


    color:
        var(--text-light);


}



.summary-item strong {


    font-size:
        15px;


}/* =====================================================
   PARTE 2
   TRUST - ABOUT - SERVICES
===================================================== */


/* ===========================
   SECCIONES GENERALES
=========================== */

section[id] {
    scroll-margin-top: 100px;
}











.eyebrow {
    color: #334155; /* Gris más oscuro */
    font-size: 20px; /* Más grande */
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

/* Excepción para Metodología: mantenemos el estilo original */
.methodology .eyebrow {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}


.section {
    padding: 70px 7%;
}

.section-heading {
    max-width: 900px; /* Un poco más ancho para títulos grandes */
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 52px); /* Título más grande */
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a202c; /* Gris muy oscuro */
    text-align: center;
}

/* Excepción para Metodología: mantenemos su tamaño original */
.methodology .section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text);
}



.section-heading {

    position: relative;

    padding-top: 1rem;

}

.trust .section-heading {
    max-width: 100%;
    text-align: center;
}

.section-heading-with-image {
    display: flex;
    flex-direction: column; /* Cambiado a columna para centralizar mejor imagen y título */
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.section-heading-image {
    flex: 0 0 auto;
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section-heading-copy {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.trust-title {
    display: block;
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(38px, 5.5vw, 58px) !important;
    line-height: 1.1;
    color: #1a202c !important;
}


.trust-title span {

    display: inline;

}

.trust .section-heading-subtitle {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {

    .section-heading-with-image {

        flex-direction: column;

        align-items: center;

    }

    .trust-title {

        text-align: center;

        max-width: 100%;

    }

    .trust-title span:first-child {

        white-space: normal;

    }

}



  .section-heading p {

     color:
         var(--text-light);

     font-size:
         17px;

     margin-top:
         0.8rem;

}



/* ===========================
   EMPRESAS QUE AYUDAMOS
=========================== */


.trust {

    background:
        white;

    padding-top: 120px;

}



.trust-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

}



.trust-card {
    background-color: #00112c; /* Azul muy oscuro */
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);/* Borde punteado blanco */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    min-height: 250px;
}

.trust-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #00c6ff, #0072c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 8px 18px rgba(0, 198, 255, 0.25);
}
.trust-icon svg {
    width: 46px;
    height: 46px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-card p {
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}





/* ===========================
   QUIENES SOMOS
=========================== */


.about {


    background:
        #F1F5F9;


}



.about-content {


    display:grid;


    grid-template-columns:
        1fr;


    align-items:center;


    gap:
        40px;


}


@media(max-width:1100px){

    .about-content {

        grid-template-columns:
            1fr;

    }

}



.about-text {
    text-align: center;
}

.about-text h2 {
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
    text-align: center;
}

.about-values-title {
    margin-bottom: 30px;
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1.2;
    color: #1a202c;
    text-align: center;
}




.about-text p {


    color:
        var(--text-light);


    margin-bottom:
        20px;


    font-size:
        17px;


}



.about-text .button {


    margin-top:
        20px;


}



.about-image {


    position:
        relative;


}


.about-values {


    display: grid;

    grid-template-columns: 1fr;

    gap:
        20px;

    align-items: start;

}


.value-card {
    background-color: #00112c; /* Azul muy oscuro */
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px dotted #fff; /* Borde punteado blanco */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
    min-height: 120px;
}


.value-card h3 {
    color: white !important;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}




.about-image img {


    border-radius:
        30px;


    box-shadow:
        var(--shadow);


}



.about-image::before {


    content:"";


    position:absolute;


    width:
        180px;


    height:
        180px;


    background:
        var(--secondary);


    opacity:
        .25;


    border-radius:
        50%;


    top:
        -40px;


    right:
        -40px;


    z-index:
        -1;


}




/* ===========================
   SERVICIOS
=========================== */


#servicios {


    background:
        white;


}



.service-grid {


    display:grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        25px;


}



.service-card {

    background:
        white;

    padding:
        0;

    border-radius:
        16px;

    border:
        1px solid #e0e7ff;

    transition:
        all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    position:
        relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.service-card-header {
    background: linear-gradient(135deg, #00152d 0%, #064568 52%, #0b79ad 100%);
    min-height: 180px;
    width: 100%;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    border-bottom: 0;
}

.service-card-body {
    background: linear-gradient(to bottom, #7898df 0%, #a0b4ff 22%, #a0b4ff 100%);
    padding: 12px 18px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-top: 0;
}

.service-card h3 {
    font-size: 20px;
    margin: 0 0 3px;
    color: #000;
    font-weight: 700;
    text-align: center;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 0;
    color: #001f3f;
    font-size: 14px;
    font-weight: 700;
}

.service-more svg {
    width: 16px;
    height: 16px;
    transition: transform .3s ease;
}

.service-more:hover svg {
    transform: translateX(4px);
}

.service-description {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.service-card-header .service-description {
    width: 100%;
}

.service-description span {
    flex: 1;
    text-align: center;
}

.service-description svg {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    color: #bae6fd;
}


.service-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow-hover);

}




/* ===========================
   ANIMACIONES SUAVES
=========================== */


.trust-card,
.service-card,
.about-content {


    animation:
        fadeUp .8s ease both;


}

/* ============================
   TITULO INICIO - fondo de imagen
   Se añade por CSS para no tocar HTML
  ============================ */

.section-heading-with-image {
    position: relative;
    width: 100vw;
    left: calc(50% - 50vw);
    height: clamp(260px, 36vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imagen para titulo.jpeg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0;
    color: #fff;
}

.trust .section-heading-with-image .section-heading-subtitle {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    margin: 0;
    max-width: none;
    color: #fff;
    font-size: clamp(10px, 1.5vw, 17px);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* Ocultar la etiqueta <img> existente sin modificar HTML */
.section-heading-image {
    display: none;
}

.trust-title {
    color: #fff !important;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
    padding: 0 20px;
}

/* Centrar el título verticalmente dentro del bloque de fondo */
.section-heading-copy {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}




@keyframes fadeUp {


    from {


        opacity:
            0;


        transform:
            translateY(30px);


    }



    to {


        opacity:
            1;


        transform:
            translateY(0);



    main {
        padding-top: 105px;
    }
    }


}/* =====================================================
   PARTE 3
   BENEFITS - METHODOLOGY - PRODUCTS - CASES - NEWS
===================================================== */


/* ===========================
   BENEFICIOS
=========================== */


.benefits {

    background:
        #F8FAFC;

}



.benefits-grid {


    display:grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        25px;


}



.benefit-card {


    background:
        white;


    padding:
        35px;


    border-radius:
        22px;


    border:
        1px solid var(--border);


    transition:
        var(--transition);


}



.benefit-card:hover {


    transform:
        translateY(-8px);


    box-shadow:
        var(--shadow);


}



.benefit-card h3 {


    font-size:
        21px;


    margin-bottom:
        15px;


}



.benefit-card p {


    color:
        var(--text-light);


    font-size:
        15px;


}





/* ===========================
   METODOLOGÍA
=========================== */


.methodology {


    background:
        white;


}



.steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: stretch;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    transition: var(--transition);
}

/* Escalonado */
.step:nth-child(2) { margin-left: 40px; }
.step:nth-child(3) { margin-left: 80px; }
.step:nth-child(4) { margin-left: 120px; }
.step:nth-child(5) { margin-left: 160px; }

.step-number {
    width: 60px;
    height: 60px;
    background-color: #a0b4ff; /* Celeste/Azul claro */
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    z-index: 2;
    flex-shrink: 0;
}

.step-title {
    background-color: #a0b4ff;
    border: 2px solid #000;
    margin-left: -30px; /* Para que el círculo se monte sobre el rectángulo */
    padding: 10px 40px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    z-index: 1;
}

.step-title h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #000;
}

.step-description {
    background-color: #a0b4ff;
    border: 2px solid #000;
    border-left: none; /* Evitar doble borde */
    padding: 10px 30px;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.step-description p {
    font-size: 15px;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 800px) {
    .step:nth-child(n) { margin-left: 0; }
    .step { flex-wrap: wrap; }
    .step-title { margin-left: -15px; flex-grow: 1; }
    .step-description { border-left: 2px solid #000; margin-top: -2px; width: 100%; }
}





/* ===========================
   PRODUCTOS DIGITALES
=========================== */


#productos {


    background:
        #F1F5F9;


}



.ebooks-grid {


    display:grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        30px;


}



.ebook-card {


    background:
        white;


    border-radius:
        25px;


    overflow:hidden;


    border:
        1px solid var(--border);


    transition:
        var(--transition);


}



.ebook-card:hover {


    transform:
        translateY(-10px);


    box-shadow:
        var(--shadow-hover);


}



.ebook-card img {


    width:
        100%;


    height:
        auto;


    display:
        block;


    background:
        #ffffff;


}

.ebook-cover-costos {


    width:
        100%;


    height:
        auto;


    object-fit:
        cover;


}



.ebook-card h3 {


    padding:
        25px 25px 10px;


    font-size:
        22px;


}



.ebook-card p {


    padding:
        0 25px;


    color:
        var(--text-light);


}


/* Estilo extra para portadas */
.ebook-card {

    box-shadow:
        0 12px 30px rgba(2,6,23,0.04) !important;

    border-radius:
        18px !important;

}

.ebook-card:hover {

    box-shadow:
        0 10px 24px rgba(2,6,23,0.06) !important;

}

.ebook-card img,
.ebook-cover-costos {

    border-radius:
        12px 12px 0 0;

    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.03);

}

.ebook-card ul {


    padding:
        0 25px 0 45px;


    margin:
        8px 0 0;


    color:
        var(--text-light);


}


.ebook-card li {


    margin-bottom:
        8px;


    line-height:
        1.5;


}


.ebook-card a {


    display:inline-block;


    margin:
        25px;


    color:
        var(--primary-light);


    font-weight:
        700;


}





/* ===========================
   CASOS DE ÉXITO
=========================== */


#casos {


    background:
        white;


}



.cases-grid {


    display:grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        25px;


}



.case-card {


    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F1F5F9
        );


    padding:
        40px;


    border-radius:
        25px;


    border:
        1px solid var(--border);


    text-align:
        center;


    transition:
        var(--transition);


}



.case-card:hover {


    transform:
        translateY(-8px);


    box-shadow:
        var(--shadow);


}



.case-card h3 {


    font-size:
        22px;


    margin-bottom:
        25px;


}



.case-card span {


    display:block;


    font-size:
        55px;


    font-weight:
        800;


    color:
        var(--primary-light);


    margin-bottom:
        20px;


}



.case-card p {


    color:
        var(--text-light);



.video-testimonial-card {
    overflow: hidden;
}

.video-testimonial-card video {
    width: calc(100% + 80px);
    margin: -40px -40px 25px;
    display: block;
    aspect-ratio: 16 / 9;
    background: #00112c;
}
}





/* ===========================
   NOVEDADES
=========================== */


#novedades {


    background:
        #F8FAFC;


}



.news-grid {


    display:grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        25px;


}



.news-card {


    background:
        white;


    padding:
        35px;


    border-radius:
        22px;


    border:
        1px solid var(--border);


    transition:
        var(--transition);


}



.news-card:hover {


    box-shadow:
        var(--shadow);


    transform:
        translateY(-8px);


}



.news-card h3 {


    font-size:
        22px;


    margin-bottom:
        15px;


}



.news-card p {


    color:
        var(--text-light);


    margin-bottom:
        20px;


}



.news-card a {


    color:
        var(--primary-light);


    font-weight:
        700;


}/* =====================================================
   PARTE 4
   CONTACT - FOOTER - RESPONSIVE
===================================================== */


/* ===========================
   CONTACTO
=========================== */


.contact-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.contact-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.contact-section::after {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -80px;
}

.contact-section .section-heading h2,
.contact-section .section-heading p,
.contact-section .section-heading .eyebrow {
    color: white !important;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}




.contact-form {


    background:
        transparent;


    padding:
        40px;


    border-radius:
        25px;


    border:
        1px solid rgba(255, 255, 255, 0.35);


    box-shadow:
        none;


}



.input-group {


    display:flex;


    flex-direction:
        column;


    margin-bottom:
        20px;


}



.input-group label {


    font-size:
        14px;


    font-weight:
        600;


    margin-bottom:
        8px;


}



.input-group input,
.input-group textarea {


    width:
        100%;


    padding:
        15px 18px;


    border-radius:
        12px;


    border:
        1px solid var(--border);


    font-family:
        inherit;


    font-size:
        15px;


    outline:
        none;


    transition:
        var(--transition);


}



.input-group input:focus,
.input-group textarea:focus {


    border-color:
        var(--primary-light);


    box-shadow:
        0 0 0 4px rgba(37,99,235,.12);


}



.contact-info {


    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );


    color:white;


    padding:
        45px;


    border-radius:
        30px;


    position:
        sticky;


    top:
        120px;


}



.contact-info h3 {


    font-size:
        30px;


    margin-bottom:
        20px;


}



.contact-info p {


    opacity:
        .9;


}



.contact-item {


    margin-top:
        25px;


}



.contact-item strong {


    display:block;


    margin-bottom:
        5px;


}



.contact-info .button-secondary {


    margin-top:
        30px;


    background:
        white;


    border:
        none;


}





/* ===========================
   FOOTER
=========================== */


.footer {
    background:
        #1F2937; /* gris oscuro */
    color:
        white;


    padding:
        50px 7% 30px;


}

.footer-logo {
    width: 120px;
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 0 auto 12px;
    object-fit: contain;
}

.footer .footer-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand p {
    text-align: justify;
}

.footer-contact {
    align-self: start;
    text-align: left;
}

.footer-contact p {
    text-align: left;
    margin: 0 0 10px;
}

@media(max-width:650px){
    .footer-logo { width: 72px; }
    .footer .footer-grid > div:first-child { align-items: center; }
}



.footer-grid {


    display:grid;


    grid-template-columns:
        1.5fr 1fr 1fr;


    gap:
        40px;


}



.footer h3 {


    font-size:
        28px;


    margin-bottom:
        20px;


}



.footer h4 {


    margin-bottom:
        20px;


}



.footer p,
.footer li {


    color:
        #CBD5E1;


    font-size:
        15px;


}



.footer ul {


    display:flex;


    flex-direction:
        column;


    gap:
        10px;


}



.footer a:hover {


    color:
        white;


}



.footer-bottom {


    margin-top:
        50px;


    padding-top:
        25px;


    border-top:
        1px solid rgba(255,255,255,.15);


    text-align:center;


}

.reviews-section {

    background:
        #FFFFFF;

}

.review-card {

    max-width:
        820px;

    margin:
        0 auto;

    padding:
        40px;

    border-radius:
        28px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(180deg, #FFFFFF, #F8FAFC);

    box-shadow:
        var(--shadow);

    display:
        grid;

    gap:
        25px;

    text-align:
        center;

}

.review-card p {

    color:
        var(--text-light);

    font-size:
        17px;

    line-height:
        1.8;

}

.review-card .button {

    justify-self:
        center;

    width:
        fit-content;

}





/* ===========================
   RESPONSIVE TABLET
=========================== */


@media(max-width:1100px){


    .navbar {


        display:flex;


    }



    .hero {


        grid-template-columns:
            1fr;


    }



    .hero-card {


        max-width:
            600px;


    }



.service-grid {


        grid-template-columns:
            repeat(2,1fr);


    }



    .benefits-grid {


        grid-template-columns:
            repeat(2,1fr);


    }



    .steps {


        grid-template-columns:
            repeat(2,1fr);


    }



    .ebooks-grid,
    .cases-grid,
    .news-grid {


        grid-template-columns:
            repeat(2,1fr);


    }



    .about-content,
    .contact-container {


        grid-template-columns:
            1fr;


    }



    .contact-info {


        position:
            static;


    }



    .footer-grid {


        grid-template-columns:
            repeat(2,1fr);


    }


}




/* ===========================
   RESPONSIVE MOBILE
=========================== */


@media(max-width:650px){


    .topbar {


        padding:
            0 20px;

        flex-wrap:
            wrap;

        gap:
            12px;


    }



    .brand-tag {


        display:none;


    }



    .topbar-link {


        padding:
            10px 15px;


        font-size:
            13px;

        width:
            100%;

        max-width:
            260px;

        justify-content:
            center;


    }



    .hero {


        padding:
            130px 20px 70px;


    }



    .hero h1 {


        font-size:
            40px;


    }



    .hero-actions {


        flex-direction:
            column;

        width:
            100%;


    }



    .section {


        padding:
            70px 20px;


    }



    .section-heading h2 {


        font-size:
            32px;


    }



    .trust-grid,
    .service-grid,
    .benefits-grid,
    .steps,
    .ebooks-grid,
    .cases-grid,
    .news-grid,
    .footer-grid {


        grid-template-columns:
            1fr;


    }



    .hero-card {


        padding:
            25px;


    }



    .summary-grid {


        grid-template-columns:
            1fr;


    }



    .contact-form {


        padding:
            25px;


    }
  }
/* AJUSTE HEADER MENU */

.topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.navbar {
    display: flex !important;
    flex-direction:row !important;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex: 1;
}


.navbar a {

    display: inline-flex !important;

    flex-direction: row !important;

    align-items: center;

    white-space: nowrap;

    width: auto;

    max-width: none;

    min-width: 0;

}
.navbar ul {

    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;

}
/* ===========================
   VALORES DE LA EMPRESA (DISEÑO DINÁMICO ELEVADO)
=========================== */
.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 24px;
    align-items: stretch;
}

.about-values .value-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 34px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

/* Barra superior luminosa con gradiente animado */
.about-values .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B3D91 0%, #2563EB 50%, #60A5FA 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-values .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.18), 0 0 1px rgba(37, 99, 235, 0.3);
    border-color: #93C5FD;
}

.about-values .value-card:hover::before {
    transform: scaleX(1);
}

/* Icono Dinámico */
.about-values .value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-values .value-card:hover .value-icon {
    transform: scale(1.15) rotate(6deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    border-color: transparent;
}

.about-values .value-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.about-values .value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 540px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}





