/* ===== RESET / BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* ==========================================
   GOOGLE FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ==========================================
   VARIABLES Y COLORES PRINCIPALES
   ========================================== */
:root {
    --black:       #0a0a0a;
    --white:       #f5f5f0;
    --gray-light:  #e8e8e3;
    --gray-mid:    #9a9a95;
    --gray-dark:   #1e1e1c;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'Space Mono', monospace;
}

/* ==========================================
   RESET Y BASE
   ========================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, padding 0.3s ease, border-color 0.3s;
    padding: 18px 24px;
    border-bottom: 1px solid transparent;
}

.navbar.navbar-hidden { transform: translateY(-100%); }

.navbar.scrolled {
    padding: 12px 24px;
    border-bottom-color: rgba(255,255,255,0.1);
}

.bg-dark-custom { background-color: var(--black) !important; }

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-navbar {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.navbar-dark .nav-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    font-weight: 400;
    transition: color 0.2s;
    margin-left: 1.2rem;
    padding: 6px 0 !important;
    border-bottom: 1px solid transparent;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: var(--white) !important;
    border-bottom-color: rgba(255,255,255,0.4);
}

/* ==========================================
   MAIN
   ========================================== */
main {
    background-color: var(--white);
    margin-top: 0;
    position: relative;
    z-index: 0;
}

/* ==========================================
   HERO
   ========================================== */
.hero-video-mobile {
    display: none;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background-image: url('../images/wallpaper2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 0 60px 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 0;
}

/* Texto de fondo decorativo */
.hero-section::after {
    content: 'MOTO';
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: var(--font-display);
    font-size: 28vw;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    display: block;
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px !important;
    text-shadow: none;
}

.hero-section h1 .outline-text {
    -webkit-text-stroke: 2px rgba(255,255,255,0.7);
    color: transparent;
}

.hero-section .lead {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px !important;
    text-shadow: none;
    max-width: 440px;
    line-height: 1.7;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 28px;
}

.hero-section .btn-outline-light {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
    font-weight: 400;
    background-color: transparent;
    padding: 14px 28px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: white;
    color: var(--black);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
    background: var(--black);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 32px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 5px;
    display: block;
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-strip {
    background: var(--black);
    padding: 13px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

.marquee-item span { color: rgba(255,255,255,0.5); margin: 0 6px; }

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

/* ==========================================
   SECCIONES GENERALES
   ========================================== */
.section-wrapper {
    padding: 90px 0 80px;
}

.section-wrapper.dark-bg {
    background: var(--black);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 14px;
    display: block;
}

.section-wrapper.dark-bg .section-label {
    color: rgba(255,255,255,0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 60px !important;
}

.section-title .outline-text {
    -webkit-text-stroke: 1.5px var(--black);
    color: transparent;
}

.section-wrapper.dark-bg .section-title {
    color: var(--white);
}

.section-wrapper.dark-bg .section-title .outline-text {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}

/* ==========================================
   CARDS - POR QUÉ ELEGIRNOS
   ========================================== */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--gray-light);
}

.reason-card {
    padding: 44px 36px;
    border-right: 1px solid var(--gray-light);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.reason-card:last-child { border-right: none; }

.reason-card:hover { background: var(--black); }

.reason-card-num {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gray-light);
    display: block;
    transition: color 0.3s;
}

.reason-card:hover .reason-card-num { color: rgba(255,255,255,0.1); }

.reason-card-icon {
    font-size: 1.6rem;
    display: block;
    margin: 16px 0 12px;
    transition: filter 0.3s;
}

.reason-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--black);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.reason-card:hover .reason-card-title { color: var(--white); }

.reason-card-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-mid);
    line-height: 1.7;
    transition: color 0.3s;
}

.reason-card:hover .reason-card-text { color: rgba(255,255,255,0.5); }

/* Overrides Bootstrap card */
.card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}
.card:hover { transform: none; box-shadow: none; }
.card-body { padding: 0; }

/* ==========================================
   CARRUSEL - PRODUCTOS DESTACADOS
   ========================================== */
.carousel-img {
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.55);
}

.carousel-caption {
    bottom: 0; left: 0; right: 0;
    padding: 0;
    background: transparent;
}

