/* Importación de fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Designer:wght@300;400;700&display=swap');

/* Definición de paleta de colores */
:root {
    --negro: #111111;
    --rojo: #D12E2E;
    --gris-oscuro: #333333;
    --gris-claro: #EDE9DD;
}

/* General Styles */
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Designer', sans-serif;
    background-color: var(--negro);
    color: var(--gris-claro);
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Evita desplazamiento horizontal */
}

/* Wrapper Principal */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px; /* Ajustar para el logo */
    background-color: var(--negro);
    color: var(--gris-claro);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--rojo);
}

header .logo img {
    width: 260px; /* Ajusta este valor según sea necesario */
    height: auto; /* Mantiene la proporción */
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 2px;
}

/* Contador */
#countdown {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--rojo);
    color: var(--negro);
    padding: 10px;
    margin-top: 100px; /* Ajuste por el header */
    font-family: 'Bebas Neue', sans-serif; /* APLICADO: Tipografía Bebas Neue */
    font-size: 20px; /* Ajuste de tamaño para Bebas Neue */
}

/* Sección de negocios */
.business-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}

.business-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 120px); /* Restamos el header y el contador */
}

.business-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--gris-claro);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Designer', sans-serif;
    padding: 20px;
    transition: background 0.3s ease-in-out, transform 0.3s;
}

.business-option.accesorios {
    background-image: url('../assets/accesorios.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.business-option.motos {
    background-image: url('../assets/motos.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.business-option.servicios {
    background-image: url('../assets/servicios.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Efecto Hover */
.business-option:hover {
    background-color: var(--rojo);
    transform: scale(1.05);
    color: #D12E2E;
}

/* Footer */
footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: var(--rojo);
    color: var(--negro);
    position: relative;
    margin-top: auto;
    font-family: 'Designer', sans-serif; /* APLICADO: Tipografía Designer */
    font-size: 14px; /* Asegura un tamaño base */
}

/* Estilos para la sección de redes sociales del footer */
.footer-section.social-media {
    margin-top: 15px; /* Espacio superior para separar del texto de contacto/ubicación */
}

.footer-section.social-media h3 {
    font-family: 'Bebas Neue', sans-serif; /* Opcional: Bebas Neue para el título "Síguenos" */
    font-size: 1.2em; /* Ajuste de tamaño */
    color: var(--negro); /* Color para el título */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section .social-icons {
    display: flex;
    justify-content: center; /* Centrar los íconos */
    gap: 15px; /* Espacio entre los íconos */
    align-items: center;
}

.footer-section .social-icons a {
    display: block;
    width: 35px; /* Tamaño de los íconos */
    height: 35px; /* Tamaño de los íconos */
    transition: transform 0.2s ease-in-out;
    line-height: 0; /* Asegura que el enlace no tenga altura extra por el texto */
}

.footer-section .social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-section .social-icons a:hover {
    transform: scale(1.15); /* Efecto de zoom al pasar el ratón */
}

/* Evitar superposición del footer en móviles */
@media (max-width: 768px) {
    footer {
        padding-bottom: 80px; /* Espacio adicional para evitar superposición con WhatsApp */
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

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

/* ✅ 📲 MEDIA QUERIES - RESPONSIVE DESIGN */

/* Ajustes para Tablets */
@media (max-width: 1024px) {
    .business-section {
        flex-direction: column;
        height: calc(100vh - 120px);
    }

    .business-option {
        height: 33vh; /* Cada sección ocupa más espacio */
    }

    header .logo img {
        width: 200px;
    }

    #countdown {
        font-size: 18px; /* Ajuste para tablets */
    }

    footer {
        font-size: 12px;
    }
    .footer-section.social-media h3 {
        font-size: 1.1em;
    }
    .footer-section .social-icons a {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Ajustes para Teléfonos Pequeños */
@media (max-width: 768px) {
    header {
        height: 80px;
    }

    header .logo img {
        width: 180px;
    }

    .business-section {
        flex-direction: column;
        height: calc(100vh - 120px);
    }

    .business-option {
        height: 33vh; /* Ajusta el espacio */
        font-size: 20px;
    }

    #countdown {
        font-size: 16px; /* Ajuste para móviles */
        padding: 8px;
    }

    footer {
        font-size: 11px;
    }
    .footer-section.social-media h3 {
        font-size: 1em;
    }
    .footer-section .social-icons {
        gap: 10px;
    }
    .footer-section .social-icons a {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Ajustes para Teléfonos Extra Pequeños */
@media (max-width: 480px) {
    header .logo img {
        width: 150px;
    }

    .business-option {
        height: 33vh;
        font-size: 18px;
    }

    #countdown {
        font-size: 14px; /* Ajuste para móviles muy pequeños */
        padding: 6px;
    }

    footer {
        font-size: 10px;
        padding: 15px;
    }
    .footer-section.social-media h3 {
        font-size: 0.9em;
    }
    .footer-section .social-icons {
        gap: 8px;
    }
    .footer-section .social-icons a {
        width: 25px;
        height: 25px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}