:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #dbe4ee;
    --card: #ffffff;

    /* Marca */
    --accent: #0f9f6e;
    /* verde */
    --accent-2: #16347a;
    /* azul */
    --accent-orange: #f59e0b;
    /* naranja */

    /* Suaves */
    --accent-orange-soft: #fff7ed;
    --accent-blue-soft: #eef4ff;
    --accent-green-soft: #ecfdf5;
    --surface-soft: #f8fbff;
    --surface-soft-2: #f4f8fc;

    /* Sombras */
    --shadow-soft: 0 10px 30px rgba(22, 52, 122, 0.08);
    --shadow-card: 0 6px 20px rgba(15, 23, 42, 0.05);
}

/* =========================
   Base
   ========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(900px 420px at 8% 0%, rgba(15, 159, 110, 0.06), transparent 55%),
        radial-gradient(900px 420px at 92% 10%, rgba(22, 52, 122, 0.05), transparent 55%),
        var(--bg);
    color: var(--text);
    font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1120px;
    margin: auto;
    padding: 0 16px;
}

.section {
    padding: 72px 0;
}

.section.alt {
    background: linear-gradient(180deg, var(--surface-soft) 0%, #ffffff 100%);
}

.lead {
    color: var(--muted);
}

.accent {
    color: var(--accent);
}

.hidden {
    display: none !important;
}

/* =========================
   Header
   ========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(130%) blur(10px);
    border-bottom: 1px solid rgba(22, 52, 122, 0.10);
    box-shadow: 0 8px 24px rgba(22, 52, 122, 0.05);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-orange));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap;
    min-height: 76px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent-2);
}

/* (Si aún usas el cuadrito FT en algún lado) */
.logo {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #0c8d62 100%);
    color: #fff;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-img {
    height: 56px;
    width: auto;
    display: block;
}

@media(max-width:480px) {
    .brand-img {
        height: 44px;
    }
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav a {
    margin-left: 0;
    color: var(--accent-2);
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.nav a:hover {
    background: var(--accent-blue-soft);
    color: var(--accent);
    transform: translateY(-1px);
}

/* =========================
   Menú móvil (hamburger)
   ========================= */
.nav-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 34px;
    height: 7px;
    background: var(--accent-2);
    border-radius: 999px;
}

.nav-mobile {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: saturate(120%) blur(8px);
}

.nav-mobile-inner {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-mobile-inner a {
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-weight: 700;
    color: var(--accent-2);
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.nav-mobile-inner a:hover {
    border-color: var(--accent);
    background: var(--accent-green-soft);
    color: var(--accent);
}

.lang-mobile {
    margin-top: 8px;
    justify-content: center;
}

@media (max-width: 640px) {

    .nav-desktop,
    .lang-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
}

@media (min-width: 641px) {
    .nav-toggle {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .lang-desktop {
        display: flex;
    }

    .nav-mobile {
        display: none !important;
    }
}

/* =========================
   Language switch
   ========================= */
.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 0;
    flex-shrink: 0;
}

.lang-switch button {
    border: 1px solid var(--line);
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: var(--accent-2);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .22s ease;
}

.lang-switch button.active {
    border-color: var(--accent);
    background: var(--accent-green-soft);
    color: var(--accent);
    box-shadow: 0 0 0 2px rgba(15, 159, 110, 0.10);
}

.lang-switch button:hover {
    background: var(--accent-blue-soft);
    border-color: var(--accent-2);
}

/* =========================
   Hero
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    border-bottom: 1px solid rgba(22, 52, 122, 0.08);
    background:
        radial-gradient(700px 280px at 10% 15%, rgba(15, 159, 110, .12), transparent 60%),
        radial-gradient(700px 320px at 90% 20%, rgba(22, 52, 122, .10), transparent 60%),
        linear-gradient(180deg, var(--surface-soft) 0%, #ffffff 100%);
}

.hero h1 {
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1.15;
    margin: 0 0 8px;
    color: var(--accent-2);
}

.hero p {
    max-width: 60ch;
}

.grid-2 {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}

@media(min-width:900px) {
    .grid-2 {
        grid-template-columns: 1.1fr .9fr;
    }
}

.hero .grid-2 {
    align-items: center;
}

.hero-media {
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    max-width: 100%;
}

/* =========================
   PRODUCTOS - SHOWCASE VISUAL
========================= */

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.product-showcase-card {
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(22, 52, 122, 0.10);
    border-color: rgba(22, 52, 122, 0.14);
}

.product-showcase-media {
    height: 235px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}

.product-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.product-showcase-body {
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, #1c4fa0 0%, var(--accent-2) 100%);
    color: #fff;
    position: relative;
}

.product-showcase-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-orange));
}