.carousel-card-info {
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.carousel-card-info h5 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.carousel-card-info .price {
    font-family: var(--font-mono);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
}

.carousel-card-info .btn {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.carousel-card-info .btn:hover {
    background: var(--gray-light);
    transform: translateY(-1px);
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255,255,255,0.35);
    width: 28px; height: 2px;
    border-radius: 0;
    border: none;
    opacity: 1;
    transition: background 0.2s, width 0.2s;
}

.carousel-indicators .active {
    background-color: #ffffff;
    width: 42px;
}

/* ==========================================
   SECCIÓN UBICACIÓN
   ========================================== */
.location-section { padding: 0; }

.location-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.location-card h4 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 32px;
}

.location-detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}

.location-detail-row:last-child { border-bottom: none; }

.location-detail-icon { font-size: 1rem; padding-top: 2px; width: 28px; flex-shrink: 0; }

.location-detail-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 3px;
    display: block;
}

.location-detail-value {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: var(--black);
    border: none;
    padding: 0;
    position: relative;
}

.map-container iframe { border-radius: 0; display: block; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--black);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.06em;
}

.footer-logo span { color: rgba(255,255,255,0.3); }

.footer-links {
    display: flex; gap: 24px; list-style: none;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ==========================================
   BOTONES GLOBALES
   ========================================== */
.btn-primary {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    padding: 12px 24px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--gray-dark);
    border-color: var(--gray-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==========================================
   REVEAL ON SCROLL
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.comunidad-section {
    background-image: url('../images/comunidad.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.comunidad-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 0;
}

.comunidad-section .container {
    position: relative;
    z-index: 1;
}

.comunidad-section .section-label { color: rgba(255,255,255,0.3); }
.comunidad-section .section-title { color: var(--white); }
.comunidad-section .section-title .outline-text {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}

/* ==========================================
   SECCIÓN COMUNIDAD
   ========================================== */
.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
    padding: 16px 36px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    margin-bottom: 64px;
}

.community-btn:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255,255,255,0.12);
}

.community-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 520px;
    margin: 0 auto;
}

