/* =========================================================
   SyCA Servicios Corporativos — site.css
   Paleta: azul marino #0E2440 · dorado #C6953C · blanco #FFFFFF
   Tipografías: Playfair Display (títulos) · Inter (texto)
   ========================================================= */

.lang-switch {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    padding:0px 5px
}

    .lang-switch a {
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        color: var(--navy);
    }

        .lang-switch a:hover {
            color: var(--gold);
        }

.lang-flag {
    height: 0.9em;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(14,36,64,.12);
    display: block;
}

:root {
    --navy: #0E2440;
    --navy-dark: #0A1B31;
    --gold: #C6953C;
    --gold-dark: #A87B2C;
    --ink: #1E2A38;
    --muted: #5A6B7D;
    --bg-light: #F6F8FA;
    --white: #FFFFFF;
    --radius: 10px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    /*/max-width: 1140px;*/
    margin: 0 auto;
    padding: 0px;
}

/* ---------- Botones ---------- */
.btn {
    display: inline-block;
    padding: 10px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }

/* ---------- Header ---------- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.6rem;
    color: var(--navy);
    cursor: pointer;
    
    
}
.topbar {
    background: var(--white);
    border-bottom: 1px solid #E6EAEF;
    position: relative;
 
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;

}
.brand { display: flex; align-items: center; gap: 0px; text-decoration: none; }
/*/.brand img { height: 46px; }*/
.brand img { height:100px;width:auto }
/*.brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.brand-text small {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}
*/
.mainnav {
    display: flex;
    gap: 20px;
}
.mainnav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.mainnav a:hover { color: var(--gold); }

.welcome-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--navy);
    border-top: 1px solid #E6EAEF;
}

.welcome-strip1 h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.25rem);
    color: var(--navy);
}

.bandera {
    height: 1em;
    width: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* ---------- Hero ---------- */
.hero {

    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/images/hero.jpg') top/cover no-repeat, linear-gradient(120deg, #16304F, #0E2440);
    color: var(--white);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,27,49,.92) 0%, rgba(10,27,49,.55) 55%, rgba(10,27,49,.15) 100%);
}
.hero-content { position: relative; max-width: 620px; margin-left: calc((100% - 1140px) / 2 + 24px); padding: 70px 24px; }
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
}
.hero .gold { color: var(--gold); }
.gold-line { width: 64px; height: 4px; background: var(--gold); margin: 22px 0; }
.hero h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.hero p { max-width: 460px; color: #D7DEE7; font-size: 0.98rem; }
.hero-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Ventajas ---------- */
.features { padding: 64px 0; background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.feature { text-align: center; padding: 0 26px; border-right: 1px solid #E6EAEF; }
.feature:last-child { border-right: none; }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy);
    margin-bottom: 10px;
}
.feature p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Sectores ---------- */
.sectors { padding: 70px 0; background: var(--bg-light); }
.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 48px;
}
.section-title.light { color: var(--white); }
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}
.sector { text-align: center; }
.sector-img {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
}
.sector-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 3px solid var(--white);
}
.sector h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy);
    margin-bottom: 8px;
}
.sector p { font-size: 0.85rem; color: var(--muted); }


/* ---------- Por qué SyCA ---------- */
.why { padding: 80px 0; background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 5px;
}
.eyebrow {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding: 5px;
}
.eyebrow-center { text-align: center; }
.why-text h2 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.25;
    padding:5px;
}




.why-text p {
    color: var(--muted);
    margin-bottom: 14px;
    max-width: 480px;
}
.why-text .btn { margin-top: 12px; }
.why-img {
    min-height: 360px;
    border-radius: var(--radius);
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
}

/* ---------- Servicios ---------- */
.services { padding: 72px 0 84px; background: var(--navy); }
.services .section-title { margin-bottom: 40px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.service-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 28px 18px;
    text-align: center;
    transition: transform .15s ease, border-color .15s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}