.product-showcase-body h3 {
    margin: 10px 0 8px;
    font-size: 1.14rem;
    line-height: 1.28;
    color: #fff;
}

.product-showcase-body p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

/* tarjeta eco con variación sutil */
.product-showcase-card--eco .product-showcase-body {
    background: linear-gradient(180deg, #0f9f6e 0%, #0b7e58 100%);
}

.product-showcase-card--eco .product-showcase-body::before {
    background: linear-gradient(90deg, #ffffff, #d1fae5);
}

/* responsive */
@media (max-width: 980px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .product-showcase-media {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase-media {
        height: 220px;
    }

    .product-showcase-body {
        padding: 16px 16px 18px;
    }

    .product-showcase-body h3 {
        font-size: 1.08rem;
    }

    .product-showcase-body p {
        font-size: 0.94rem;
    }
}

/* =========================
   Cards / grids
   ========================= */
.cards {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media(min-width:640px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:960px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-card);
}

.card h3 {
    margin: 8px 0 6px;
    color: var(--accent-2);
}

.card p {
    margin: 0;
    color: var(--muted);
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-green-soft);
    color: var(--accent);
    border: 1px solid rgba(15, 159, 110, 0.12);
}

/* =========================
   Panels / checklist / pills
   ========================= */
.panel {
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.checklist {
    margin: 12px 0 20px;
    padding-left: 18px;
}

.checklist li {
    margin: 6px 0;
}

.checklist.tight {
    margin: 10px 0 0;
}

.checklist.tight li {
    margin: 6px 0;
}

.mini-block {
    margin-top: 14px;
}

.mini-block h4 {
    margin: 10px 0 8px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    border: 1px solid rgba(22, 52, 122, 0.08);
    background: var(--accent-blue-soft);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}

/* =========================
   Buttons / CTA
   ========================= */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: #f8fafc;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #0c8d62 100%);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 159, 110, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0c8d62 0%, #0a7a55 100%);
}

.btn-primary.outline {
    background: #fff;
    color: var(--accent-2);
    border-color: rgba(22, 52, 122, 0.20);
}

.btn-primary.outline:hover {
    background: var(--accent-blue-soft);
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.cta {
    background: linear-gradient(135deg, var(--accent-2) 0%, #1d4bb0 100%);
    color: #fff;
}

.cta-inner {
    display: flex;
    gap: 16px;
    padding: 26px 0;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.btn-light {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .30);
    color: #fff;
}

.btn-light:hover {
    background: rgba(255, 255, 255, .25);
}

/* =========================
   Contacto (tarjetas + form)
   ========================= */
.contact {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.contact li {
    margin: 6px 0;
}

.contact-grid {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

@media(min-width:640px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card-wide {
        grid-column: 1 / -1;
    }
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    min-width: 0;
    box-shadow: var(--shadow-card);
}

.contact-card .contact {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.contact-title {
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-2);
}

.hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

form.form {
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-card);
}

form.form .field {
    margin-bottom: 14px;
}

form.form .field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--accent-2);
}

form.form .field input,
form.form .field textarea,
form.form .field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

form.form .field input:focus,
form.form .field textarea:focus,
form.form .field select:focus {
    outline: 2px solid rgba(15, 159, 110, 0.16);
    border-color: rgba(15, 159, 110, 0.35);
}

form.form .grid {
    display: grid;
    gap: 14px;
}

@media(min-width:640px) {
    form.form .grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================
   Casos de uso (carrusel)
   ========================= */
.usecases-head {
    align-items: flex-start;
}

.usecases-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.usecases-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    color: var(--accent-2);
}

.usecases-btn:hover {
    background: var(--accent-blue-soft);
    color: var(--accent);
}

.usecases-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.usecases {
    margin-top: 18px;
}

.usecases-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.usecases-track::-webkit-scrollbar {
    display: none;
}

.usecase-card {
    scroll-snap-align: start;
    flex: 0 0 85%;
    min-height: 170px;
}

@media (min-width: 640px) {
    .usecase-card {
        flex-basis: calc(50% - 9px);
    }
}

@media (min-width: 960px) {
    .usecase-card {
        flex-basis: calc(33.333% - 12px);
    }
}

.usecase-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--accent-blue-soft);
    color: var(--accent-2);
    border: 1px solid rgba(22, 52, 122, 0.10);
    margin-bottom: 10px;
}

.usecase-card h3 {
    margin: 0 0 6px;
}

.usecase-card p {
    margin: 0;
    color: var(--muted);
}

.car-card.featured {
    border-color: rgba(15, 159, 110, .35);
    box-shadow: 0 14px 30px rgba(2, 6, 23, .08);
}

.car-card.featured .car-badge {
    border-color: rgba(15, 159, 110, .35);
    background: rgba(15, 159, 110, .10);
    color: var(--accent);
}

.car-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    color: var(--accent-2);
    display: grid;
    place-items: center;
}

