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

body {
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Evita scroll */
    height: 100vh;
    background-color: #0a0a0a;
}

/* Contenedor Hero con la imagen de fondo */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/5R8A6080.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* El zoom lo haremos con JS para más control */
}

/* Overlay elegante: oscuro pero con un toque cálido */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(20, 20, 20, 0.4) 100%);
    z-index: 1;
}

/* Contenido centrado */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Línea decorativa dorada */
.line-container {
    width: 80px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.line {
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-100%);
    animation: slideLine 1.8s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

/* Título principal */
.title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(3rem, 12vw, 6.5rem);
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.9s;
}

/* Efecto de destello (Glint) sobre el título */
.glint {
    position: relative;
    overflow: hidden;
}

.glint::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 40%, 
        rgba(255, 215, 0, 0.15) 50%, 
        rgba(255, 255, 255, 0.05) 60%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg) translateX(-100%);
    animation: glint 6s infinite ease-in-out;
    animation-delay: 2.5s;
    pointer-events: none;
}

@keyframes glint {
    0% { transform: rotate(25deg) translateX(-150%); }
    20% { transform: rotate(25deg) translateX(150%); }
    100% { transform: rotate(25deg) translateX(150%); }
}

/* Subtítulo */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: -0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.4s;
}

/* Status "Em breve" */
.status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 2s;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #d4af37;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Contacto sutil */
.contact-info {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 2.4s;
}

.icon {
    color: #d4af37;
    font-size: 0.5rem;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 3s;
}

/* Animación principal Fade Up */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}