/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Container principal */
.page-wrapper {
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
    background-color: #000000;
}

/* ============================================
   NAVBAR - 80px altura
============================================ */
.navbar {
    width: 100%;
    height: 80px;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo {
    width: 44px;
    height: 44px;
}

.menu-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-btn img {
    width: 24px;
    height: auto;
}

/* Menu Drawer */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #000000;
    z-index: 200;
    transition: right 0.3s ease;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
}

.menu-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #C8A95A;
}

/* ============================================
   HERO - 650px altura
============================================ */
.hero {
    width: 100%;
    height: 650px;
    background-image: url('assets/Imagen de fondo del hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    width: 90%;
    max-width: 353px;
    height: 610px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #FFFFFF;
    text-align: center;
    padding: 0 20px;
}

.hero-btn {
    margin-top: 90px;
    width: 170px;
    height: 53px;
    background-color: #C8A95A;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background-color: #b89845;
    transform: scale(1.02);
}

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

/* ============================================
   GALERÍA - altura flexible
============================================ */
.gallery {
    width: 100%;
    background-color: #D2C6B6;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-img-1 {
    width: 90%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 350 / 220;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 16px;
}

.gallery-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    width: 90%;
    max-width: 350px;
    justify-content: center;
}

.gallery-img-2,
.gallery-img-3 {
    width: calc(50% - 8px);
    max-width: 167px;
    height: auto;
    aspect-ratio: 167 / 140;
    border-radius: 16px;
    object-fit: cover;
}

.gallery-img-4 {
    width: 90%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 350 / 160;
    border-radius: 20px;
    object-fit: cover;
}

/* ============================================
   BENEFICIOS - altura flexible
============================================ */
.benefits {
    width: 100%;
    background-color: #D2C6B6;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon-1 {
    width: 61px;
    height: 61px;
    margin-bottom: 15px;
}

.benefit-icon-2 {
    width: 77px;
    height: 77px;
    margin-bottom: 15px;
}

.benefit-icon-3 {
    width: 48px;
    height: 71px;
    margin-bottom: 15px;
}

.benefit-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0.09em;
}

.benefit:nth-child(1) .benefit-text {
    margin-bottom: 40px;
}

.benefit:nth-child(2) .benefit-text {
    margin-bottom: 42px;
}

/* ============================================
   UBICACIÓN - altura flexible
============================================ */
.location {
    width: 100%;
    background-color: #2B2B2B;
    padding-top: 64px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.location-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

.location-hours {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 24px;
}

.map-container {
    width: 90%;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
}

/* ============================================
   ESPACIOS VACÍOS - 50px
============================================ */
.spacer {
    width: 100%;
    height: 50px;
    background-color: #D2C6B6;
}

/* ============================================
   FRASE Y LOGO - altura flexible
============================================ */
.phrase-section {
    width: 100%;
    background-color: #000000;
    padding-top: 78px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phrase-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 34px;
}

.phrase-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
    padding: 0 20px;
}

.phrase-subtext {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    padding: 0 20px;
}

/* ============================================
   FOOTER - altura flexible
============================================ */
.footer {
    width: 100%;
    background-color: #000000;
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C8A95A;
}

.footer-link-privacy {
    margin-bottom: 24px;
}

.footer-social-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link-tiktok {
    margin-bottom: 40px;
}

.social-icon {
    width: 16px;
    height: 16px;
}

.social-link span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.copyright-icon {
    width: 13px;
    height: 13px;
}

.copyright-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #FFFFFF;
}

.mira-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mira-link:hover {
    opacity: 0.8;
}

.mira-icon {
    width: 13px;
    height: 13px;
}

.mira-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
}

/* ============================================
   BOTÓN WHATSAPP FLOTANTE
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.whatsapp-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: #000000;
    background-color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 15px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 42px;
    height: 42px;
}