.car-btn:hover {
    border-color: var(--accent);
    background: var(--accent-blue-soft);
}

.car-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(22, 52, 122, .35);
    background: transparent;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

@media (min-width: 900px) {
    .car-card {
        flex-basis: 360px;
    }
}

/* =========================
   FAQ
   ========================= */
.faq {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    color: var(--accent-2);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "▾";
    float: right;
    color: var(--accent-orange);
}

.faq-item[open] summary::after {
    content: "▴";
}

.faq-body {
    margin-top: 10px;
    color: var(--muted);
}

/* =========================
   Comparador
   ========================= */
.tiers {
    margin-top: 10px;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tier-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--line);
    background: var(--accent-blue-soft);
    color: var(--accent-2);
    white-space: nowrap;
}

.tier-badge[data-tier="best"] {
    border-color: rgba(15, 159, 110, 0.22);
    background: var(--accent-green-soft);
    color: #065f46;
}

.tier-badge[data-tier="premium"] {
    border-color: #fed7aa;
    background: var(--accent-orange-soft);
    color: #c2410c;
}

.tier-desc {
    margin: 10px 0 0;
    color: var(--muted);
}

.tier-list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.tier-list li {
    margin: 6px 0;
}

.tier-card.featured {
    border-color: rgba(15, 159, 110, .25);
    box-shadow: 0 10px 25px rgba(22, 52, 122, .08);
}

.tier-pick {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* ===== ZONAS CENTRADO ===== */
#zonas .delivery-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#zonas .delivery-head {
    width: 100%;
    max-width: 780px;
    text-align: center;
    margin: 0 auto 18px;
}

#zonas .delivery-cards {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    #zonas .delivery-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#zonas .delivery-cards .card {
    text-align: left;
}

#zonas .delivery-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

#zonas .delivery-actions .btn::after {
    content: " →";
}

/* =========================
   Productos con imagen
   ========================= */
.product-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-media {
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(22, 52, 122, 0.08);
    display: grid;
    place-items: center;
    padding: 12px;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-body {
    padding: 18px;
}

.product-body h3 {
    margin: 0 0 6px;
    color: var(--accent-2);
}

.product-body p {
    margin: 0;
    color: var(--muted);
}

/* =========================
   FOOTER NUEVO
========================= */
.site-footer {
    margin-top: 64px;
    background: linear-gradient(180deg, #f4f8ff 0%, #eef5fb 100%);
    border-top: 1px solid rgba(22, 52, 122, 0.08);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 28px;
    padding: 46px 0 28px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
}

.footer-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.97rem;
}

.footer-links-group h4,
.footer-contact h4 {
    margin: 0 0 14px;
    color: var(--accent-2);
    font-size: 1rem;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted);
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-mini-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-2) 0%, #1f4aa8 100%);
    color: #fff !important;
    font-weight: 700;
    transition: background .22s ease, transform .22s ease;
}

.footer-mini-cta:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #0c8d62 100%);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(22, 52, 122, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 26px 22px;
        padding: 40px 0 24px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        margin-top: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 0 20px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        width: 138px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 22px;
    }

    .footer-bottom p {
        font-size: 0.92rem;
    }
}

/* =========================
   Utilities
   ========================= */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.meta {
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip:focus {
    left: 12px;
    top: 12px;
    background: #000;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
}

.iti {
    width: 100%;
}

.wa-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, #0c8d62 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    border: 0;
    text-decoration: none;
    z-index: 60;
}

