/* Estilos críticos para el primer renderizado */
body {
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    background-color: #111111;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
}

/* Navbar crítica simplificada */
.navbar {
    background: rgba(255, 255, 255, 0);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: clamp(60px, 10vh, 80px);
}

.navbar-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.navbar-logo {
    grid-column: 2;
    background: transparent;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    letter-spacing: clamp(3px, 0.5vw, 6px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.navbar-logo-img {
    height: 65px;
    width: auto;
    max-width: 94px;
    object-fit: contain;
}

.navbar-right {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

/* Contenido crítico del hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}