.service-card p { color: #A9B6C4; font-size: 0.82rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); border-top: 1px solid #E6EAEF; }
.footer-inner { padding: 34px 24px 20px; }
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
    .footer-cta h4 {
        font-family: var(--font-display);
        font-size: 1.2rem;
        color: var(--gold);
    }
    .footer-cta p {
        color: var(--white);
        font-size: 0.9rem;
    }
.footer-copy {
    text-align: center;
    color: var(--white);
    font-size: 0.78rem;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid #EEF1F5;
}


/* ---------     var(--white)        - Pagina Nuestros Servicios ---------- */



/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .hero-content { margin-left: 0; }
}
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .mainnav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        border-bottom: 1px solid #E6EAEF;
        box-shadow: 0 8px 20px rgba(14,36,64,.08);
        z-index: 50;
    }

        .mainnav.open {
            display: flex;
        }

        .mainnav a {
            padding: 12px 24px;
        }
    .features-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .feature:nth-child(2) { border-right: none; }
    .sectors-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2.3rem; }
    .features-grid, .sectors-grid, .services-grid { grid-template-columns: 1fr; }
    .feature { border-right: none; }

    .brand img { height: 90px; }
    .topbar-inner { gap: 12px; }
    .topbar-inner .btn-gold { white-space: nowrap; padding: 10px 14px; font-size: 0.85rem; }

}




/* =========================================================
   PÁGINA SERVICIOS — agregar al final de site.css
   ========================================================= */

/* ---------- Encabezado de página ---------- */
.page-head {
    background: var(--navy);
    padding: 56px 0 48px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
}


/* ---------- Razones ---------- */
.reasons {
    padding: 64px 0;
    background: var(--white);
}

.reasons-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 36px;
}

.reasons-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 40px;
    max-width: 920px;
    margin: 0 auto;
    padding:5px;
}

    .reasons-grid li {
        position: relative;
        padding: 10px 0 10px 30px;
        font-size: 0.93rem;
        color: var(--ink);
        border-bottom: 1px solid #EEF1F5;
    }

        .reasons-grid li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }

/* ---------- Planes ---------- */
.plans {
    padding: 64px 0 84px;
    background: var(--bg-light);
}

    .plans .section-title {
        margin-bottom: 44px;
    }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #E3E8EE;
    border-radius: var(--radius);
    padding: 34px 26px 28px;
    box-shadow: 0 2px 10px rgba(14,36,64,.05);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(14,36,64,.10);
    }

.plan-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.plan-divider {
    width: 44px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 18px;
}

.plan-includes {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--muted);
    text-align: center;
    margin-bottom: 14px;
}

.plan-list {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 24px;
}

    .plan-list li {
        position: relative;
        padding: 7px 0 7px 24px;
        font-size: 0.86rem;
        color: var(--ink);
        line-height: 1.45;
    }

        .plan-list li::before {
            content: "•";
            position: absolute;
            left: 6px;
            color: var(--gold);
            font-weight: 700;
        }

.plan-btn {
    text-align: center;
}

/* Botón alternativo con borde azul (para las cards claras) */
.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: var(--white);
    }

/* Card destacada (Premium) */
.plan-featured {
    border: 2px solid var(--gold);
}

.plan-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Card oscura (Corporativo) */
.plan-dark {
    background: var(--navy);
    border-color: var(--navy);
}

    .plan-dark .plan-name {
        color: var(--white);
    }

    .plan-dark .plan-includes {
        color: #A9B6C4;
    }

    .plan-dark .plan-list li {
        color: #D7DEE7;
    }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .plans-grid, .reasons-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}


/* =========================================================
   PÁGINA NOSOTROS — VERSIÓN 2 (editorial, sobria)
   IMPORTANTE:
   1) Si antes pegaste los bloques "PÁGINA NOSOTROS" y
      "SECCIÓN LA OPORTUNIDAD" en site.css, BORRALOS enteros.
   2) Pegá TODO este bloque al final de site.css.
   Es autosuficiente: contiene todos los estilos de la página.
   ========================================================= */

/* ---------- Encabezado ---------- */
.about-head {
    padding: 84px 0 72px;
}

.about-lead {
    max-width: 680px;
    margin: 26px auto 0;
    color: #B9C5D3;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.75;
    text-align: center;
padding: 10px
    
}

