:root {
    --primary: #032d69;
    --secondary: #006ea3;
    --accent: #00b7ff;
    --dark: #0b1a33;
    --text: #0f1c2e;
    --muted: #55657f;
    --bg: #f4f7fb;
    --card: #ffffff;
    --radius: 16px;
    --shadow: 0 18px 60px rgba(3, 45, 105, 0.15);
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.navbar {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #005ea8, #00b7ff);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
}

.logo small {
    font-size: 12px;
    opacity: 0.85;
}

.nav-links {
    display: none;
}

.nav-links a {
    color: #e9f2ff;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #ffffff;
}

.btn-nav {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('https://static.wixstatic.com/media/e9cb38_87ed959146de41c1a64ccfc64b24185b~mv2.jpg/v1/fill/w_1800,h_1100,al_c,q_90,enc_auto/e9cb38_87ed959146de41c1a64ccfc64b24185b~mv2.jpg') center/cover no-repeat;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(14, 86, 150, 0.84), rgba(0, 183, 255, 0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    padding: 130px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

h1 {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.3;
}

.hero-highlight {
    font-size: clamp(72px, 12vw, 108px);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.lead {
    font-size: 17px;
    color: #eaf4ff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.btn-primary, .btn-secondary {
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #00b7ff, #005ea8);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 95, 168, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.btn-outline {
    border: 1.5px solid #ffffff;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    padding: 14px 34px;
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.section {
    position: relative;
}

.section#proceso {
    background: #ffffff;
}

.padded {
    padding: 90px 0;
}

.section-header {
    display: grid;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 720px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.overline {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
}

.section h2 {
    font-size: clamp(28px, 3vw, 38px);
    color: #0b356f;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.highlight {
    font-weight: 700;
    color: var(--primary);
}

.section h2 .highlight {
    color: #0d2b63;
    font-weight: 800;
}

.section-lead {
    color: var(--muted);
    font-size: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px 40px;
    justify-items: center;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
    background: #f5f6f9;
    border-radius: 6px;
    padding: 26px 28px;
    border: 1px solid #eef2f7;
    box-shadow: none;
    min-height: 170px;
    width: 100%;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: #f6b445;
    line-height: 1;
}

.step-body {
    display: grid;
    gap: 12px;
}

.step-icon {
    font-size: 26px;
    color: #64aee0;
}

.step-body p {
    color: #0d2b63;
    font-size: 16px;
    line-height: 1.5;
}

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

.services {
    background: var(--bg);
}

.service-card,
.service-grid,
.icon-circle {
    /* legacy styles removed for new about layout */
}

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.about-copy h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-meta {
    display: grid;
    gap: 10px;
    max-width: 360px;
}

.about-meta .overline.muted {
    color: var(--muted);
    letter-spacing: normal;
    text-transform: none;
    font-weight: 500;
}

.about-meta p {
    color: var(--text);
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.stats,
.stats-inner,
.stats-cards,
.stat-box,
.cta-group {
    /* legacy stats styles removed for new mosaic layout */
}

.cta-banner,
.cta-content,
.cta-actions {
    /* estilos previos de CTA eliminados para nueva sección de logos */
}

.candidate,
.candidate-box {
    /* se reemplaza por carrusel de testimonios */
}

.contact {
    position: relative;
    background: #0b2f6b;
}

.hero-contact {
    padding: 120px 0 40px;
    color: #fff;
}

.contact-overlay.hero {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 41, 89, 0.92) 0%, rgba(0, 152, 209, 0.78) 100%),
        url('https://static.wixstatic.com/media/e9cb38_18c16a794c0d4e9c97775554402d7705~mv2.jpg/v1/fill/w_2000,h_801,al_c,q_85,enc_avif,quality_auto/e9cb38_18c16a794c0d4e9c97775554402d7705~mv2.jpg') center/cover no-repeat;
    z-index: 0;
}

.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.contact-hero-left {
    display: grid;
    gap: 16px;
    color: #fff;
}

.contact-hero-left h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-hero-left .outline {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #fff;
    color: #0b2f6b;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.pill-btn.ghost {
    background: #fff;
    color: #0b2f6b;
}

.question {
    margin-top: 6px;
    font-weight: 600;
    font-size: 18px;
}

.contact-hero-right {
    color: #fff;
    display: grid;
    gap: 12px;
}

.form-heading {
    font-weight: 700;
    line-height: 1.4;
}

.contact-form.outline {
    background: transparent;
    padding: 0;
    display: grid;
    gap: 14px;
    box-shadow: none;
}

.contact-form.outline .form-row {
    display: block;
}

.contact-form.outline input,
.contact-form.outline textarea {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 12px 16px;
}

.contact-form.outline textarea {
    border-radius: 18px;
    min-height: 120px;
}

.contact-form.outline input::placeholder,
.contact-form.outline textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form.outline input:focus,
.contact-form.outline textarea:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    border-color: transparent;
}

.pill-submit {
    background: #fff;
    color: #0b2f6b;
    border-radius: 24px;
    padding: 12px 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.privacy.light {
    color: rgba(255, 255, 255, 0.85);
}

.footer {
    background: #0a2f70;
    color: #ffffff;
    padding: 26px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.floating-whatsapp {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 90;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
}

.testimonials {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 74, 135, 0.8), rgba(8, 116, 176, 0.85)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1900&q=70') center/cover no-repeat;
    z-index: 0;
}

.testimonials-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
}

.testimonials-heading {
    text-align: center;
    color: #fff;
    display: grid;
    gap: 10px;
}

.testimonials-heading h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
}

.testimonials-heading .highlight {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #f6b445;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.heading-line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.testimonial-cards {
    position: relative;
    min-height: 260px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 10px;
    padding: 28px 34px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: grid;
    gap: 14px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.quote {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.quote strong {
    color: #0d2b63;
    font-weight: 700;
}

.author {
    font-weight: 700;
    color: #0d2b63;
    font-size: 17px;
}

.company {
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

.testimonials-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.05);
}

.team-showcase {
    background: #fff;
    padding: 80px 0 70px;
    text-align: center;
}

.team-header {
    display: grid;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.team-header h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    color: #0b356f;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.team-header .section-lead.dark {
    color: #2b3d59;
}

.team-slider {
    position: relative;
    width: min(980px, 92vw);
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
}

.team-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-slide img {
    width: 420px;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.team-slide.prev {
    opacity: 0.3;
    transform: translateX(-32%) scale(0.7);
    z-index: 1;
}

.team-slide.next {
    opacity: 0.3;
    transform: translateX(32%) scale(0.7);
    z-index: 1;
}

.team-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.team-caption {
    margin: 34px auto 22px;
    max-width: 820px;
}

.team-caption h3 {
    font-size: clamp(22px, 3vw, 30px);
    color: #0b356f;
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.team-caption h3 .highlight {
    color: #0d2b63;
    font-weight: 800;
}

.team-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 10px auto 0;
    color: #0d2b63;
}

.team-metrics strong {
    font-size: 32px;
    color: #6ab6e5;
    display: block;
    line-height: 1.2;
}

.team-metrics span {
    font-weight: 700;
}


    background: #fff;
    transform: scale(1.05);
}
.brands {
    background: #fff;
    padding: 140px 0 130px;
}

.brands-header {
    text-align: center;
    display: grid;
    gap: 10px;
    margin-top: 50px;
}

.brands-header h2 {
    font-size: clamp(26px, 3vw, 32px);
    color: #0b356f;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 12px 0 18px;
}

.brand-underline {
    width: 120px;
    height: 3px;
    background: #e0a13b;
    margin: 0 auto;
}

.brands-marquee {
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 34px;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 38px;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.brands-track img {
    height: 70px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brands-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brands-header h2 .highlight {
    color: #0d2b63;
    font-weight: 800;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mosaic {
    background: #f5fbff;
    padding: 0;
}
.mosaic {
    background: #f5fbff;
    padding: 0;
}

.mosaic-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    min-height: 260px;
}

.mosaic-row:nth-child(odd) {
    background: #f5fbff;
}

.mosaic-row:nth-child(even) {
    background: #e8f4ff;
}

.mosaic-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 260px;
}

.mosaic-text {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 40px 24px;
    color: var(--primary);
    gap: 10px;
}

.mosaic-heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.mosaic-text p {
    color: #2b3d59;
    font-size: 16px;
    line-height: 1.5;
}

.accent {
    color: #6ab6e5;
}

.mosaic-cta {
    background: #062b63;
    display: grid;
    place-items: center;
    padding: 24px 16px 32px;
}

.mosaic-cta .btn-primary {
    background: #0d5fa5;
    box-shadow: none;
    padding: 14px 32px;
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(3, 45, 105, 0.96);
        border-radius: 14px;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 14px;
        display: none;
        width: min(250px, 80vw);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        background: rgba(12, 33, 72, 0.92);
    }

    .hero-content {
        padding-top: 140px;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }

    .cta-content, .candidate-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 90vh;
    }

    .hero-badge {
        grid-template-columns: 1fr;
    }

    .cta-actions, .hero-actions, .cta-group {
        width: 100%;
    }

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