* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    color: #222;
    line-height: 1.6;
}

/* --------------------------------Configuraciones Globales para la Navbar */
:root {
    --rojo-peru: #c00000;
    --oscuro: #121212;
    --blanco: #ffffff;
}

/* --- ACTUALIZACIÓN DE NAVBAR --- */
.navbar {
    background-color: transparent; /* Transparente al inicio */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease; /* Animación suave para el cambio de color */
    box-shadow: none; /* Sin sombra al estar arriba */
}

/* Esta clase se activará con JavaScript al bajar */
.navbar.navbar-scrolled {
    background-color: rgba(18, 18, 18, 0.95); /* El fondo oscuro que tenías */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    height: 70px; /* Opcional: se hace un poco más delgada al bajar */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
}

.logo-img {
    height: 60px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.nav-item {
    color: var(--blanco);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--rojo-peru);
}

/* Botón especial de contacto */
.btn-reserva {
    background-color: var(--rojo-peru);
    border-radius: 5px;
    margin-left: 10px;
}

.btn-reserva:hover {
    background-color: #fff;
    color: var(--rojo-peru) !important;
}

/* --- DISEÑO MÓVIL --- */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 90vh;
        position: absolute;
        top: 80px;
        left: -100%; /* Escondido */
        opacity: 1;
        transition: all 0.5s ease;
        background: var(--oscuro);
    }

    .nav-menu.active {
        left: 0; /* Aparece */
        opacity: 1;
    }

    .nav-item {
        padding: 2rem;
        width: 100%;
        display: table;
    }

    .menu-toggle {
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
    }
}



/* ----------------------------------------------HERO ---------------------------------------------*/
/* --- MEJORAS EN LA PORTADA (HERO) --- */


/* ==========================================================================
   NUEVO SUPER SLIDER PORTADA (FULL SCREEN)
   ========================================================================== */

/* 1. Contenedor Principal (Reemplaza a .hero) */
/* --- ESTILOS SLIDER IMAGEN ÚNICA --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide-single-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.text-content {
    max-width: 900px;
    animation: fadeInDown 1s ease;
}

.text-content h1, .text-content h2 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.text-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #eee;
    margin-bottom: 40px;
}

/* Botones en línea */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-main {
    padding: 15px 35px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-red {
    background: #c00000;
    color: #fff;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. El "tren" que lleva las diapositivas */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out; /* Animación suave de deslizamiento */
}

/* 3. Estilos de cada Diapositiva Individual */
.slide {
    min-width: 100%; /* Cada slide ocupa el 100% del ancho */
    height: 100%;
    position: relative;
}

.panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10% 8% 5%; /* Padding adaptable */
    background-size: cover;
    background-position: center;
}


/* Deberás buscar una imagen de lomo saltado con fuego para que luzca bien */
.right-panel {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('img/right.png'); 
    text-align: right;
    align-items: flex-end; /* Alinea el contenido a la derecha */
}

/* Tipografía Adaptable para el Slider Dual */
.left-panel h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem); /* Tamaño adaptable */
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.left-panel p {
    color: #eee;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    margin-bottom: 30px;
}

