/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #1a1a1a;
    min-height: 100vh;
}

/* ===== NAVEGACIÓN STICKY ===== */
.menu-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 428px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-container a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 11px;
    color: #F5F5F5;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-container a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #C9A961;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.menu-container {
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
    background: #000000;
}

/* ===== SECCIÓN LOGO ===== */
.logo-section {
    background: #000000;
    height: 342px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-main {
    width: 330px;
    height: 330px;
    object-fit: contain;
}

/* ===== VOID SPACE ===== */
.void-space {
    height: 15px;
    background: #2b2b2b;
}

/* ===== SECCIÓN AVISO PICANTE ===== */
.aviso-section {
    background: #000000;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.aviso-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 14.5px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.3;
}

.aviso-spacer {
    height: 9px;
}

.chili-icon {
    width: 24px;
    height: auto;
}

/* ===== SECCIONES DE FRAMES ===== */
.frame-section {
    width: 100%;
}

.frame-section img {
    width: 100%;
    height: auto;
    display: block;
    /* Evita layout shift reservando espacio antes de cargar */
    content-visibility: auto;
    contain-intrinsic-size: 428px 600px;
}

/* ===== SECCIÓN POEMA Y CIERRE ===== */
.poem-section {
    background: #000000;
    padding: 40px 25px 50px;
    text-align: center;
}

.poem-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 15.5px;
    color: #F5F5F5;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
}

.poem-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-footer {
    width: 103px;
    height: 103px;
    object-fit: contain;
}

.tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 14px;
    color: #F5F5F5;
    letter-spacing: 1px;
}

/* ===== 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: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 12px;
    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;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 380px) {
    .nav-container a {
        font-size: 10px;
        padding: 5px 6px;
    }
    
    .logo-main {
        width: 280px;
        height: 280px;
    }
    
    .logo-section {
        height: 300px;
    }
}