/* --- Variables --- */
:root {
    --primary: #E61E2A;
    --primary-dark: #C41924;
    --secondary: #0A0A0A; /* Volvemos a base oscura para secciones de impacto */
    --secondary-light: #1A1A1A;
    --accent: #FFFFFF;
    --text-main: #0A0A0A; /* Default texto oscuro para secciones blancas */
    --text-light: #FFFFFF; /* Texto claro para secciones negras */
    --text-muted: #666666;
    --bg-dark: #0A0A0A;
    --bg-light: #FFFFFF;
    --bg-card: #F9F9F9;
    --bg-alt: #F4F4F4;
    --border: #E0E0E0;
    
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Kanit', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 { font-size: 4rem; line-height: 1; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; }

span {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.5rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* --- Header & Navigation (Ultra Premium Glassmorphism) --- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease, background 0.3s ease;
}

.glass-header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    padding: 10px 25px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: url('assets/fondo-llantas.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, var(--bg-dark) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-section::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.badge {
    display: inline-block;
    background-color: var(--primary);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 30, 42, 0.4);
}

.hero-text h1 {
    color: var(--text-light);
    font-size: 5.5rem;
    line-height: 1.05;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.7);
    margin-bottom: 15px;
}

.hero-text h1 span {
    display: block;
    color: var(--primary);
    text-shadow: 4px 4px 8px rgba(230, 30, 42, 0.4);
}

.hero-text p {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    max-width: 550px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tire-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.tire-showcase img {
    width: 80%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
    background-color: transparent;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Brands Section --- */
.brands-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border);
}

.section-title-small {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
}

.brand-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-item:hover {
    transform: scale(1.15);
}

.brand-item span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* --- Promo Section --- */
.promo-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(230, 30, 42, 0.3);
    color: white;
    gap: 30px;
}

.promo-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.promo-btn {
    border-color: white;
    background: white;
    color: var(--primary);
    white-space: nowrap;
}

.promo-btn:hover {
    background: transparent;
    color: white;
}

/* --- Inventory Section (Premium Glassmorphism) --- */
.inventory-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.locations-section .section-header p,
.benefits-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.locations-section .section-header h2,
.benefits-section .section-header h2 {
    color: var(--text-light);
}

.dark-premium-section {
    background: url('assets/fondo-llantas.jpg') no-repeat center center/cover;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.dark-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85); /* Oscurece la imagen para que el glass destaque */
    z-index: 1;
}

.inventory-bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(230, 30, 42, 0.15) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
}

.relative-z {
    position: relative;
    z-index: 10;
}

.dark-premium-section .section-header h2 {
    color: var(--text-light);
    font-size: 4rem;
}

.dark-premium-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.inventory-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- Calculator --- */
.calculator-wrapper {
    margin-bottom: 30px;
}

.calculator-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.calc-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.calc-inputs input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    font-family: var(--font-body);
}

.calc-inputs input:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-divider {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
}

.calc-inputs button {
    flex: 1;
    min-width: 150px;
    padding: 15px;
}

.calc-results-container {
    margin-top: 25px;
    padding: 20px;
    background: rgba(230, 30, 42, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

.glass-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 40px 0;
}

.glass-controls {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.glass-controls input, .glass-controls select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.full-width-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.search-wrapper { position: relative; width: 100%; }
.search-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); }
.search-wrapper input { width: 100%; padding: 15px 15px 15px 45px; border-radius: 8px; font-family: var(--font-body); font-size: 1.1rem; }

.filters-wrapper { display: flex; gap: 15px; width: 100%; }
.filters-wrapper select { flex: 1; padding: 15px 20px; border-radius: 8px; cursor: pointer; font-size: 1.1rem; }

@media (min-width: 768px) {
    .full-width-controls {
        flex-direction: row;
    }
    .search-wrapper { flex: 2; }
    .filters-wrapper { flex: 1; }
}

.inventory-table-container {
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

th {
    padding: 20px;
    text-align: left;
    font-weight: 400;
    font-size: 1.1rem;
}

td {
    padding: 15px 20px;
}

.loading {
    text-align: center;
    padding: 50px;
    color: rgba(255,255,255,0.7);
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.glass-table {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-table thead {
    background: rgba(0, 0, 0, 0.6);
}

.glass-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.glass-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.page-btn {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.page-btn:hover, .page-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-btn:disabled {
    background-color: transparent;
    color: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.1);
}

/* --- Magnetic Buttons --- */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s;
    will-change: transform;
}

/* --- Benefits Section --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

.benefit-card {
    background-color: var(--secondary-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* --- SEO Content Section --- */
.seo-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.seo-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--text-main);
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
    text-align: center;
    overflow: hidden; /* Evita que el scroll horizontal rompa la página */
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    /* Ocultar barra de scroll en navegadores */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px; /* Ancho fijo para las tarjetas */
    scroll-snap-align: center;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

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

.review-stars {
    color: #FFB400;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Flechas de navegación para escritorio */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: none; /* Oculto por defecto en móvil */
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

@media (min-width: 768px) {
    .carousel-nav-btn {
        display: flex;
    }
    .reviews-carousel {
        padding: 0 40px;
    }
}

/* --- Locations Section --- */
.locations-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background-color: var(--secondary-light);
    padding: 40px;
    border-radius: 12px;
}

.location-details .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.location-details .btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.info h3 { margin-bottom: 20px; color: var(--text-light); }
.info p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); }
.info i { color: var(--primary); width: 20px; }

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.5);
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('assets/fondo-llantas.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.final-cta p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 40px; }

/* --- WhatsApp Flotante --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-10deg);
    color: #FFF;
}

/* --- Footer --- */
.main-footer {
    padding: 80px 0 30px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p, .footer-contact p { color: rgba(255, 255, 255, 0.6); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 { font-size: 2rem; margin-bottom: 20px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 25px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); }
.footer-links a:hover { color: var(--primary); }

.footer-contact p { margin-bottom: 15px; }
.footer-contact i { color: var(--primary); margin-right: 10px; }

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.tooltip {
    position: absolute;
    right: 75px;
    background-color: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.benefit-card, .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .location-details { grid-template-columns: 1fr; }
    .review-card { min-width: calc(50% - 15px); }
    .promo-banner { flex-direction: column; text-align: center; gap: 20px; }
    .promo-icon { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .review-card { min-width: 100%; }
    .inventory-controls { grid-template-columns: 1fr; }
    .filters-wrapper { flex-direction: column; }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 { font-size: 3rem; }
    .hero-content { gap: 20px; }
    .badge { margin-bottom: 15px; font-size: 0.8rem; }
}
