 :root {
            --primary: #cc0a74;
            --bg: #05070a;
            --card-bg: #0f172a;
            --text-main: #f8fafc;
            --text-dim: #94a3b8;
        }

        * { box-sizing: border-box; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); scroll-behavior: smooth; }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--bg); 
            color: var(--text-main); 
            margin: 0; 
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
            position: relative;
        }

        /* FONDO BORROSO CON CAPA OSCURA */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/fondoweb.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: blur(1px) brightness(0.8); /* Borroso y oscuro */
            z-index: -1; /* Se mantiene detrás de todo */
            transform: scale(1.1); /* Evita bordes blancos por el blur */
        }

        /* TOP BAR REMOVIDA - OCULTADA */
        .top-bar {
            display: none;
        }

        /* NAVBAR - HIDE ON SCROLL */
        nav {
            position: sticky;
            top: 0; 
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            padding-top: 10px;
            background: linear-gradient(to bottom, rgba(5, 7, 10, 0.95), rgba(5, 7, 10, 0.9));
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transform: translateY(0);
            transition: transform 0.3s ease-in-out;
        }

        nav.hide-nav {
            transform: translateY(-100%);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }

        /* INFO IZQUIERDA - Clima, Reloj, Dirección, Horarios */
        .nav-info-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 0 0 auto;
            order: 1;
        }

        .weather-widget,
        .clock-widget {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-dim);
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .address-widget,
        .hours-widget {
            width: 75%;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-dim);
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .weather-widget:hover,
        .clock-widget:hover,
        .address-widget:hover,
        .hours-widget:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .weather-widget i,
        .clock-widget i,
        .address-widget i,
        .hours-widget i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .weather-info,
        .clock-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .address-info,
        .hours-info {
            display: flex;
            flex-direction: row;
            gap: 2px;
        }

        .weather-temp,
        .clock-time {
            font-weight: 800;
            color: #fff;
            font-size: 0.95rem;
        }

        .weather-desc,
        .clock-timezone {
            font-size: 0.75rem;
            color: var(--text-dim);
        }
        .address-text,
        .hours-text {
            font-size: 1.3rem;
            color: var(--text-dim);
        }
        
        /* LOGO CENTRADO FUERA DEL NAV - SIN FONDO */
        .logo-section {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
            background: transparent;
            position: relative;
            z-index: 999;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            margin-top: 70px;
        }

        .logo-nav {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 999;
            flex-shrink: 0;
            width: auto;
        }

        .logo-nav img {
            height: 100%;
            width: auto;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
        }

        /* NAV MENU - Botón a la DERECHA */
        .nav-menu {
            display: flex;
            align-items: center;
            position: relative;
            flex: 0 0 auto;
            order: 3;
            gap: 15px;
        }

        /* BOTÓN EXPLORAR */
        .btn-menu {
            background: rgba(0, 212, 255, 0.1);
            border: 2px solid var(--primary);
            color: #fff;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 800;
            letter-spacing: 1px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            overflow: visible;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-menu:hover {
            background: var(--primary);
            color: #000;
        }

        .btn-menu:active {
            transform: scale(0.98);
        }

        .menu-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 16px;
            height: 12px;
        }

        .bar {
            width: 100%;
            height: 2px;
            background-color: currentColor;
            transition: 0.3s;
            display: block;
        }

        /* DROPDOWN */
        .dropdown-content {
            position: absolute;
            top: calc(100% + 12px);
            left: auto;
            right: 0;
            background: #0f172a;
            min-width: 600px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.8);
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .dropdown-content.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            max-height: 600px;
            overflow-y: auto;
        }

        .dropdown-header {
            padding: 18px 20px;
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 2px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            text-transform: uppercase;
            grid-column: 1 / -1;
        }

        .dropdown-column {
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dropdown-column:last-child {
            border-right: none;
        }

        .dropdown-column-title {
            padding: 12px 20px 8px;
            font-size: 0.65rem;
            font-weight: 800;
            color: #00d4ff;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .dropdown-content a {
            color: #f8fafc;
            padding: 12px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-content a i { 
            font-size: 0.75rem; 
            opacity: 0.5;
            transition: 0.3s;
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
            border-left-color: var(--primary);
            padding-left: 25px;
        }

        .dropdown-content a:hover i {
            opacity: 1;
            color: var(--primary);
        }

        /* HERO SECTION */
        .hero {
            min-height: auto;
            padding: 20px 20px 20px;
            background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08), transparent);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center; 
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            letter-spacing: -2px;
            color: #fff;
            margin: 0;
            line-height: 1.1;
        }

        .hero p {
            font-weight: bold;        
            font-size: 2.1rem;
            color: #ffffff;
            max-width: 650px;
            margin-top: 25px;
            line-height: 1.6;
        }

        /* BUSCADOR */
        .search-container {
            width: 100%;
            max-width: 600px;
            margin-top: 40px;
            position: relative;
            padding: 0 20px;
            z-index: 20;
        }

        .search-wrapper {
            display: flex;
            background: rgba(20, 20, 20, 0.85); 
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .search-wrapper:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 25px rgba(204, 10, 116, 0.4);
        }

        .search-wrapper input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px 20px;
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
        }

        .search-wrapper input::placeholder { 
            color: rgba(255, 255, 255, 0.6); 
        }

        .btn-search {
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 15px;
            padding: 0 25px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-search:hover { 
            background: #fff; 
            transform: scale(1.05); 
        }

        /* SECCIÓN DE BENEFICIOS */
        .trust-section {
            background: rgba(15, 23, 42, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 20px;
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .experience-banner {
            display: inline-block;
            background: var(--primary);
            color: #000;
            padding: 15px 45px; 
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem; 
            letter-spacing: 2px;
            margin-top: 100px;
            margin-bottom: 40px;
            text-transform: uppercase;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); 
            transition: transform 0.3s ease;
            cursor: default;
        }

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

        .benefit-item {
            padding: 25px 15px;
            background: rgba(255, 255, 255, 0.31);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.31);
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .benefit-item i {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 12px;
            display: block;
        }

        .benefit-item span {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            display: block;
            letter-spacing: 0.3px;
        }

        /* GRID Y TARJETAS */
.container { 
    max-width: 1300px; 
    margin: 60px auto 80px; 
    padding: 0 20px; 
    position: relative; 
    z-index: 5; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    align-items: stretch; /* Fuerza a que todas las tarjetas midan lo mismo por fila */
}

.car-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* PROMO FINANCIACIÓN (PARA USADOS Y CONSIGNACIÓN) */
.promo-financiacion {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    padding: 10px;
    border-radius: 10px;
    margin: 0;
    display: flex;          /* ESTO activa el gap */
    align-items: center;    /* Centra el icono con el texto verticalmente */
    justify-content: center; /* Centra el contenido horizontalmente */
    gap: 8px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.car-card-link:hover .promo-financiacion {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.car-card-link:hover .car-card {
    transform: translateY(-16px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 25px 50px rgba(204, 10, 116, 0.25),
        0 0 40px rgba(0, 212, 255, 0.1);
    background: rgba(15, 23, 42, 0.95);
}

.car-card-link:active .car-card {
    transform: translateY(-12px) scale(1.015);
}

.img-wrapper { 
    width: 100%; 
    height: 240px; 
    overflow: hidden; 
    position: relative;
    flex-shrink: 0;
}

.img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

.car-card-link:hover .img-wrapper::after {
    opacity: 1;
}

.car-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.6s ease; 
}

.car-card-link:hover .car-img { 
    transform: scale(1.08); 
}

/* BADGE DE TIPO */
.badge-type {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.badge-0km { 
    background: #00d4ff; 
    color: #000; 
}

.badge-usado { 
    background: rgba(0, 255, 85, 0.73); 
    color: #fff; 
}

.badge-consignacion { 
    background: #facc15; 
    color: #000; 
}

.badge-en_transito { 
    background: #7b29ff; 
    color: #000; 
}

.car-card-link:hover .badge-type {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

/* CONTENEDOR DEL LOGO */
.brand-logo-badge {
    position: absolute !important;
    bottom: 10px !important; /* Ajustá a gusto */
    right: 10px !important;  /* Ajustá a gusto */
    width: 60px !important;  /* El ancho máximo que querés que ocupe */
    height: auto !important;
    
    /* ELIMINAMOS TODO LO QUE HACE EL CÍRCULO */
    background-color: transparent !important; 
    border-radius: 0 !important;
    box-shadow: none !important;
    
    /* PERMITIMOS QUE EL CONTENIDO SALGA SI ES NECESARIO */
    overflow: visible !important; 
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
}

/* LA IMAGEN PNG */
.brand-logo-img {
    width: 100% !important; 
    height: auto !important; 
    object-fit: contain !important;
    display: block !important;
    
    /* QUITAMOS EL POSICIONAMIENTO ABSOLUTO ANTERIOR */
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    /* EFECTO PRO: Sombra que sigue la forma del rombo de Renault */
    filter: drop-shadow(0 4px 5px rgba(0,0,0,0.7)) !important;
}
/* CAR-INFO */
.car-info { 
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.info-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-tag {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin: 0;
    display: block;
}

.car-title { 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin: 0;
    color: #fff; 
    line-height: 1.2;
    transition: all 0.3s ease;
}

.car-card-link:hover .car-title {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.specs-row {
    display: flex;
    gap: 12px;
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    flex-wrap: wrap;
    align-items: flex-start;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.spec-item i {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.car-card-link:hover .spec-item {
    color: #00d4ff;
}

.car-card-link:hover .spec-item i {
    opacity: 1;
    color: #00d4ff;
}

/* FUEL BADGE */
.fuel-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s ease;
}

.fuel-nafta { 
    background: #0066ff; 
    color: #fff; 
}

.fuel-diesel { 
    background: #22c55e; 
    color: #fff; 
}

.fuel-nafta-gnc {
    background: linear-gradient(90deg, #0066ff 50%, #facc15 50%);
    color: #fff;
}

.car-card-link:hover .fuel-badge {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* TITULARES */
.titulares-info {
    background: rgba(255,255,255,0.03);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #cbd5e1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BOTÓN VIDEO */
.btn-video-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 15;
    overflow: hidden;
}

.btn-video-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.car-card-link:hover .btn-video-card::before {
    width: 300px;
    height: 300px;
}

.btn-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(188, 24, 136, 0.2);
}

.btn-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 42, 0.72);
}

.btn-video-card:active {
    transform: scale(0.98);
}

/* PRICE SECTION */
.price-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
}

.price-final-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 12px 0;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 12px;
}

.currency-final {
    color: #22c55e;
    font-weight: 800;
    font-size: 0.9rem;
}

.price-final {
    font-size: 1.6rem;
    font-weight: 800;
    color: #22c55e;
}

.currency { 
    color: var(--primary); 
    font-weight: 800; 
    font-size: 0.9rem; 
}

.price { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: #fff; 
}

/* PROMO 0KM */
.promo-0km {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    padding: 10px;
    border-radius: 10px;
    margin: 0;
    display: flex;          /* ESTO activa el gap */
    align-items: center;    /* Centra el icono con el texto verticalmente */
    justify-content: center; /* Centra el contenido horizontalmente */
    gap: 8px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.car-card-link:hover .promo-0km {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

/* PROMO PERMUTAS */
.promo-permutas {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    padding: 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.car-card-link:hover .promo-permutas {
    background: rgba(34, 197, 94, 0.25);
    border-color: #22c55e;
}

/* BOTÓN DETALLES */
.btn-details {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.03);
    color: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.btn-details::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.car-card-link:hover .btn-details {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.car-card-link:hover .btn-details::before {
    width: 300px;
    height: 300px;
}

        /* INFO Y MAPA */
        .info-section { padding: 100px 20px; background: rgba(5, 7, 10, 0.7); text-align: center; }

        .map-container {
            max-width: 1100px;
            margin: 50px auto;
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            filter: grayscale(1) invert(0.9) brightness(0.8);
        }
        .map-container:hover { filter: none; }

        .social-links { display: flex; justify-content: center; gap: 30px; margin-top: 40px; }
        .social-links a { color: var(--text-dim); font-size: 1.8rem; transition: 0.3s; text-decoration: none; }
        .social-links a:hover { color: var(--primary); transform: translateY(-5px); }

        .footer-text { margin-top: 60px; color: #ffffff; font-size: 0.85rem; letter-spacing: 1px; }


/* ============================================================
   BLOQUE DEFINITIVO TODOTERRENO (Móviles, Tablets y Surface)
   ============================================================ */
@media (max-width: 1024px) {
    
    /* 1. NAVEGACIÓN Y CONTENEDORES */
    nav {
        position: fixed;
        padding: 10px 0;
        top: 0;
        z-index: 1100;
        margin-bottom: 0;
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 0;
        padding: 8px 10px;
        justify-content: center;
    }

    .nav-info-left {
        order: 1;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 8px;
    }

    /* 2. WIDGETS COMPLETOS (Clima, Reloj, Dirección, Horarios) */
    .weather-widget, .clock-widget, .address-widget, .hours-widget {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 calc(48% - 5px); 
        min-width: 140px; 
        border-radius: 10px;
        gap: 8px;
        padding: 6px 10px;
        background: rgba(0, 0, 0, 0.5); /* Reintegrado para legibilidad */
    }

    .weather-info, .clock-info, .address-info, .hours-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
    }

    /* Ajuste de fuentes específicas que faltaban */
    .weather-temp, .clock-time { font-size: 0.75rem; font-weight: bold; }
    .weather-desc, .clock-timezone, .address-text, .hours-text {
        font-size: 0.80rem;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
    }

    .address-widget, .hours-widget {
        flex-direction: row !important;
        padding-left: 3px;
    }

    /* 3. SECCIÓN LOGO Y ESPACIADO (Clave para Surface) */
    .logo-section {
        width: 100%;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 25px 0;
        margin-top: 170px !important; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo-nav {
        height: 110px !important;
        display: flex !important;
    }

    .logo-nav img {
        height: 100%;
        width: auto;
    }

    /* 4. MENÚ, BOTONES Y DROPDOWN */
    .nav-menu {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .btn-menu {
        padding: 8px 12px;
        font-size: 0.7rem;
        height: 38px;
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    .menu-icon {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 14px;
    }

    .bar {
        width: 100%;
        height: 2px;
        background-color: white; /* Reintegrado color de barras */
    }

    .dropdown-content {
        position: fixed;
        top: 220px;
        left: 10px;
        right: 10px;
        grid-template-columns: 1fr;
        z-index: 1200;
    }

    /* 5. HERO, BUSCADOR Y SECCIONES INTERMEDIAS */
    .hero { padding: 30px 15px; text-align: center; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { font-size: 1.2rem; }

    .search-container { margin-top: 20px; width: 100%; padding: 0 5px; }
    .btn-search span { display: none; } /* Solo icono en móviles/tablets */

    .trust-section { padding: 30px 15px; }
    .experience-banner { 
        font-size: 0.85rem; 
        padding: 12px; 
        margin: 20px 0;
        border-radius: 50px; 
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* 6. FOOTER Y CONTACTO */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .specs-row { font-size: 0.75rem; justify-content: flex-start; }

   /* 7. AJUSTE EXTRA PARA IPHONE 4/5 Y PANTALLAS MINI */
@media (max-width: 360px) {
    /* Forzamos que nada exceda los 320px reales del iPhone 4 */
    * {
        box-sizing: border-box !important;
    }

    .nav-container {
        padding: 5px 10px !important;
        width: 100% !important;
    }

    .weather-widget, .clock-widget, .address-widget, .hours-widget {
        flex: 0 0 100%;
        width: 100% !important;
        margin: 2px 0 !important;
    }

    /* Reducimos el logo para que no tape el contenido */
    .logo-nav { 
        height: 50px !important; /* Bajamos de 80px a 50px */
        margin-bottom: 10px;
    }

    .logo-nav img {
        max-height: 100%;
        width: auto;
    }

    /* EL FIX PARA EL CONTENIDO DESPLAZADO */
    .section-trust-section {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Padding parejo para que no se vea corrido */
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden; /* Evita el deslizamiento lateral */
    }

    /* Si el Nav es Fixed, dale aire al contenido para que no se meta debajo */
    body {
        padding-top: 20px; /* Ajustá este valor según cuánto mida tu nav sumado */
    }

    .hero h1 { 
        font-size: 1.5rem; /* Un pelín más chico para que no rompa el ancho */
        text-align: center;
    }
}
}

        /* Brand logos styles removed - using main styles above */

    footer {
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    margin-top: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el H3 y la lista en la columna */
    text-align: center;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(204, 10, 116, 0.2));
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; /* Permite que el bloque se centre pero el contenido sea left-aligned */
    text-align: left;
}

.contact-info li {
    display: flex;
    align-items: flex-start; /* EL SECRETO: El ícono se queda arriba con la primera línea */
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
    max-width: 350px; /* Evita que se estire demasiado en pantallas grandes */
}

.contact-info li i {
    color: var(--accent);
    width: 20px;
    margin-top: 5px; /* Ajuste milimétrico para alinear con la primera letra */
    flex-shrink: 0; /* Impide que el ícono se achique */
}
.footer-bottom {

    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px 50px; /* Agregamos 50px abajo para que no lo tape la barra del celu */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    text-align: center
}