.wa-fab:hover {
    filter: brightness(.97);
    transform: translateY(-1px);
}

.contact-logo {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
}

.contact-logo img {
    width: min(420px, 100%);
    height: auto;
    display: block;
}

/* ===== Dropdown "Paquetes" (desktop) ===== */
.nav-item.has-submenu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item.has-submenu .submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(22, 52, 122, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    z-index: 80;
}

.nav-item.has-submenu .submenu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 650;
}

.nav-item.has-submenu .submenu a:hover {
    background: var(--accent-orange-soft);
    color: #b45309;
}

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
    cursor: pointer;
}

.sub-mobile {
    margin-top: 8px;
    display: grid;
    gap: 8px;
    padding-left: 8px;
}

.sub-mobile a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
}

.sub-mobile a:hover {
    background: var(--accent-blue-soft);
}

.nav-drop {
    position: relative;
    display: inline-block;
}

.nav-drop-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-drop-trigger::after {
    content: "▾";
    font-size: 12px;
    color: var(--accent-orange);
    transform: translateY(-1px);
}

.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    min-width: 260px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}

.nav-drop-menu>a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    background: transparent;
}

.nav-drop-menu::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.10);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(22, 52, 122, .10);
    z-index: -1;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-drop.is-open .nav-drop-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-drop-menu>a:hover {
    background: var(--accent-orange-soft);
    color: #b45309;
}

/* ===== MOBILE: dropdown de Paquetes ===== */
.nav-mobile-drop {
    width: 100%;
}

.nav-mobile-drop summary {
    list-style: none;
    cursor: pointer;
}

.nav-mobile-drop summary::-webkit-details-marker {
    display: none;
}

.nav-mobile-sub {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.nav-mobile-sublink {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    font-weight: 700;
    color: var(--accent-2);
}

.nav-mobile-sublink:hover {
    color: #b45309;
    background: var(--accent-orange-soft);
}

.nav-mobile-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    font-weight: 800;
    color: var(--accent-2);
}

.nav-mobile-link:hover {
    background: var(--accent-blue-soft);
    color: var(--accent);
}

.nav-mobile-link::after {
    content: "▾";
    float: right;
    opacity: .6;
}

.nav-mobile-drop[open] .nav-mobile-link::after {
    content: "▴";
}

/* =========================
   SECCIONES: SOLUCIONES / SOSTENIBILIDAD / ABOUT
========================= */
.section-soft {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-head-center {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 159, 110, 0.10);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.section-head-center h2 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.1;
    color: var(--text);
}

.section-head-center .lead {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.solution-grid,
.about-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.soft-card {
    position: relative;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(22, 52, 122, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.soft-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.soft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(22, 52, 122, 0.10);
    border-color: rgba(22, 52, 122, 0.14);
}

.soft-card:hover::before {
    opacity: 1;
}

.soft-card h3 {
    margin: 0 0 12px;
    font-size: 1.08rem;
    line-height: 1.3;
    color: var(--accent-2);
}

.soft-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

#soluciones,
#sostenibilidad,
#sobre-nosotros {
    scroll-margin-top: 100px;
}

#sobre-nosotros .soft-card {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.72) 0%, rgba(255, 255, 255, 1) 100%);
}

#sostenibilidad .eyebrow {
    background: rgba(22, 52, 122, 0.08);
    color: var(--accent-2);
}

