<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === VARIABLES SOLO BLANCO Y NEGRO === */
:root {
    --primary-color: #fff;
    --primary-soft: #eaeaea;
    --bg-black: #0a0a0a;
    --bg-dark: #181818;
    --bg-darker: #111;
    --bg-light: #232323;
    --bg-accent: #232323;
    --bg-black-light: #181818;
    --text-white: #fff;
    --text-white-soft: rgba(255,255,255,0.85);
    --primary-gradient: linear-gradient(135deg, #fff, #eaeaea);
    --shadow-gold: 0 0 15px rgba(255,255,255,0.10);
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* === BASE === */
body {
    font-size: 1.18rem;
    font-family: 'Roboto', Arial, sans-serif;
    background: #111;
    color: #fff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === HEADER === */
header {
    background: linear-gradient(160deg, #101010 100%, #232323 70%);
    padding: 4.5rem 0 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(255,255,255,0.08);
}
header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff 60%, transparent);
}
.header-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 160px;
    display: flex;
    align-items: center;      /* Centra verticalmente */
    justify-content: center;  /* Centra horizontalmente el contenido */
}
.header-content h1 {
    margin: 0;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 32px rgba(255,255,255,0.10), 0 2px 0 #222;
    display: block;
    opacity: 0.96;
    position: relative;
    animation: fadeInDown 1.1s 0.1s both;
    transition: color 0.3s;
    text-align: left;
    line-height: 1.1;
    z-index: 1;
    width: auto;
}
.header-image {
    width: 130px;
    height: 130px;
    border-radius: 22px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin-right: 2.2rem;
    margin-bottom: -11.5rem;
    margin-top: 0.5rem;
    display: block;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s, filter 0.3s, transform 0.3s;
    will-change: transform;
}
.header-image:hover {
    box-shadow: 0 12px 40px rgba(255,255,255,0.18);
    filter: brightness(1.08) contrast(1.1);
    transform: scale(1.03);
}
.header-image-animated {
    position: relative;
    top: 32px !important;
    left: 32px !important;
    z-index: 2000 !important;
    width: 120px;
    height: 120px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    background: #181818;
    transition: box-shadow 0.3s, filter 0.3s, transform 0.3s;
}

.subtitle {
    color: var(--text-white-soft);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s 0.3s forwards;
    text-shadow: 0 2px 12px rgba(255,255,255,0.08);
}

@media (max-width: 700px) {
  /* HERO: TÃ­tulo multilinea y centrado */
  .header-content h1,
  .hero-title,
  .hero-title.destacado {
    font-size: 1.5rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 1rem auto !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    padding: 0 !important;
    display: block !important;
  }
  /* FAQ y COMO FUNCIONA: centra y ajusta */
  .faq-section,
  .about-section,
  .hero-section {
    max-width: 100vw !important;
    min-width: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    margin: 1rem 0 0 0 !important;
    padding: 1rem 0.5rem !important;
    border-radius: 1.2rem !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
  }
  .faq-list{
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
  }
  .faq-item{
    width: 95vw !important;
    max-width: 500px !important;
    min-width: 0 !important;
    margin: 0.5rem auto !important;
    padding: 0.7rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .faq-question,
  .faq-answer,
  .howto-step-title,
  .howto-step-desc {
    text-align: center !important;
    word-break: break-word !important;
    font-size: 1rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Footer: quepa y no se corte */
  .footer,
  .footer-container,
  .footer-content {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.5rem !important;
    overflow: visible !important;
    flex-direction: column !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
  }
  .footer-section,
  .footer-logo-section {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 1.2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
  }
  .footer-logo {
    font-size: 1.3rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }
  .footer-description {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .social-links {
    display: flex !important;
    gap: 0.7rem !important;
    margin-top: 0.5rem !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-heading {
    font-size: 1.05rem !important;
    margin-bottom: 0.3rem !important;
    text-align: left !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.7;
    margin: 0 auto;
    display: block;
  }
  .footer-links {
    gap: 0.4rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-link {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }
  .opening-hours,
  .contact-info {
    font-size: 0.95rem !important;
    width: 100% !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }
  .hours-item {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .hours-item span:first-child {
    min-width: 90px !important;
    word-break: break-word !important;
  }
  .contact-item {
    font-size: 0.93rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-bottom {
    text-align: center !important;
    font-size: 0.68rem !important;
    padding: 0.7rem 0.2rem 5.5rem 0.2rem !important; /* &lt;--- Cambia el padding-bottom a 5.5rem */
    width: 100% !important;
    margin: 0 auto !important;
    border-top: 1px solid #232323 !important;
    color: #aaa !important;
    background: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .footer-bottom p {
    margin: 0 auto !important;
    max-width: 98% !important;
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: inline !important;
  }
}

@media (max-width: 700px) {
  /* FOOTER: Estilos mÃ³viles */
  .footer,
  .footer-container,
  .footer-content {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.5rem !important;
    overflow: visible !important;
    flex-direction: column !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
  }
  .footer-section,
  .footer-logo-section {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 1.2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
  }
  .footer-logo {
    font-size: 1.3rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }
  .footer-description {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .social-links {
    display: flex !important;
    gap: 0.7rem !important;
    margin-top: 0.5rem !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-heading {
    font-size: 1.05rem !important;
    margin-bottom: 0.3rem !important;
    text-align: left !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }
  .footer-links {
    gap: 0.4rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-link {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }
  .opening-hours,
  .contact-info {
    font-size: 0.95rem !important;
    width: 100% !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }
  .hours-item {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .hours-item span:first-child {
    min-width: 90px !important;
    word-break: break-word !important;
  }
  .contact-item {
    font-size: 0.93rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }
  .footer-bottom {
    text-align: center !important;
    font-size: 0.68rem !important;
    padding: 0.7rem 0.2rem 5.5rem 0.2rem !important; /* &lt;--- Cambia el padding-bottom a 5.5rem */
    width: 100% !important;
    margin: 0 auto !important;
    border-top: 1px solid #232323 !important;
    color: #aaa !important;
    background: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .footer-bottom p {
    margin: 0 auto !important;
    max-width: 98% !important;
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: inline !important;
  }
}

/* === NAVIGATION === */
/* --- NAVIGATION MENU ESTILO DISTINTO Y CENTRADO --- */
.nav-container {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 2.5rem 0 2.5rem 0;
    z-index: 10;
    overflow-x: auto;
}
/* === MENÃš DE NAVEGACIÃ“N EN UNA SOLA LÃNEA, CÃRCULOS MÃS GRANDES, SIN SCROLLBAR === */
.categories-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.8rem;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(255,255,255,0.09);
    padding: 1.3rem 3.5rem;
    margin: 0 auto 2rem auto;
    width: 100%;
    max-width: 1800px; /* MÃ¡s ancho para que quepan todas las opciones */
    min-width: 1200px; /* Fuerza a que no se corte en pantallas grandes */
    overflow-x: visible; /* No mostrar scroll horizontal */
    position: relative;
    border: 2.5px solid #fff;
    transition: box-shadow 0.3s, background 0.3s;
    animation: fadeInScale 0.7s;
    /* Oculta scrollbar en todos los navegadores */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-list::-webkit-scrollbar {
    display: none;
}

.category-btn {
    color: #fff;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.2rem 2.7rem;
    border-radius: 3rem;
    border: 2.5px solid #fff;
    letter-spacing: 1.2px;
    outline: none;
    cursor: pointer;
    transition: 
        background 0.18s, 
        color 0.18s, 
        box-shadow 0.18s, 
        transform 0.18s, 
        border 0.18s;
    box-shadow: 0 2px 16px rgba(255,255,255,0.10);
    margin: 0;
    min-width: 170px;
    max-width: 220px;
    position: relative;
    z-index: 1;
    opacity: 0.97;
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.category-btn:hover, .category-btn:focus, .category-btn.active {
    background: #fff;
    color: #181818;
    border: 2.5px solid #fff;
    box-shadow: 0 6px 24px rgba(255,255,255,0.18);
    transform: translateY(-3px) scale(1.07);
}

.category-btn.active {
    background: #fff;
    color: #181818;
    border: 2.5px solid #fff;
    box-shadow: 0 8px 32px rgba(255,255,255,0.18);
    transform: scale(1.09);
}

@media (max-width: 1300px) {
    .categories-list {
        max-width: 98vw;
        padding: 1rem 1.2rem;
        gap: 1.2rem;
    }
    .category-btn {
        min-width: 120px;
        max-width: 170px;
        padding: 0.9rem 1.5rem;
        font-size: 1.05rem;
    }
}
@media (max-width: 900px) {
    .categories-list {
        padding: 0.7rem 0.5rem;
        gap: 0.7rem;
        max-width: 100vw;
    }
    .category-btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        min-width: 90px;
        max-width: 120px;
    }
}
@media (max-width: 600px) {
    .categories-list {
        gap: 0.4rem;
        padding: 0.4rem 0.2rem;
    }
    .category-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
        min-width: 70px;
        max-width: 100px;
    }
}

/* === CATEGORY NAV === */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    flex-wrap: wrap;
    background: rgba(22, 22, 22, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.category-btn:hover, .category-btn.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.category-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}
.category-btn:hover::after, .category-btn.active::after {
    width: 80%;
}

/* === SEARCH BOX === */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #181818;
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid #fff;
    transition: var(--transition);
}
.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.08);
    background: #232323;
}
.search-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.search-input::placeholder {
    color: var(--text-white-soft);
    opacity: 0.6;
}
.search-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 0.5rem;
}
.search-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #181818;
    border-radius: 50%;
    transform: translate(-2px, -2px);
    transition: var(--transition);
}
.search-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: #181818;
    transform: translate(7px, 7px) rotate(-45deg);
    transition: var(--transition);
}
.search-icon:hover {
    transform: scale(1.05);
    background: #eaeaea;
}
.search-icon:hover::before {
    width: 16px;
    height: 16px;
}
.search-icon:hover::after {
    height: 9px;
}
.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #181818;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 10;
    padding: 0.5rem 0;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}
.search-results.active { display: block; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: background 0.2s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #232323; }
.search-result-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: #111;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-title {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}
.search-result-desc {
    color: var(--text-white-soft);
    font-size: 0.92rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-price {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 500;
}

/* === MENU SECTIONS === */
.menu-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    background: #181818;
    border: 1px solid #232323;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}
.menu-section.active {
    display: block;
    animation: fadeInUp 0.6s forwards;
}

/* --- ESTILO DIFERENTE PARA EL h2 DE ENTRANTES Y DEMÃS SECCIONES --- */
.menu-section &gt; h2 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.18em;
    margin-bottom: 2.2rem;
    margin-top: 0;
    padding: 0.7em 2.2em;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    box-shadow: none;
    border: none;
    overflow: visible;
    transition: color 0.3s, letter-spacing 0.2s;
    z-index: 1;
    animation: fadeInDown 0.8s;
    isolation: isolate;
}

.menu-section &gt; h2::before,
.menu-section &gt; h2::after {
    content: '';
    display: block;
    height: 3px;
    width: 70px;
    background: linear-gradient(90deg, #fff 0%, #232323 100%);
    border-radius: 2px;
    margin: 0 1.5rem;
    opacity: 0.7;
}
.menu-section &gt; h2::before {
    margin-right: 1.5rem;
}
.menu-section &gt; h2::after {
    margin-left: 1.5rem;
}

.menu-section &gt; h2 span {
    color: #fff;
    background: linear-gradient(90deg, #fff 60%, #232323 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 0.18em;
    padding: 0 0.2em;
    text-shadow: 0 2px 12px rgba(255,255,255,0.10);
    transition: background 0.3s;
}

.menu-section &gt; h2:hover,
.menu-section &gt; h2:focus {
    color: #ffb347;
    letter-spacing: 0.22em;
}
.menu-section &gt; h2:hover span,
.menu-section &gt; h2:focus span {
    background: linear-gradient(90deg, #ffb347 60%, #232323 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nuevo estilo hover para los tÃ­tulos de las secciones principales */
.masonry-section h2:hover,
.masonry-section .about-title:hover,
.masonry-section .opinions-title:hover,
.masonry-section .howto-title:hover,
.masonry-section .faq-title:hover {
    letter-spacing: 2.5px;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-fill-color: unset;
    border-bottom: 2.5px solid #fff;
    box-shadow: 0 4px 0 #fff, 0 2px 16px #0006;
    filter: none;
    text-shadow:
        0 2px 12px #fff4,
        0 1px 0 #000a;
    transition: 
        letter-spacing 0.2s,
        color 0.2s,
        border-bottom 0.3s,
        box-shadow 0.3s,
        text-shadow 0.3s;
}

/* Limpieza: elimina duplicados y reglas no usadas */
/* Elimina el bloque duplicado de hover anterior y cualquier regla de hover de tÃ­tulos que no sea la de arriba. */
/* Elimina tambiÃ©n los estilos de .menu-section &gt; h2:focus span y similares si no se usan en tu HTML. */

/* === PLATOS === */
.menu-item, .dish-card {
    background: #111;
    border: 1px solid #232323;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(255,255,255,0.08);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin: 0 auto;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
    opacity: 1;
    transform: none;
    filter: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.menu-section.active .menu-item,
.menu-section.active .dish-card {
    animation: fadeInBasic 0.4s;
}
@keyframes fadeInBasic {
    from { opacity: 0; transform: translateY(16px);}
    to { opacity: 1; transform: translateY(0);}
}
.menu-item:hover, .dish-card:hover {
    box-shadow: 0 6px 24px 0 rgba(255,255,255,0.13);
    border-color: #fff;
    background: #181818;
    transform: translateY(-4px) scale(1.01);
}
.menu-item h3, .dish-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
    text-shadow: none;
    transition: color 0.2s;
}
.menu-item:hover h3, .dish-card:hover .dish-title {
    color: #eaeaea;
}
.menu-item p, .dish-description {
    color: var(--text-white-soft);
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}
.menu-item .price, .dish-price {
    color: #fff;
    background: #232323;
    padding: 0.3rem 1rem;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 600;
    margin-top: 0.7rem;
    display: inline-block;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.menu-item:hover .price, .dish-card:hover .dish-price {
    background: #fff;
    color: #181818;
}

/* === GRID DE PLATOS === */
.menu-grid, .dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0.5rem;
    justify-items: center;
    background: transparent;
}
@media (max-width: 768px) {
    .menu-grid, .dishes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0.2rem;
    }
    .menu-item, .dish-card {
        padding: 1rem;
    }
}

/* === RESTAURANT SHOWCASE === */
.restaurant-showcase {
    background-color: var(--bg-black-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #181818 80%, #111 100%);
}
.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.showcase-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
    pointer-events: none;
}
.restaurant-image-container {
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(255,255,255,0.10);
    transition: box-shadow 0.3s;
    pointer-events: auto;
    cursor: pointer;
}
.restaurant-image-container:hover {
    box-shadow: 0 8px 30px rgba(255,255,255,0.18);
}
.restaurant-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    transition: filter 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    filter: brightness(0.95) contrast(1.05);
    position: relative;
    overflow: hidden;
}
.restaurant-image:hover {
    border-radius: 12px;
    filter: brightness(1.05) contrast(1.1);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255,255,255,0.18);
}
.restaurant-image-container:not(:hover) {
    transform: perspective(1000px) rotateX(0) rotateY(0) !important;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(to top, #111, #181818 98%);
    border-top: 1px solid #232323;
    padding: 4rem 0 2rem 0;
    color: var(--text-white-soft);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-description {
    color: var(--text-white-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-link {
    color: var(--text-white-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-icon {
    color: #fff;
    font-size: 1.2rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}
.social-link:hover {
    background: #fff;
    color: #181818;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #232323;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}
.footer-bottom p {
    color: var(--text-white-soft);
    margin: 0;
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    height: 600px;
    background: linear-gradient(120deg, #181818 80%, #232323 100%);
    border-radius: 2.5rem;
    margin: 2.5rem auto 2.5rem auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 800px;
    padding: 2.5rem 2rem;
    animation: fadeInScale 1s;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.13);
}

.hero-title.destacado {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 32px rgba(255,255,255,0.13), 0 2px 0 #222;
    animation: fadeInUp 1.2s 0.1s both;
    text-align: center;
}

.hero-description {
    font-size: 1.25rem;
    color: #eaeaea;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-description.grande {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(255,255,255,0.08);
    animation: fadeInUp 1.2s 0.2s both;
    text-align: center;
}

.hero-frase {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 12px #0008, 0 0 8px #fff2;
    background: rgba(0,0,0,0.18);
    padding: 0.5em 1.2em;
    border-radius: 1.2em;
    border: 1.5px solid #fff3;
    box-shadow: 0 2px 16px #0002;
    display: inline-block;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.hero-frase:hover {
    background: #fff;
    color: #181818;
    box-shadow: 0 4px 32px #fff4;
    border-color: #fff;
}

.hero-cta-btn {
    display: inline-block;
    padding: 0.9em 2.2em;
    font-size: 1.1rem;
    font-weight: 700;
    color: #181818;
    background: #fff;
    border: none;
    border-radius: 2em;
    box-shadow: 0 2px 16px rgba(255,255,255,0.10);
    text-decoration: none;
    letter-spacing: 1.2px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    cursor: pointer;
}
.hero-cta-btn:hover, .hero-cta-btn:focus {
    background: #232323;
    color: #fff;
    transform: scale(1.06);
}

.hero-cta-btn.grande-btn {
    font-size: 1.35rem;
    padding: 1.1em 2.8em;
    border-radius: 2.5em;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #fff 80%, #eaeaea 100%);
    color: #181818;
    box-shadow: 0 4px 32px #ffb34744, 0 2px 8px rgba(255,255,255,0.09);
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1.2s 0.4s both;
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.hero-cta-btn.grande-btn i {
    color: #ffb347;
    font-size: 1.5em;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 12px #ffb34777;
}
.hero-cta-btn.grande-btn:hover, .hero-cta-btn.grande-btn:focus {
    background: #181818;
    color: #fff;
    box-shadow: 0 8px 32px #ffb34777, 0 2px 8px rgba(255,255,255,0.09);
    transform: scale(1.08);
}
.hero-cta-btn.grande-btn:hover i, .hero-cta-btn.grande-btn:focus i {
    color: #fff;
    text-shadow: 0 0 24px #ffb347;
}

/* --- FOOTER LOGO SECTION --- */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 2.2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.13);
}

.footer-description {
    color: #eaeaea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.social-link:hover {
    color: #ffb347;
    transform: scale(1.15);
}

/* --- FOOTER SECTIONS --- */
.footer-section {
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

.opening-hours {
    color: #eaeaea;
    font-size: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 0.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #eaeaea;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #ffb347;
}

.contact-info {
    color: #eaeaea;
    font-size: 1rem;
}

.contact-item {
       display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.4rem;
}

.contact-icon {
    color: #ffb347;
    font-size: 1.1rem;
}

/* --- NEWSLETTER --- */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #232323;
    background: #181818;
    border-radius: 4px;
    color: #fff;
}

.newsletter-button {
    padding: 0.7rem 1.5rem;
    background: #fff;
    border: none;
    border-radius: 4px;
    color: #181818;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-button:hover {
    background: #eaeaea;
    color: #232323;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.13);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid #232323;
}
@media (max-width: 700px) {
  /* Footer: alineaciÃ³n izquierda y fuentes adaptadas */
  .footer,
  .footer-container,
  .footer-content {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .footer-logo-section,
  .footer-section {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 1.2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
  }

  .footer-logo {
    font-size: 1.3rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }

  .footer-description {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }

  .social-links {
    display: flex !important;
    gap: 0.7rem !important;
    margin-top: 0.5rem !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }

  .footer-heading {
    font-size: 1.05rem !important;
    margin-bottom: 0.3rem !important;
    text-align: left !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }

  .footer-links {
    gap: 0.4rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }

  .footer-link {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
  }

  .opening-hours,
  .contact-info {
    font-size: 0.95rem !important;
    width: 100% !important;
    word-break: break-word !important;
    padding-left: 0.5rem !important;
  }

  .hours-item {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }

  .hours-item span:first-child {
    min-width: 90px !important;
    word-break: break-word !important;
  }

  .contact-item {
    font-size: 0.93rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
    width: 100% !important;
    padding-left: 0.5rem !important;
  }

  /* Centra el copyright */
  .footer-bottom {
    text-align: center !important;
    font-size: 0.68rem !important;
    padding: 0.7rem 0.2rem 5.5rem 0.2rem !important; /* &lt;--- Cambia el padding-bottom a 5.5rem */
    width: 100% !important;
    margin: 0 auto !important;
    border-top: 1px solid #232323 !important;
    color: #aaa !important;
    background: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .footer-bottom p {
    margin: 0 auto !important;
    max-width: 98% !important;
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: inline !important;
  }
}

/* Escritorio */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem; /* MÃ¡s separaciÃ³n */
    margin-top: 2rem;
}

.nav-menu a {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.22);
    color: #fff;
    background: transparent;
    transition: all 0.22s;
    text-decoration: none;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
        text-align: center;
        white-space: nowrap;
    }


.nav-menu a.active,
.nav-menu a:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Opcional: para evitar que el contenido quede oculto tras el menÃº fijo en mÃ³vil */
@media (max-width: 700px) {
  body {
    padding-bottom: 60px; /* Ajusta segÃºn la altura del menÃº */
  }
}

/* === RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-section {
        padding: 1.2rem 0.5rem;
        min-height: 620px;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-logo-section {
        align-items: center;
    }
}
@media (max-width: 600px) {
  .faq-section {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 98vw !important;
    max-width: 98vw !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 1rem 0.2rem !important;
    margin: 1rem auto !important;
    border-radius: 1.2rem !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    display: block !important;
    z-index: 1 !important;
    background: linear-gradient(120deg, #181818 80%, #232323 100%) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
  }
  .faq-title {
    font-size: 1.3rem !important;
    padding: 0.5rem 0.2rem !important;
    word-break: break-word !important;
    text-align: center !important;
  }
  .faq-list {
    max-width: 100vw !important;
    width: 100vw !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
  }
  .faq-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin-bottom: 0.7rem !important;
    padding: 0.2rem 0.1rem !important;
    font-size: 1rem !important;
  }
  .faq-question {
    font-size: 1rem !important;
    padding: 0.8rem 0.7rem !important;
    word-break: break-word !important;
  }
  .faq-answer {
    font-size: 0.98rem !important;
    padding: 0 0.7rem !important;
  }
}
@media (max-width: 1000px) {
    .about-section,
    .faq-section {
        max-width: 98vw !important;
        min-width: 0 !important;
        width: 98vw !important;
        min-height: 400px !important;
        height: auto !important;
        padding: 1.2rem 0.5rem !important;
    }
}

/* === LOGO HERO ANIMADO === */
.logo-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    width: 100%;
}
.logo-hero a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.logo-hero-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    display: block;
}

.logo-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff; /* Cambiado a blanco */
    margin: 0;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    width: 90vw;
    max-width: 400px;
    overflow-wrap: break-word;
    display: block;
}

/* === SOBRE NOSOTROS === */
.about-section {
    background: linear-gradient(120deg, #232323 80%, #181818 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 2px 8px rgba(255,255,255,0.06);
    max-width: 900px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    padding: 2.5rem 1.5rem 2.2rem 1.5rem;
    animation: fadeInScale 1.2s 0.2s both;
    max-height: 400px !important;
    height: 400px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s 0.2s both;
}

/* Icono grande al tÃ­tulo de Sobre Nosotros */
.about-title::before {
    content: "";
    display: inline-block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #fff;
    margin-right: 0.7rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.about-title::after {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #181818;
    font-size: 1.25rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    pointer-events: none;
}

.about-content {
    color: #eaeaea;
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
    animation: fadeInUp 1.2s 0.4s both;
}
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1.2s 0.6s both;
}
.about-highlight {
    background: #181818;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    padding: 1.5rem 2rem;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.about-highlight:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #ffb34755, 0 2px 8px rgba(255,255,255,0.09);
}
.about-highlight i {
    font-size: 2.2rem;
    color: #ffb347;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}
.about-highlight-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.about-highlight-desc {
    color: #eaeaea;
    font-size: 1rem;
}

/* --- Â¿CÃ³mo funciona? --- */
.howto-section {
    background: linear-gradient(120deg, #181818 80%, #232323 100%);
    border-radius: 2.5rem;
    margin: 2.5rem auto 2.5rem auto;
    max-width: 1650px;
    padding: 2.7rem 1.5rem 2.7rem 1.5rem;
    box-shadow: 0 12px 48px 0 #000a, 0 2px 8px #fff2;
    animation: fadeInScale 1.2s 0.1s both;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 900px;
    height: 900px;
    display: flex;
    top: 30px;
    flex-direction: column;
    justify-content: flex-start;
    border: 2.5px solid #fff3;
    transition: box-shadow 0.4s, border 0.4s;
}
.howto-section:hover {
    box-shadow: 0 20px 64px 0 #fff2, 0 2px 16px #000c;
    border: 2.5px solid #fff;
}

/* TÃ­tulo con animaciÃ³n de subrayado y brillo (solo blanco) */
.howto-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    text-align: center;
    background: none;
    border: none;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        0 6px 32px #000a,
        0 1px 0 #fff8,
        0 0 2px #fff;
    transition: color 0.2s, letter-spacing 0.2s;
    animation: howtoTitleGlowWhite 2.5s infinite alternate;
}
@keyframes howtoTitleGlowWhite {
    0% { text-shadow: 0 6px 32px #000a, 0 1px 0 #fff8, 0 0 2px #fff; }
    100% { text-shadow: 0 8px 48px #fff9, 0 2px 8px #fff8, 0 0 8px #fff; }
}
.howto-title::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, #232323 100%);
    border-radius: 2px;
    margin: 0.2rem auto 0 auto;
    opacity: 0.95;
    animation: underlineSlideWhite 2.2s cubic-bezier(.4,1.7,.6,1) infinite alternate;
}
@keyframes underlineSlideWhite {
    0% { width: 0; opacity: 0; }
    60% { width: 120px; opacity: 1; }
    100% { width: 80px; opacity: 0.7; }
}

/* Pasos con cards animadas y efecto glass + hover pop */
.howto-steps {
    display: flex;
    flex-direction: row;
    gap: 2.7rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    animation: fadeInUp 1.2s 0.2s both;
    align-items: stretch;
}

.howto-step {
    background: rgba(24,24,24,0.93);
    border-radius: 2rem;
    box-shadow: 0 8px 32px #0008, 0 2px 8px #fff2;
    padding: 2.2rem 2.3rem 1.8rem 2.3rem;
    min-width: 160px;
    max-width: 250px;
    min-height: 240px;
    height: 240px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.1rem;
    position: relative;
    transition: box-shadow 0.4s, transform 0.4s, background 0.3s, border 0.3s;
    cursor: pointer;
    backdrop-filter: blur(3px);
    border: 2px solid #fff2;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: howtoFadeIn 1.1s forwards;
    will-change: transform, box-shadow;
}
.howto-step:nth-child(1) { animation-delay: 0.2s; }
.howto-step:nth-child(2) { animation-delay: 0.4s; }
.howto-step:nth-child(3) { animation-delay: 0.6s; }

@keyframes howtoFadeIn {
    to { opacity: 1; transform: translateY(0) scale(1);}
}

.howto-step:hover {
    box-shadow: 0 16px 48px #fff5, 0 4px 16px #fff3;
    background: rgba(35,35,35,0.99);
    transform: translateY(-12px) scale(1.07) rotate(-2deg);
    border-color: #fff;
    z-index: 2;
}

/* Icono circular animado para cada paso (solo blanco y negro) */
.howto-icon {
    background: linear-gradient(135deg, #fff 80%, #232323 100%);
    color: #181818;
    border-radius: 50%;
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.3rem;
    margin-bottom: 0.7rem !important;
    box-shadow: 0 2px 16px #fff4, 0 2px 8px #0002;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    border: 2.5px solid #fff;
    animation: iconPulseWhite 2.5s infinite alternate;
}
@keyframes iconPulseWhite {
    0% { box-shadow: 0 2px 16px #fff4, 0 2px 8px #0002; transform: scale(1);}
    100% { box-shadow: 0 8px 32px #fff9, 0 2px 8px #fff2; transform: scale(1.12);}
}
.howto-step:hover .howto-icon {
    background: #181818;
    color: #fff;
    box-shadow: 0 8px 32px #fff9, 0 2px 8px #fff2;
    border-color: #fff;
    transform: scale(1.15) rotate(6deg);
}

/* TÃ­tulo y descripciÃ³n de cada paso */
.howto-step-title {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 12px #000a;
    transition: color 0.2s;
}
.howto-step-desc {
    color: #eaeaea;
    font-size: 1.02rem;
    opacity: 0.93;
    text-shadow: 0 1px 6px #0008;
    transition: color 0.2s;
}
.howto-step:hover .howto-step-title {
    color: #fff;
    text-shadow: 0 2px 16px #fff8;
}
.howto-step:hover .howto-step-desc {
    color: #fff;
}

/* === RESPONSIVE PARA MÃ“VILES === */
@media (max-width: 768px) {
    .howto-section {
        padding: 1.5rem 0.5rem;
        min-height: auto;
    }
    
    .howto-steps {
        flex-direction: column;
        align-items: center !important; /* Centra los pasos en mÃ³vil */
        gap: 1rem;
    }
    
    .howto-step {
        width: 90%; /* Ocupa casi todo el ancho */
        max-width: 300px; /* Pero con un mÃ¡ximo */
        min-height: auto;
        padding: 1.2rem;
    }
    
    .howto-title {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Ajustes adicionales para pantallas muy pequeÃ±as */
@media (max-width: 480px) {
    .howto-step {
        width: 5%;
        padding: 1rem;
    }
    
    .howto-step-title {
        font-size: 1.1rem !important;
    }
    
    .howto-step-desc {
        font-size: 0.9rem !important;
    }
}


/* --- FAQ --- */
.faq-section {
    
    background: linear-gradient(120deg, #181818 80%, #232323 100%);
    border-radius: 2rem;
    margin: 2.5rem auto;
    max-width: 1600px !important;
    width: 1600px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    animation: fadeInScale 1.2s 0.2s both;
    text-align: center;
    position:absolute;
    top: 885px;
left: 740px ;

   
    right: 190px;
    overflow: visible;
}

.faq-title {
    color: #fff;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.13);
    animation: fadeInUp 1.2s 0.1s both;
    position: relative;
}

.faq-title i {
    color: #fff;
    margin-right: 0.5rem;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.faq-item {
    background: #181818;
    border-radius: 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 16px rgba(255,255,255,0.06), 0 2px 8px rgba(0,0,0,0.13);
    overflow: hidden;
    transition: box-shadow 0.3s, background 0.3s;
    animation: fadeInUp 1.1s;
    width: 800px;
    
}

.faq-question {
    flex-wrap: wrap;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    
    justify-content: space-between;
    transition: background 0.3s, color 0.3s;
    position: relative;
}

.faq-question:hover, .faq-question[aria-expanded="true"] {
    background: #232323;
    color: #fff;
}

.faq-arrow {
    transition: transform 0.4s cubic-bezier(.4,1.7,.6,1);
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #232323;
    color: #eaeaea;
    font-size: 1.05rem;
    padding: 0 1.5rem;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(.4,1.7,.6,1), opacity 0.4s;
}

.faq-item.open .faq-answer {
    padding: 1rem 1.5rem 1.2rem 1.5rem;
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.7s cubic-bezier(.4,1.7,.6,1), opacity 0.5s;
}

/* --- SECCIONES PRINCIPALES EN MASONRY/FILA ESCALONADA (ALTO MAYOR Y ALINEADO) --- */
.main-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
    justify-content: center;
    align-items: stretch;
    margin: 2.5rem auto 2.5rem auto;
    max-width: 1600px;
    width: 100%;
}

/* Secciones mÃ¡s altas y perfectamente alineadas */
.masonry-section {
    flex: 0 0 calc(50% - 1.75rem);
    max-width: calc(70% - 1.75rem);
    min-width: 280px;
    margin: 0;
    margin-bottom: 2.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 280px;
    padding: 2.2rem 2.5rem 2.2rem 2.5rem !important;
    background-clip: padding-box;

}

/* Efecto escalonado: la segunda columna baja un poco */
.masonry-section:nth-child(2n) {
    margin-top: 2.5rem;
}

/* Ajusta el contenido interno para ocupar todo el alto si es necesario */
.masonry-section &gt; * {
    flex: 1 1 auto;
}

/* AlineaciÃ³n y compacidad del contenido interno */
.masonry-section,
.masonry-section * {
    font-size: 1rem !important;
}

/* Nuevo estilo para los tÃ­tulos de las secciones principales (blanco y negro, elegante, sin lÃ­neas) */
.masonry-section h2,
.masonry-section .about-title,
.masonry-section .opinions-title,
.masonry-section .howto-title,
.masonry-section .faq-title {
    font-size: 2.2rem !important;
    font-weight: 450px;
    letter-spacing: 2.5px;
    color: #fff;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-fill-color: unset;
    margin-bottom: 1.7rem !important;
    padding-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        0 6px 32px #000a,
        0 1px 0 #fff8,
        0 0 2px #fff;
    position: relative;
    transition: letter-spacing 0.2s, color 0.2s, text-shadow 0.2s, transform 0.2s;
}

/* AÃ±ade un subrayado animado solo al hacer hover */
.masonry-section h2:hover,
.masonry-section .about-title:hover,
.masonry-section .opinions-title:hover,
.masonry-section .howto-title:hover,
.masonry-section .faq-title:hover {
    color: #fff;
    letter-spacing: 4px;
    text-shadow:
        0 10px 40px #fff4,
        0 2px 8px #000a;
    transform: translateY(-2px) scale(1.03);
    cursor: pointer;
}

.masonry-section h2:hover::after,
.masonry-section .about-title:hover::after,
.masonry-section .opinions-title:hover::after,
.masonry-section .howto-title:hover::after,
.masonry-section .faq-title:hover::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
    opacity: 0.85;
    animation: underlineGrow 0.35s cubic-bezier(.4,1.7,.6,1) forwards;
}

.masonry-section h2::after,
.masonry-section .about-title::after,
.masonry-section .opinions-title::after,
.masonry-section .howto-title::after,
.masonry-section .faq-title::after {
    content: none;
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 0.85; }
}

/* Centra la lÃ­nea decorativa bajo los tÃ­tulos y elimina dobles lÃ­neas */
.about-title,
.howto-title,
.faq-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
}

.about-title::after,
.howto-title::after,
.faq-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
    opacity: 0.85;
    position: static;
}

.howto-title::before,
.howto-title:hover::before {
    display: none !important;
    content: none !important;
}

/* Elimina cualquier otro border-bottom, box-shadow o lÃ­nea decorativa heredada */
.about-title,
.howto-title,
.faq-title {
    border-bottom: none !important;
    box-shadow: none !important;
    background: none !important;
}

/* === ICONOS PARA LOS TÃTULOS DE SECCIONES PRINCIPALES === */

/* SOBRE NOSOTROS: icono de casa */
.about-title::before {
    content: "\1F3E0"; /* ðŸ&nbsp; */
    display: inline-block;
    font-size: 2.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #fff;
    filter: grayscale(1) brightness(1.2);
}

/* CÃ“MO FUNCIONA: icono de engranaje */
.howto-title::before {
    content: "\2699"; /* âš™ï¸ */
    display: inline-block;
    font-size: 2.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #fff;
    filter: grayscale(1) brightness(1.2);
}

/* PREGUNTAS FRECUENTES: icono de interrogaciÃ³n */
.faq-title::before {
    content: "\2753"; /* â“ */
    display: inline-block;
    font-size: 2.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #fff;
    filter: grayscale(1) brightness(1.2);
}

/* Estilo 1: Gradiente con sombra */
/* Estilo 5: Minimalista con subrayado animado */
.h2-minimal {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 300;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.h2-minimal::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    animation: underlineExpand 3s ease-in-out infinite;
}

/* Unifica altura y anchura de las cajas principales: Â¿CÃ³mo funciona?, Sobre Nosotros y Preguntas Frecuentes */
/* filepath: c:\Users\ruben\Desktop\webpracticas\src\index.css */

/* Elimina reglas de min-height, height, max-width y padding diferentes en cada secciÃ³n principal */
.about-section,
.howto-section{
    max-width: 950px;
    min-width: 450px;
    width: 950px ;
    min-height: 300px ;
    height: 300px ;
    margin: 2.5rem auto !important;
    padding: 2.7rem 1.5rem 2.7rem 1.5rem !important;
    border-radius: 2.5rem !important;
    box-sizing: border-box !important;
}


.howto-section{
min-width: 100% !important;
min-height: 400px !important;
}
/* Elimina reglas individuales de height, min-height, max-width, padding, border-radius en .about-section, .howto-section, .faq-section mÃ¡s abajo en el archivo si existen */

/* Opcional: para responsividad */
@media (max-width: 1000px) {
    .about-section,
    .howto-section,
    .faq-section {
        max-width: 98vw !important;
        min-width: 0 !important;
        width: 98vw !important;
        min-height: 400px !important;
        height: auto !important;
        padding: 1.2rem 0.5rem !important;
    }

}

/* Efecto de borde blanco y glow igual de nÃ­tido que "Â¿CÃ³mo funciona?" en Sobre Nosotros y Preguntas Frecuentes */
/* filepath: c:\Users\ruben\Desktop\webpracticas\src\index.css */
.about-section:hover,
.faq-section:hover,
.howto-section:hover {
    border: 2.5px solid #fff !important;
    box-shadow: 0 20px 64px 0 #fff8, 0 2px 16px #000c !important;
}

/* Haz las cajas de la secciÃ³n de bienvenida y la de FAQ igual de anchas que las demÃ¡s */
/* filepath: c:\Users\ruben\Desktop\webpracticas\src\index.css */
.hero-section,
.faq-section {
    
    width: 450px;
    box-sizing: border-box !important;
    margin: 2.5rem auto !important;
    border-radius: 2.5rem !important;
}

.faq-section{
    bottom: 40px !important;
    width: 900px !important;
    height: 800px !important;
    max-height: 500px !important;
}

.hero-section{
    min-height: 840px !important;
}

.about-section{
    height: 300px !important;
    max-height: 300px !important;
}

/* Reduce el espacio entre el tÃ­tulo "Sobre Nosotros" y la definiciÃ³n */
/* filepath: c:\Users\ruben\Desktop\webpracticas\src\index.css */
.about-title {
    margin-bottom: 0.5rem !important;
}
.about-content {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

/* --- SUPER RESPONSIVE MOBILE FIX --- */
@media (max-width: 700px) {
  /* Apila todo en una columna */
  .main-masonry,
  .footer-content {
    flex-direction: column !important;
    display: flex !important;
    gap: 1.2rem !important;
    align-items: stretch !important;
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 !important;
  }
  .masonry-section,
  .about-section,
  .howto-section,
  .faq-section,
  .hero-section {
    max-width: 100vw !important;
    min-width: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    margin: 1rem 0 0 0 !important;
    padding: 1rem 0.5rem !important;
    border-radius: 1.2rem !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
  }
  /* FAQ, highlights, steps en columna */
  .faq-list,
  .about-highlights,
  .howto-steps {
    flex-direction: column !important;
    gap: 1rem !important;
    max-width: 100vw !important;
    width: 100vw !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
  }
  .faq-item,
  .about-highlight,
  .howto-step {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin-bottom: 1rem !important;
    padding: 0.7rem 0.5rem !important;
    box-sizing: border-box !important;
  }
  .faq-title,
  .about-title,
  .howto-title {
    font-size: 1.3rem !important;
    padding: 0.5rem 0.2rem !important;
    word-break: break-word !important;
    text-align: center !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: normal !important;
  }
  .faq-question {
    font-size: 1rem !important;
    padding: 0.8rem 0.5rem !important;
    word-break: break-word !important;
  }
  .faq-answer {
    font-size: 0.98rem !important;
    padding: 0 0.5rem !important;
  }
  .about-content {
    font-size: 1rem !important;
    padding: 0 !important;
    word-break: break-word !important;
  }
  .howto-step-title {
    font-size: 1rem !important;
  }
  .howto-step-desc {
    font-size: 0.95rem !important;
  }
  /* Elimina anchos y altos fijos heredados */
  .about-section,
  .howto-section,
  .faq-section,
  .hero-section {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Evita desbordes horizontales */
  html, body {
    overflow-x: hidden !important;
  }
  /* HERO: TÃ­tulo en una sola lÃ­nea y tamaÃ±o ajustado */
  .header-content h1,
  .hero-title,
  .hero-title.destacado {
    font-size: 2rem !important;
    text-align: center !important;
    width: 100vw !important;
    margin: 0 auto 1rem auto !important;
    letter-spacing: 1px !important;
  }
  .header-content {
    flex-direction: column !important;
    align-items: center !important;
    min-height: 90px !important;
    padding: 0 0.5rem !important;
    width: 100vw !important;
  }
  .logo-hero-img {
    width: 120px !important;
    height: 120px !important;
  }
}
@media (max-width: 700px) {
  .howto-section {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin: 1rem 0 0 0 !important;
    padding: 1rem 0.5rem !important;
    border-radius: 1.2rem !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    overflow: visible !important;
    border: 2px solid #fff2 !important;
    box-shadow: 0 4px 16px #0008 !important;
  }
  .howto-steps {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2rem !important;
  }
  .howto-step {
    width: 94vw !important;
    max-width: 500px !important;
    min-width: 0 !important;
    margin: 0.5rem auto !important;
    padding: 1rem 0.5rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(24,24,24,0.93) !important;
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 8px #0004 !important;
    overflow-x: hidden !important;
  }
}

/* Logo circular */
.logo-hero-img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease;
}

/* AnimaciÃ³n de apariciÃ³n */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-hero {
    animation: fadeZoomIn 1s ease forwards;
}

/* Hover animado */
.logo-hero-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* SeparaciÃ³n entre secciones principales */
section {
    margin-bottom: 3rem;
}

.logo-hero-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@media (min-width: 768px) {
    .logo-hero-img {
        width: 250px;
        height: 250px;
    }
}

.logo-hero-img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* === AJUSTES ESPECÃFICOS PARA FAQ EN MÃ“VIL === */
@media (max-width: 700px) {
  .faq-section {
    position: static !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 1rem 0.5rem !important;
    margin: 1rem auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .faq-list {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
  }

  .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.5rem 0 !important;
    padding: 0.5rem !important;
    box-sizing: border-box !important;
  }

  .faq-question {
    font-size: 1rem !important;
    padding: 0.8rem 0.5rem !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .faq-answer {
    font-size: 0.9rem !important;
    padding: 0 0.5rem 0.5rem 0.5rem !important;
  }
}

/* Ajustes adicionales para pantallas muy pequeÃ±as */
@media (max-width: 480px) {
  .faq-question {
    font-size: 0.95rem !important;
    padding: 0.7rem 0.5rem !important;
  }
  
  .faq-answer {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 700px) {
  .footer-heading {
    position: relative !important;
    display: inline-block !important;
    padding-left: 0.5rem !important;
    margin-left: 0 !important;
  }
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.7;
    margin: 0 auto;
    display: block;
  }
}

/* Corrige el color de los enlaces del footer en mÃ³vil para que no se vean morados */
@media (max-width: 900px) and (orientation: landscape) {
  .footer-bottom a {
    color: #fff !important;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-bottom a:hover {
    color: #ffb347 !important;
  }
}
@media (max-width: 700px) {
  .nav-menu {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    background: #181818;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0.8rem 0 0.7rem 0 !important;
    border-top: 1px solid #232323;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.13);
    z-index: 1000;
    height: auto !important;
  }
  .nav-menu a {
    font-size: 1rem !important;
    padding: 0.9rem 1.5rem !important;
    margin: 0 0.1rem !important;
    border-radius: 16px !important;
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
  }
  .nav-menu a:active,
  .nav-menu a:hover {
    background: rgba(255,255,255,0.16) !important;
    border-color: #fff !important;
    color: #fff !important;
    transition: background 0.15s, color 0.15s;
  }
  body {
    padding-bottom: 70px !important;
  }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 50px;
    background: #111;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow-y: auto;
    max-height: 80vh;
}

.review-item {
    border: 1px solid #333;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    background: #222;
}

.review-item h4 {
    margin: 0 0 10px 0;
}

.review-item p {
    margin: 0;
}

.rating {
    color: #ff9900;
}

.google-review-section {
    background: #181818;
    padding: 2.5rem 1rem 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
    margin: 0 auto 0 auto;
}

.google-review-content {
    background: #181818;
    border-radius: 1.5rem;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.google-review-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 0.05em;
    position: relative;
}

.google-review-title i {
    color: #fff;
    text-shadow: 0 2px 8px #fff8;
    animation: starGlow 1.5s infinite alternate;
    vertical-align: middle;
}

.google-review-desc {
    color: #eaeaea;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.google-review-btn {
    display: inline-block;
    background: #232323;
    color: #fff;
    font-weight: bold;
    font-size: 1.13rem;
    padding: 0.9rem 2.1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 18px #0008;
    text-decoration: none;
    border: 2px solid #fff;
    transition: 
        transform 0.18s, 
        box-shadow 0.18s, 
        background 0.18s, 
        color 0.18s, 
        border 0.18s;
    animation: btnGlowBW 2s infinite alternate;
    position: relative;
    letter-spacing: 0.03em;
    overflow: hidden;
}

.google-review-btn i {
    margin-right: 0.6em;
    font-size: 1.2em;
    vertical-align: middle;
    color: #fff;
    transition: color 0.2s;
}

.google-review-btn:hover, .google-review-btn:focus {
    transform: scale(1.07) rotate(-2deg);
    background: #fff;
    color: #232323;
    border: 2px solid #232323;
    box-shadow: 0 6px 24px #fff8;
    text-decoration: none;
}

.google-review-btn:hover i,
.google-review-btn:focus i {
    color: #232323;
    transition: color 0.2s;
}

@keyframes btnGlowBW {
    0% { box-shadow: 0 0 16px #fff2; }
    100% { box-shadow: 0 0 32px #23232322; }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8);}
    80% { opacity: 1; transform: scale(1.05);}
    100% { opacity: 1; transform: scale(1);}
}

.google-review-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.7rem;
    /* Quita el bounceStars */
    /* animation: bounceStars 1.5s infinite alternate; */
    letter-spacing: 0.05em;
    position: relative;
}

.google-review-title i {
    color: #fff;
    text-shadow: 0 2px 8px #fff8;
    animation: starGlow 1.5s infinite alternate;
    /* Elimina starPulse para evitar el salto de lÃ­nea */
    vertical-align: middle;
}

@keyframes starGlow {
    0% { filter: drop-shadow(0 0 0px #fff); opacity: 0.85; }
    100% { filter: drop-shadow(0 0 8px #fff); opacity: 1; }
}

@keyframes starPulse {
    0% { transform: scale(1);}
    100% { transform: scale(1.18);}
}

/* Responsive */
@media (max-width: 600px) {
    .google-review-content {
        padding: 1.2rem 0.7rem;
        max-width: 98vw;
    }
    .google-review-title {
        font-size: 1.13rem;
    }
    .google-review-btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    .google-review-section {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }
}</pre></body></html>