.promo-item h2 {
    color: #fff;
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pisco-promo {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #d4af37; /* Dorado */
    margin: 0 0 10px 0;
}

.pisco-promo span { color: #fff; }

.validity {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Botones del Slider Dual */
.btn-gallery {
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: 2px solid #d4af37;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-gallery:hover { background: #d4af37; transform: scale(1.05); }

.btn-reserve {
    background: #c00000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-reserve:hover { background: #e60000; transform: translateY(-3px); }


/* --- ESTILO 2: Diapositiva Única (Nuevas Imágenes) --- */
.slide-single-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el texto */
    text-align: center;
    padding: 0 10%;
}

.text-content {
    max-width: 800px;
}

/* Reutilizando tus estilos antiguos de .hero-title, etc. */
.text-content h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.6);
}

.text-content p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #eee;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Usamos tus botones antiguos (.btn-main) que ya tienes definidos */


/* 4. Controles del Slider (Flechas y Puntos) */
.slider-controls .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 3rem;
    cursor: pointer;
    z-index: 100; /* Por encima de todo */
    padding: 15px;
    transition: 0.3s;
    user-select: none; /* Evita seleccionar texto al hacer clic */
}
.slider-controls .arrow:hover { color: #fff; }
.slider-controls .prev { left: 20px; }
.slider-controls .next { right: 20px; }

.dots-container {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}


/* 5. Ajuste de la Navbar para que flote sobre el Slider */
.nav-overlay {
    background-color: transparent; /* Fondo transparente al inicio */
    position: absolute; /* Importante: absolute, no fixed, para que sea relativo al header */
    top: 0;
    box-shadow: none; /* Quitamos la sombra inicial */
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Línea divisoria muy sutil */
}

/* Opcional: Si quieres que la navbar se vuelva negra al hacer scroll, 
   necesitarás JavaScript para añadir una clase (ej: .navbar-scrolled) */


/* --- RESPONSIVE PARA EL SUPER SLIDER --- */
@media (max-width: 992px) {
    /* En tablets, el diseño dual se apila */
    .main-slider-dual { flex-direction: column; }
    .main-slider-dual::after { display: none; } /* Quitamos la línea diagonal */
    .panel { padding: 80px 5% 40px; text-align: center; align-items: center; }
    .panel.right-panel { text-align: center; } /* Lomo también centrado */
}

@media (max-width: 768px) {
    .slider-controls .arrow { font-size: 2rem; } /* Flechas más pequeñas */
}






/* ------------------------SECTIONS ---------------------------*/
.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.dark {
    background: #111;
    color: #fff;
}
/* ------------------------ SECCIÓN QUIENES SOMOS ------------------ */
.about-section {
    padding: 100px 20px;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos columnas iguales */
    gap: 60px;
    align-items: center;
}

/* Estilos de la Imagen */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--rojo-peru); /* Decoración elegante */
    transition: var(--transicion);
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--oscuro);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.image-experience span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--rojo-peru);
}

/* Estilos del Texto */
.about-text .subtitle {
    color: var(--rojo-peru);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif; /* Si la añadiste antes */
}

.about-text .highlight {
    color: var(--rojo-peru);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--oscuro);
}

.feat i {
    color: var(--rojo-peru);
    font-size: 1.5rem;
}

/* --- RESPONSIVE QUIENES SOMOS --- */
@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Una sola columna en tablets y móviles */
        text-align: center;
        gap: 40px;
    }

    .about-image img {
        box-shadow: 10px 10px 0px var(--rojo-peru);
    }

    .about-features {
        justify-content: center;
    }

    .image-experience {
        right: 10px;
        bottom: 10px;
    }
}

/* Estado inicial: Oculto y desplazado */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px); /* Viene de la izquierda */
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px); /* Viene de la derecha */
    transition: all 1s ease-out;
}

/* Estado final: Visible y en su posición (clase que pondrá JS) */
.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* ------------------------------------------PLATOS--------------------------------------------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
}

.card span {
    font-size: .85rem;
    color: #c00;
}

/* Botón ver más platos  */
.acceso-carta {
    margin-top: 40px;
    padding: 25px 30px;
    background: transparent; /* ❌ quitamos fondo negro */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 👉 alineado a los platos */
}

.btn-ver-carta {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background-color: var(--rojo-peru);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-ver-carta:hover {
    background-color: transparent;
    border-color: var(--rojo-peru);
    color: var(--rojo-peru);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 0, 0, 0.3);
}

.btn-ver-carta svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-ver-carta:hover svg {
    transform: translateX(5px);
}

/* Efecto de click */
.btn-ver-carta:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .acceso-carta {
        justify-content: center;
    }
}



/* --- SECCIÓN MOMENTOS Y GALERÍA --- */
.moments-section {
    padding: 80px 20px;
    background-color: #0f0f0f;
    text-align: center;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.moment-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    transition: transform 0.3s ease;
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-item:hover {
    transform: scale(1.03);
}

/* --- TARJETAS DE PROMO --- */
.promo-card {
    background: linear-gradient(135deg, #c00000 0%, #7a0000 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 2px solid #d4af37;
}

.promo-card.gold {
    background: linear-gradient(135deg, #d4af37 0%, #9a7b2c 100%);
    color: #000;
}

.promo-card h3 {
    font-size: 3rem;
    margin: 0;
}

.promo-card h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-promo {
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #c00000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: black;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .moments-grid {
        grid-template-columns: 1fr;
    }
}



/* ------------------------------------------------HORARIOS --------------------------------------------*/
/* --- ESTILOS EXCLUSIVOS DE HORARIOS --- */
.schedules-section {
    padding: 100px 20px;
    background-color: #0a0a0a; /* Fondo negro profundo */
    color: #ffffff;            /* Texto blanco obligatorio */
    text-align: center;
}

.schedules-container {
    max-width: 900px;
    margin: 0 auto;
}

.subtitle-gold {
    color: #d4af37; /* Dorado elegante */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.highlight-red {
    color: #c00000; /* Rojo Perú */
}

.schedules-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Para que en celular se pongan uno abajo de otro */
}

.schedule-box {
    background: rgba(255, 255, 255, 0.05); /* Fondo gris muy sutil */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 280px;
    transition: 0.3s;
}

.schedule-box:hover {
    border-color: #c00000;
    transform: translateY(-5px);
}

.gold-border {
    border: 1px solid #d4af37; /* El domingo resalta en dorado */
}

.schedule-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.time-slots p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #e0e0e0; /* Gris claro para los párrafos */
}

