:root {
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --card: #FFFFFF;
    --title: #0F172A;
    --text: #475569;
    --muted: #64748B;
    --accent: #3D44F2;
    --accent-light: #5E5EE7;
    --accent-soft: #EEF2FF;
    --success: #10B981;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --white: #FFFFFF;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px -12px rgba(61, 68, 242, 0.15);
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    /* border-bottom: 1px solid var(--border); */
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--whatsapp-dark);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    background: var(--bg);
    overflow: hidden;
    color: var(--title);
}

.hero-bg {
    display: none;
}

.hero-overlay {
    display: none;
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    border: 1px solid rgba(94, 94, 231, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--title);
}

h1 span {
    color: var(--accent);
    background: linear-gradient(135deg, #3D44F2, #5E5EE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--success);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--title);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    /* border-top: 1px solid var(--border); */
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--title);
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text);
}

.hero-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* SECTION BASE */
section {
    padding: 3.5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--title);
}

h2 span {
    color: var(--accent);
}

.section-sub {
    color: var(--text);
    max-width: 560px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

/* COMO FUNCIONA */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    counter-increment: step;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--bg-alt);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* CATEGORIAS */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.cat-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cat-card:hover .cat-img-wrap img {
    transform: scale(1.1);
}

.cat-card-body {
    padding: 2rem;
}

.cat-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F8FAFC;
    height: 580px;
}

.cat-card.featured .cat-img-wrap {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.cat-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--title);
}

.cat-desc {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.brands-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(245, 245, 245, 0.8);
    transition: background 0.2s, border-color 0.2s;
}

.brand-pill:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-text);
}

/* BRAND GRID */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-alt);
    padding: 1rem 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.brand-logo-item:hover, .brand-logo-item.active {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: var(--white);
    box-shadow: var(--shadow);
}

.brand-logo-item.active .brand-logo-img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s, transform 0.3s;
}

.brand-logo-item:hover .brand-logo-img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.brand-logo-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CREDITO */
.credit-section {
    background: linear-gradient(135deg, rgba(61, 68, 242, 0.05) 0%, rgba(94, 94, 231, 0.02) 100%);
    border: 1px solid rgba(61, 68, 242, 0.1);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credit-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.credit-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.feat-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feat-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.feat-desc {
    font-size: 0.85rem;
    color: var(--text);
}

.credit-highlight {
    background: var(--card);
    border: 1px solid rgba(61, 68, 242, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.highlight-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* COBERTURA */
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.cities-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.city-tag-title {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.city-tag-title:first-child {
    margin-top: 0;
}

.cities-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.city-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: rgba(245, 245, 245, 0.75);
}

.city-pill.main {
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    color: var(--white);
    font-weight: 600;
}

.interrapido-card {
    background: linear-gradient(135deg, var(--card) 0%, rgba(61, 68, 242, 0.03) 100%);
    border: 1px solid rgba(61, 68, 242, 0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.inter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.inter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.inter-desc {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.inter-badge {
    display: inline-block;
    background: var(--accent-soft);
    border: 1px solid rgba(94, 94, 231, 0.3);
    color: var(--accent-text);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* CONTACT */
.contact-section {
    background: var(--bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.info-item:hover {
    border-color: rgba(255, 107, 0, 0.35);
}

.info-icon {
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 500;
    font-size: 1rem;
}

.info-value a {
    color: var(--title);
    text-decoration: none;
}

.info-value a:hover {
    color: var(--accent);
}

.whatsapp-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1.75rem;
    width: 320px;
    border-radius: 12px;
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    filter: brightness(1.05);
}

.wa-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.map-placeholder {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-title {
    font-weight: 600;
}

.map-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.map-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-bg-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: rgba(31, 41, 55, 0.03);
    position: absolute;
    user-select: none;
}

.location-pin {
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(61, 68, 242, 0.3);
}

.location-pin::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent);
}

.sedes {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sede-tag {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
}


/* FOOTER */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

/* ALIADOS FINANCIEROS */
.aliados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.aliado-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.aliado-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(71, 79, 235, 0.1);
}

.aliado-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aliado-card:hover::after {
    opacity: 1;
}

.aliado-logo-container {
    width: 100px;
    height: 100px;
    background: #F8FAFC;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.aliado-card:hover .aliado-logo-container {
    transform: scale(1.1);
    background: var(--white);
}

.aliado-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.aliado-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(71, 79, 235, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.aliado-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--title);
}

.aliado-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* COBERTURA RESPONSIVE */
.cobertura-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.cobertura-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.logistica-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-soft) 100%);
    border: 1px solid var(--accent);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(61, 68, 242, 0.08);
}

.proteccion-banner {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s;
}

@media (max-width: 992px) {
    .cobertura-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cobertura-card, .logistica-card {
        padding: 2.5rem 1.5rem;
    }

    .proteccion-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 2rem 1.5rem;
    }
    
    .cobertura-cities-grid {
        grid-template-columns: 1fr !important;
    }
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .cats-grid {
        grid-template-columns: 1fr;
    }

    .cat-card.featured {
        grid-column: span 1;
        height: auto;
    }

    .cat-card.featured .cat-img-wrap {
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: 400px;
    }

    .cat-card-body {
        padding: 1.5rem;
    }

    .credit-section {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1.25rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .credit-section {
        padding: 1.5rem;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.6s ease both;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.1s;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--title);
    font-size: 1.1rem;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: var(--bg-alt);
    color: var(--text);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--accent);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

/* BRANDS SCROLL */
.brands-scroll {
    padding: 1rem 0;
    background: var(--white);
    /* border-bottom: 1px solid var(--border); */
    overflow: hidden;
    position: relative;
}

.brands-scroll::before,
.brands-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.brands-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo-item {
    padding: 0 50px;
    /* Tighter horizontal spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-item img {
    height: 40px;
    object-fit: contain;
}

/* Larger size for icon-style logos that appear smaller */
.logo-item.logo-lg img {
    height: 55px;
    object-fit: contain;
}

/* Extra large for Samsung */
.logo-item.logo-xl img {
    height: 120px;
    object-fit: contain;
}

/* Very Large for Sony and LG */
.logo-item.logo-vlg img {
    height: 80px;
    object-fit: contain;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* TESTIMONIAL TICKER */
.testimonial-track {
    display: flex;
    width: fit-content;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.testimonial-group {
    display: flex;
    animation: scroll-testimonials 60s linear infinite;
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    margin: 0 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
}

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

/* HERO SLIDESHOW */
.hero-slideshow {
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* Aspect ratio */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* STICKY PROCESS */
.process-sticky-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.process-steps-list {
    padding: 10vh 0;
}

.process-step-item {
    margin-bottom: 40vh;
    opacity: 0.2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-20px);
}

.process-step-item.active {
    opacity: 1;
    transform: translateX(0);
}

.process-visual-sticky {
    position: sticky;
    top: 15vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--accent-soft);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1s ease;
    transform: scale(1.1);
}

.process-img.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 900px) {
    .process-sticky-container {
        grid-template-columns: 1fr;
    }

    .process-visual-sticky {
        display: none;
    }

    .process-step-item {
        opacity: 1;
        transform: none;
        margin-bottom: 3rem;
    }

    .cats-grid {
        grid-template-columns: 1fr;
    }

    .cat-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}
