/* ====================================
   1. ESTILOS BASE
   ==================================== */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

/* ====================================
   2. CONTENEDOR PRINCIPAL
   ==================================== */
.fullpage-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* ====================================
   3. VIDEO BACKGROUND
   ==================================== */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(101, 62, 24, 0.9);
    mix-blend-mode: multiply;
}

/* ====================================
   4. CONTENIDO PRINCIPAL
   ==================================== */
.section-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;           /* Añadido */
    flex-direction: column;  /* Añadido */
    align-items: center;     /* Añadido */
    justify-content: center; /* Añadido */
    width: 100%;
    z-index: 2;
}

h1 {
    font-size: clamp(4rem, 8vw, 6rem); /* Responsive */
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: white;
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em; /* Ajuste tipográfico */
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.1rem); /* Responsive */
    color: white;
    font-weight: 300;
    margin: 1rem 0 2rem 0;
    padding: 0;
    opacity: 0.9;           /* Sutilmente más suave que el título */
}
.subtitle2 {
    font-size: clamp(1.5rem, 4vw, 1.2rem); /* Responsive */
    color: #bfb639;
    font-weight: 300;
    margin: 1rem 0 2rem 0;
    padding: 0;
    opacity: 0.9;           /* Sutilmente más suave que el título */
}

.main-logo {
    margin-top: 2rem;
}

.main-logo img {
    width: 70px;
    height: auto;
    opacity: 0.9;
    border: 2px solid #bfb639;  /* Grosor de 2px, color blanco */
    border-radius: 50%;       /* Si quieres que el borde sea circular */
    padding: 6px;           /* Espacio entre la imagen y el borde */
}

/* ====================================
   5. FLECHA DE NAVEGACIÓN
   ==================================== */
.scroll-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-button i {
    color: white;
    font-size: 24px;
}

.scroll-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ====================================
   6. ANIMACIONES
   ==================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.down-arrow {
    animation: bounce 2s infinite;
}