.all-day {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: #fff !important;
}

.tag-ininterrumpido {
    background: #c00000;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.lunes-cerrado {
    margin-top: 40px;
    color: #888;
    font-style: italic;
}

/* Ajuste móvil */
@media (max-width: 600px) {
    .schedules-wrapper {
        flex-direction: column;
    }
}
/* ---------------------------CONTACTO ---------------------*/
/* --- SECCIÓN CONTACTO PROFESIONAL --- */
.contact-section {
    padding: 100px 20px;
    background-color: #0a0a0a !important; /* Negro profundo para legibilidad total */
    position: relative;
    text-align: center;
    color: #ffffff !important; /* Texto blanco puro */
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Tarjetas con contraste */
.contact-card {
    background: rgba(255, 255, 255, 0.05); /* Fondo gris muy sutil */
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: #c00000; /* Rojo Perú al pasar el mouse */
    transform: translateY(-10px);
}

.contact-card h3 {
    color: #d4af37; /* Dorado para los títulos */
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #cccccc; /* Gris claro para las descripciones */
    margin-bottom: 20px;
}

/* Estilo para los números de teléfono */
.contact-btn, .phone-group a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin: 10px 0;
}

.contact-btn:hover, .phone-group a:hover {
    color: #c00000 !important;
}

/* Tarjeta Destacada */
.highlight-card {
    border: 1px solid #c00000;
    background: rgba(192, 0, 0, 0.05);
}

.delivery-info {
    margin-top: 50px;
    font-size: 1.1rem;
    color: #ccc;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.delivery-info i {
    color: #ffc107; /* Color amarillo Glovo */
    margin-right: 10px;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------------------------UBICACIÓN ---------------------*/

/* SECCIÓN UBICACIÓN */
.ubicacion-section {
    padding: 90px 20px;
    background: #fff;
    text-align: center;
}

.ubicacion-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ubicacion-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* CARD */
.ubicacion-card {
    max-width: 1100px;
    margin: auto;
    background: #f9f9f9;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* MAPA */
.ubicacion-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* INFO */
.ubicacion-info {
    padding: 40px;
    text-align: left;
}

.badge-ubicacion {
    background: #c00000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.ubicacion-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.direccion {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BOTONES */
.ubicacion-botones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ubicacion {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-ruta {
    background: #000;
    color: #fff;
}

.btn-ruta:hover {
    background: #222;
}

.btn-llamar {
    border: 2px solid #000;
    color: #000;
}

.btn-llamar:hover {
    background: #000;
    color: #fff;
}


@media (max-width: 900px) {
    .ubicacion-card {
        grid-template-columns: 1fr;
    }

    .ubicacion-info {
        text-align: center;
    }

    .ubicacion-botones {
        flex-direction: column;
    }
}


/* ---------------------------FOOTER ------------------------*/
.main-footer {
    background-color: #050505 !important; /* Negro casi total */
    padding: 60px 20px 30px;
    color: #ffffff !important;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Línea dorada sutil */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    color: #d4af37; /* Dorado */
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #c00000; /* Rojo al pasar el mouse */
}

.footer-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

/* Crédito del creador */
.creator {
    font-size: 0.8rem !important;
    color: #d4af37 !important; /* Nombre en dorado */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 300;
}
 /* logo Whatsapp flotante */

.whatsapp-flotante {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 50px rgba(45,212,191,0.9);
    z-index: 1000;
    transition: transform 0.2s ease;
}
                  
.whatsapp-flotante img {
    width: 90px;
    height: 90px;
}
                  
.whatsapp-flotante:hover {
    transform: scale(1.1);
}
                  
                