.about-lead-strong {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 18px;
}

/* ---------- Quiénes somos ---------- */
.about-intro {
    padding: 50px 10px 30px;
    background: var(--white);
    border-bottom:1px #4A5A6B solid

}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 26px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.titulo-segundo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 26px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.titulo-tercero {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 26px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}


.about-title.centered {
    text-align: center;
}

    .about-title.light {
        color: var(--white);
    }

.about-intro-grid p {
    color: #4A5A6B;
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-highlight {
    background: var(--white);
    padding: 48px  40px;
    border-left: 2px solid var(--gold);
}


.about-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.45;
}

.about-quote1 {
    font-family: var(--font-display);
    color: var(--gold);
    line-height: 1.45;
}

.about-quote-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--navy);
    font-weight:100
}

/* ---------- La oportunidad ---------- */
.about-opportunity {
    padding: 96px 0;
    background: var(--navy);
}

    .about-opportunity .about-title {
        margin-bottom: 56px;
    }

.opp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.opp-item {
    padding: 8px 32px 8px 28px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.opp-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.opp-item h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.opp-item p {
    font-size: 0.86rem;
    color: #93A3B5;
    line-height: 1.7;
}

.opp-closing {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    text-align: center;
    margin-top: 64px;
    line-height: 1.6;
}

/* ---------- Solución integral ---------- */
.about-services {
    padding: 96px 0;
    background: #FAFBFC;
}

.about-services-lead {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    color: #4A5A6B;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 72px;
    max-width: 880px;
    margin: 0 auto;
}

    .about-list li {
        position: relative;
        padding: 16px 0 16px 28px;
        font-size: 0.94rem;
        color: var(--ink);
        border-bottom: 1px solid #E8ECF1;
        line-height: 1.6;
    }

        .about-list li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--gold);
        }

.about-note {
    max-width: 640px;
    margin: 44px auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: #6B7A8A;
    font-size: 0.98rem;
}

/* ---------- Tres pilares ---------- */
.about-international {
    padding: 96px 0;
    background: var(--white);
}

.about-int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

.about-int-card {
    border-top: 1px solid var(--gold);
    padding-top: 28px;
}

    .about-int-card h3 {
        font-family: var(--font-display);
        font-size: 1.18rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .about-int-card p {
        font-size: 0.9rem;
        color: #4A5A6B;
        line-height: 1.8;
    }

/* ---------- Visión y Misión ---------- */
.about-vm {
    padding: 88px 0;
    background: var(--navy);
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.vm-card {
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: 36px;
}

    .vm-card .eyebrow {
        margin-bottom: 18px;
    }

    .vm-card p {
        color: #C3CEDA;
        font-size: 0.98rem;
        line-height: 1.85;
    }

/* ---------- Valores ---------- */
.about-values {
    padding: 96px 0;
    background: var(--white);
}

    .about-values .section-title {
        margin-bottom: 56px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #E8ECF1;
    border-left: 1px solid #E8ECF1;
    max-width: 1020px;
    margin: 0 auto;
}

.value-card {
    padding: 40px 36px;
    border-right: 1px solid #E8ECF1;
    border-bottom: 1px solid #E8ECF1;
    background: var(--white);
    text-align: left;
}

    .value-card h3 {
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        color: var(--navy);
        margin-bottom: 14px;
    }

        .value-card h3::after {
            content: "";
            display: block;
            width: 22px;
            height: 1px;
            background: var(--gold);
            margin-top: 12px;
        }

    .value-card p {
        font-size: 0.88rem;
        color: #5A6B7D;
        line-height: 1.75;
    }

/* ---------- Cierre ---------- */
.about-closing {
    padding: 110px 0;
    background: var(--navy);
    text-align: center;
}

.closing-tagline {
    color: #93A3B5;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 26px;
}

.closing-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 34px;
}

.about-closing h2 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    max-width: 780px;
    margin: 0 auto 24px;
    letter-spacing: -0.01em;
}