@media (max-width: 980px) {

    .solution-grid,
    .about-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-head-center {
        margin-bottom: 30px;
    }

    .soft-card {
        padding: 22px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .section-head-center h2 {
        font-size: 1.7rem;
    }

    .section-head-center .lead {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .soft-card h3 {
        font-size: 1rem;
    }

    .soft-card p {
        font-size: 0.95rem;
    }

    .eyebrow {
        font-size: 0.78rem;
        min-height: 30px;
    }
}

@media (max-width: 640px) {

    #soluciones .section-head-center h2,
    #sostenibilidad .section-head-center h2,
    #sobre-nosotros .section-head-center h2 {
        font-size: 1.75rem;
        line-height: 1.15;
    }
}

.section-head.section-head-center {
    display: block !important;
    max-width: 820px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
}

.section-head.section-head-center h2 {
    max-width: 720px;
    margin: 0 auto 14px !important;
}

.section-head.section-head-center .lead {
    max-width: 720px;
    margin: 0 auto !important;
}

#soluciones .section-head-center h2,
#sostenibilidad .section-head-center h2,
#sobre-nosotros .section-head-center h2 {
    font-size: clamp(1.75rem, 2.1vw, 2.3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 820px;
    margin: 0 auto 14px;
}

/* =========================
   SOSTENIBILIDAD EDITORIAL
========================= */
.sustainability-feature-grid {
    display: grid;
    gap: 28px;
    margin-top: 30px;
}

.sustainability-feature {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    box-shadow: 0 18px 45px rgba(22, 52, 122, 0.08);
}

.sustainability-feature-alt {
    grid-template-columns: 1fr 1.02fr;
}

.sustainability-media {
    position: relative;
    min-height: 100%;
    background: #dfe7f3;
}

.sustainability-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 48px;
}

.sustainability-content-blue {
    background: linear-gradient(135deg, var(--accent-2) 0%, #1f4aa8 100%);
    color: #fff;
}

.sustainability-content-light {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    color: var(--text);
}

.feature-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sustainability-content-blue .feature-kicker {
    background: rgba(245, 158, 11, 0.18);
    color: #fff3d6;
}

.sustainability-content-light .feature-kicker {
    background: rgba(15, 159, 110, 0.10);
    color: var(--accent);
}

.sustainability-content h3 {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 2vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.sustainability-content p {
    margin: 0 0 16px;
    line-height: 1.75;
    font-size: 1rem;
}

.sustainability-content-blue p {
    color: rgba(255, 255, 255, 0.88);
}

.sustainability-content-light p {
    color: var(--muted);
}

.sustainability-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {

    .sustainability-feature,
    .sustainability-feature-alt {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sustainability-feature-alt .sustainability-content {
        order: 2;
    }

    .sustainability-feature-alt .sustainability-media {
        order: 1;
    }

    .sustainability-media {
        min-height: 280px;
    }

    .sustainability-content {
        padding: 34px 24px;
    }
}

@media (max-width: 640px) {
    .sustainability-feature-grid {
        gap: 20px;
        margin-top: 22px;
    }

    .sustainability-media {
        min-height: 220px;
    }

    .sustainability-content {
        padding: 28px 20px;
    }

    .sustainability-content h3 {
        font-size: 1.4rem;
    }

    .sustainability-content p {
        font-size: 0.96rem;
        line-height: 1.68;
    }
}

/* =========================
   CONTACT ICONS - FONT AWESOME
========================= */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-item-sub {
    margin-top: 2px;
}

.contact-fa-icon {
    width: 18px;
    min-width: 18px;
    text-align: center;
    font-size: 1rem;
}

.icon-phone {
    color: var(--accent);
}

.icon-whatsapp {
    color: #25D366;
}

.icon-sms {
    color: var(--accent-orange);
}

/* =========================
   SOLUCIONES
========================= */
.solutions-section {
    position: relative;
}

.solutions-top-copy,
.solutions-bottom-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.solutions-top-copy {
    margin-top: 8px;
    margin-bottom: 28px;
}

.solutions-top-copy p,
.solutions-bottom-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.solutions-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 auto 24px;
}

.solution-block {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(22, 52, 122, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(22, 52, 122, 0.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.solution-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(22, 52, 122, 0.09);
    border-color: rgba(22, 52, 122, 0.14);
}

.solution-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #c2410c;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.solution-block h3 {
    margin: 0 0 12px;
    color: var(--accent-2);
    font-size: 1.12rem;
    line-height: 1.3;
}

.solution-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.solutions-bottom-copy {
    margin-bottom: 24px;
}

.solutions-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.solution-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease;
}

.solution-tag:hover {
    transform: translateY(-2px);
    color: #b45309;
    border-color: rgba(245, 158, 11, .25);
    background: var(--accent-orange-soft);
}

@media (max-width: 980px) {
    .solutions-value-grid {
        grid-template-columns: 1fr;
    }

    .solution-block {
        padding: 24px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .solutions-top-copy {
        margin-bottom: 22px;
    }

    .solutions-top-copy p,
    .solutions-bottom-copy p,
    .solution-block p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .solutions-tags {
        gap: 10px;
    }

    .solution-tag {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.94rem;
    }
}