/* --- Estructura Principal --- */
.fcl-hero-container {
    display: flex;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    background-color: #1C1C1C; /* Color de fondo por si el video no carga */
}

.fcl-hero-video-col,
.fcl-hero-content-col {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Columna de Video --- */
.fcl-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra todo el espacio sin deformarse */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* --- Columna de Contenido --- */
.fcl-hero-content-col {
    background-color: #6A1B2B; /* Borgoña oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
}

.fcl-content-wrapper {
    text-align: center;
    color: #F6F2EF; /* Beige claro */
}

.fcl-slogan {
    font-size: 1.2rem;
    font-family: sans-serif; /* Cambia a tu fuente deseada */
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #D8A95A; /* Dorado */
}

.fcl-title {
    font-size: 4rem;
    font-family: serif; /* Cambia a tu fuente de títulos (ej. Playfair Display) */
    line-height: 1.1;
    margin: 0;
    font-weight: bold;
}

.fcl-subtitle {
    font-size: 1.5rem;
    font-family: sans-serif;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

/* --- Botones y Enlaces --- */
.fcl-button {
    display: inline-block;
    background-color: #D8A95A; /* Dorado */
    color: #1C1C1C; /* Negro */
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fcl-button:hover {
    background-color: #EFE7E0; /* Beige más claro para hover */
    transform: translateY(-3px);
}

.fcl-instagram-link {
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    color: #F6F2EF; /* Beige */
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.fcl-instagram-link:hover {
    opacity: 1;
}

.fcl-instagram-link svg {
    margin-right: 8px;
}

/* --- Estilos para Móviles (Responsive) --- */
@media (max-width: 980px) { /* Breakpoint común de Divi para tablets */
    .fcl-hero-container {
        flex-direction: column-reverse; /* Pone el contenido arriba y el video abajo */
        height: auto; /* La altura se ajusta al contenido */
    }

    .fcl-hero-video-col,
    .fcl-hero-content-col {
        width: 100%;
    }

    .fcl-hero-video-col {
        height: 50vh; /* Le da una altura fija al video en móvil */
    }
    
    .fcl-hero-content-col {
        padding: 60px 20px;
        min-height: 60vh;
    }

    .fcl-title {
        font-size: 3rem; /* Tamaño de fuente más pequeño para móviles */
    }
}