.about-closing .closing-text {
    color: #93A3B5;
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 0.96rem;
    line-height: 1.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-intro-grid, .about-vm-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .about-int-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-card {
        padding-left: 24px;
    }
}

@media (max-width: 600px) {
    .opp-grid, .values-grid, .about-list {
        grid-template-columns: 1fr;
    }

    .about-closing h2 {
        font-size: 1.5rem;
    }

    .about-head {
        padding: 56px 5px 48px;
    }

    .about-intro, .about-opportunity, .about-services,
    .about-international, .about-values {
        padding: 64px 5px;
    }



}


/* =========================================================
PÁGINA ¿POR QUÉ ARGENTINA? — agregar al final de site.css
(Reutiliza .page-head, .about-lead, .about-lead-strong,
    .eyebrow, .about-closing y .btn ya existentes)
========================================================= */

.why-head {
   padding: 84px 0 72px;

}

/* ---------- Cifras clave ---------- */
.why-stats {
    background: var(--white);
    border-bottom: 1px solid #E8ECF1;
    padding: 64px 0 28px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat {
    text-align: center;
    padding: 0 28px;
    border-left: 1px solid #E8ECF1;
}

    .stat:first-child {
        border-left: none;
    }

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: #6B7A8A;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.stats-note {
    text-align: right;
    font-size: 0.7rem;
    color: #A9B4C0;
    margin-top: 30px;
}

/* ---------- Argumentos ---------- */
.why-args {
    padding: 88px 0 40px;
    background: var(--white);
}

.why-arg {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    padding: 56px 0;
    border-top: 1px solid #E8ECF1;
}

    .why-arg:first-child {
        border-top: none;
        padding-top: 0;
    }

.why-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding:5px;
}

.why-arg-head h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.01em;
    padding: 5px;
}

.why-arg-body p {
    color: #4A5A6B;
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 18px;
    padding: 5px;
}

    .why-arg-body p:last-child {
        margin-bottom: 0;
    }

.why-takeaway {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.02rem !important;
    color: var(--navy) !important;
    border-left: 2px solid var(--gold);
    padding-left: 22px;
    margin-top: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .why-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .stat:nth-child(3) {
        border-left: none;
    }

    .why-arg {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 44px 0;
    }
}

@media (max-width: 600px) {
    .why-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-left: none;
    }

    .why-head {
        padding: 56px 0 48px;
    }

    .why-args {
        padding: 56px 0 20px;
    }

    .why-text{
        padding:5px 5px 5px 5px
    }
    .sectors {
        padding: 5px 5px 5px 5px
    }
    .services {
        padding: 50px 5px 50px 5px
    }
    

}


/* =========================================================
   PÁGINA FAQ — agregar al final de site.css
   (Reutiliza .page-head, .about-lead, .eyebrow, .about-closing)
   ========================================================= */

.faq-head {
    padding: 84px 0 72px;
}

.faq {
    padding: 80px 0 96px;
    background: var(--white);
    
}

.faq-container {
    max-width: 820px;
    padding: 5px;
}

.faq-group-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 56px 0 8px;
    padding: 5px;
}

    .faq-group-title:first-child {
        margin-top: 0;
    }

/* ---------- Acordeón ---------- */
.faq-item {
    border-bottom: 1px solid #E8ECF1;
}

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        position: relative;
        padding: 24px 48px 24px 0;
        font-family: var(--font-display);
        font-size: 1.08rem;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.5;
        transition: color .15s ease;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--gold-dark);
        }

        /* Indicador + / − */
        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--gold);
            transition: transform .2s ease;
        }

    .faq-item[open] summary::after {
        content: "−";
    }

    .faq-item[open] summary {
        color: var(--navy);
    }

.faq-answer {
    padding: 0 48px 28px 0;
}

    .faq-answer p {
        color: #4A5A6B;
        font-size: 0.93rem;
        line-height: 1.85;
    }

        .faq-answer p + p {
            margin-top: 14px;
        }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .faq-head {
        padding: 56px 0 48px;
    }

    .faq {
        padding: 56px 0 64px;
    }

    .faq-item summary {
        font-size: 1rem;
        padding-right: 36px;
    }

    .faq-answer {
        padding-right: 0;
    }
}