.comm-stat {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comm-divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.comm-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.comm-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ==========================================
   WHATSAPP BTN
   ========================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-icon { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ==========================================
   RESPONSIVE — TABLET (≤992px)
   ========================================== */
@media (max-width: 992px) {
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .reason-grid { grid-template-columns: 1fr; }
    .reason-card { border-right: none; border-bottom: 1px solid var(--gray-light); }
    .hero-section { padding: 0 28px 60px; }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================== */
@media (max-width: 768px) {

    /* --- NAVBAR --- */
    .navbar { padding: 10px 16px; }
    .navbar.scrolled { padding: 8px 16px; }
    .navbar-brand { font-size: 1.4rem; gap: 8px; }
    .navbar-brand strong,
    .navbar-brand span { display: none; } /* ocultar texto, dejar solo logo */
    .logo-navbar { height: 38px; }

    /* Menú hamburguesa desplegado */
    .navbar-collapse {
        background: var(--black);
        padding: 16px 0 20px;
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-dark .nav-link {
        margin-left: 0;
        padding: 12px 20px !important;
        font-size: 0.75rem;
        border-bottom: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .navbar-dark .nav-link:first-child { border-top: none; }

    /* --- HERO --- */
    .hero-section {
        background-image: none; /* saca la imagen fija */
    }
    .hero-video-mobile {
        display: block;
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.18em; margin-bottom: 12px; }
    .hero-divider { margin-bottom: 20px; }
    .hero-section h1 {
        font-size: clamp(3.2rem, 14vw, 5rem);
        line-height: 0.9;
        margin-bottom: 16px !important;
    }
    .hero-section h1 .outline-text { -webkit-text-stroke: 1.5px rgba(255,255,255,0.7); }
    .hero-section .lead {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 28px !important;
        max-width: 100%;
    }
    .hero-section .btn-outline-light {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 0.68rem;
    }

    /* --- STATS BAR --- */
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        padding: 24px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    /* quitar border-bottom en los dos últimos */
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .stat-num { font-size: 2.2rem; }
    .stat-label { font-size: 0.55rem; }

    /* --- SECCIONES GENERALES --- */
    .section-wrapper { padding: 60px 0 52px; }
    .section-title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        margin-bottom: 40px !important;
        line-height: 0.9;
    }
    .section-label { font-size: 0.58rem; }

    /* --- CARDS POR QUÉ ELEGIRNOS --- */
    .reason-grid {
        grid-template-columns: 1fr;   /* apiladas, pero compactas */
        gap: 0;
    }

    .reason-card {
        display: grid;
        grid-template-columns: 40px 1fr;   /* num | contenido */
        grid-template-rows: auto auto;
        column-gap: 12px;
        align-items: start;
        padding: 14px 16px;
        border-left: 3px solid var(--black);
        border-bottom: 1px solid var(--gray-light);
    }

    .reason-card:last-child {
        border-bottom: none;
    }

    /* Número ocupa toda la altura izquierda */
    .reason-card-num {
        grid-column: 1;
        grid-row: 1 / 3;
        font-size: 1.1rem;
        align-self: center;
        color: var(--gray-mid);
    }

    /* Icono desaparece en mobile para ganar espacio */
    .reason-card-icon {
        display: none;
    }

    /* Título y texto comprimidos */
    .reason-card-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .reason-card-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.78rem;
        line-height: 1.45;
        color: var(--gray-mid);
        margin: 0;
    }

    /* Hover se mantiene pero simplificado */
    .reason-card:hover {
        background: var(--black);
        border-left-color: var(--white);
    }

    .reason-card:hover .reason-card-title,
    .reason-card:hover .reason-card-text,
    .reason-card:hover .reason-card-num {
        color: var(--white);
    }

    /* --- CARRUSEL PRODUCTOS --- */
    .carousel-img {
        height: 420px;
        object-position: center;
    }

    /* Flechas en el tercio superior de la imagen */
    .carousel-control-prev,
    .carousel-control-next {
        top: 30%;
        bottom: 55%;
        width: 44px;
        align-items: center;
        justify-content: center;
    }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }

    .carousel-card-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 16px;
    }
    .carousel-card-info h5 {
        font-size: 0.78rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .carousel-card-info .price {
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .carousel-card-info .btn {
        padding: 9px 14px;
        font-size: 0.58rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* --- SECCIÓN UBICACIÓN --- */

    #ubicacion .row {
        gap: 0 !important;
    }

    .location-card h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .location-detail-row {
        padding: 6px 0;
        gap: 8px;
        border-bottom: 1px solid var(--gray-light);
        display: flex;
        align-items: flex-start;
    }

    .location-detail-row:last-child {
        border-bottom: none;
    }

    .location-detail-label {
        font-size: 0.56rem;
        display: block;
        margin-bottom: 0;
    }

    .location-detail-value {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .map-container {
        margin-top: 10px;
    }

    .map-container iframe {
        height: 200px;
    }

    /* --- SECCIÓN COMUNIDAD --- */
    .comunidad-section {
        padding: 60px 0 !important;
        background-attachment: scroll;
    }

    .comunidad-section p {
        font-size: 0.82rem !important;
        margin-bottom: 28px !important;
        line-height: 1.55;
    }

    

    .community-stats {
        flex-direction: column;
        max-width: 100%;
        border: 1px solid rgba(255,255,255,0.08);
    }

    .comm-stat {
        padding: 12px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        width: 100%;
    }

    .comm-stat:last-child { border-bottom: none; }
    .comm-divider { display: none; }
    .comm-num { font-size: 1.3rem; }
    .comm-label { font-size: 0.56rem; text-align: right; }

    /* --- FOOTER --- */
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 32px 24px;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .footer-logo { font-size: 1.3rem; }
}

/* ==========================================
   RESPONSIVE — MOBILE PEQUEÑO (≤480px)
   ========================================== */
@media (max-width: 480px) {

    /* Hero más compacto en teléfonos chicos */
    .hero-section { padding: 0 18px 44px; }
    .hero-section h1 { font-size: clamp(2.8rem, 16vw, 3.8rem); }
    .hero-section .lead { font-size: 0.85rem; }

    /* Stats en columna única si son muy pequeños */
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 20px 16px; }
    .stat-num { font-size: 2rem; }

    /* Sections más ajustadas */
    .section-wrapper { padding: 48px 0 40px; }
    .section-title { font-size: clamp(2.2rem, 12vw, 3rem); margin-bottom: 32px !important; }

    /* Reason cards más compactas */
    .reason-card { padding: 26px 18px; }

    /* Carousel imagen ocupa bien la pantalla */
    .carousel-img { height: 360px; }

    /* Comunidad */
    .community-btn { font-size: 0.62rem; padding: 14px 16px; }

    /* WhatsApp más chico */
    .whatsapp-btn { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}