/* =========================================================
   PÁGINA CONTACTO
   ========================================================= */

.contact-head {
    padding: 84px 0 72px;

}

.contact {
    padding: 80px 0 96px;
    background: var(--white);
}

.contact-container {
    max-width: 760px;
}

.contact-form {
    display: block;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding:10px
}

.form-field {
    margin-bottom: 26px;
    padding: 10px
}

    .form-field label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.6px;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        width: 100%;
        padding: 13px 2px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--ink);
        background: transparent;
        border: none;
        border-bottom: 1px solid #D5DCE4;
        border-radius: 0;
        outline: none;
        transition: border-color .2s ease;
        box-sizing: border-box;
    }

    .form-field textarea {
        resize: vertical;
        line-height: 1.7;
    }

        .form-field input::placeholder,
        .form-field textarea::placeholder {
            color: #A9B4C0;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            border-bottom-color: var(--gold);
        }

    .form-field select {
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C6953C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 4px center;
        padding-right: 26px;
    }

.field-error {
    display: block;
    font-size: 0.75rem;
    color: #B4432F;
    margin-top: 8px;
}

.form-error-summary {
    color: #B4432F;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

    .form-error-summary ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error {
    border-bottom-color: #B4432F;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid #E8ECF1;
}

.form-privacy {
    font-size: 0.75rem;
    color: #8A97A5;
    line-height: 1.6;
    max-width: 380px;
}

.form-submit {
    padding: 15px 40px;
    white-space: nowrap;
}

.form-success {
    text-align: center;
    padding: 64px 32px;
    border: 1px solid #E8ECF1;
    border-top: 2px solid var(--gold);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

.form-success p:last-child {
    color: #5A6B7D;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .contact-head {
        padding: 56px 0 48px;
    }

    .contact {
        padding: 56px 0 64px;
    }

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

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .form-privacy {
        max-width: none;
    }
}


/* ---------- Sectores clickeables (Home) ---------- */
.sector-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease;
}

    .sector-link:hover {
        transform: translateY(-5px);
    }

        .sector-link:hover .sector h3 {
            color: var(--gold-dark);
        }



/* ---------- Banda de cierre (Home) ---------- */
.cta-band {
    padding: 110px 0;
    background: #FDFCFA;
    border-top: 1px solid #E8E4DC;
    text-align: center;
}

.cta-band-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.cta-band-logo {
    height: 100px;
    width: auto;
    mix-blend-mode: multiply;
}


.cta-band-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
    line-height: 1;
}

.cta-band-sub {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    color: var(--gold);
}

.cta-band .closing-rule {
    margin-bottom: 34px;
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

    .cta-band-title em {
        font-style: italic;
        color: var(--gold);
    }

.cta-band-text {
    color: #6B7A8A;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 38px;
    line-height: 1.8;
}

.cta-band-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-band-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: color .15s ease;
}

    .cta-band-link:hover {
        color: var(--gold-dark);
    }

@media (max-width: 600px) {
    .cta-band {
        padding: 64px 0;
    }

    .cta-band-title {
        font-size: 2rem;
    }
}

/* =========================================================
   SECCIÓN MERCADO (Agroindustria y otras páginas de sectores)
   ========================================================= */

.about-market {
    padding: 96px 0;
    background: var(--white);
    border-bottom: 1px #4A5A6B solid
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 48px 0;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}


    .market-image {
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(14,36,64,.10);
        background: var(--bg-light);
        aspect-ratio: 4 / 3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .market-image img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform .3s ease;
            object-fit: contain;
        }

        .market-image:hover img {
            transform: scale(1.02);
        }

    .market-text {
        max-width: 920px;
        margin: 48px auto 0;
        padding: 10px
    }

        .market-text p {
            color: #4A5A6B;
            font-size: 0.96rem;
            line-height: 1.85;
            margin-bottom: 18px;
        }

            .market-text p:last-child {
                margin-bottom: 0;
            }

    @media (max-width: 600px) {
        .about-market {
            padding: 64px 0;
        }

        .market-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }