/* 1. EL CONTENEDOR (Ahora en columna) */
.contenedor-titulo-mixto {
    display: flex;
    flex-direction: column; /* Pone uno DEBAJO del otro */
    justify-content: center;
    width: 100%;
}
@font-face {
    font-family: 'Blacksword';
    src: url('../fonts/blacksword.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* 2. PARTE SUPERIOR (Roboto) - Izquierda */
span.mi-roboto {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1em !important;
    color: #114d74 !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    
    /* MAGIA DE POSICIÓN */
    align-self: flex-start; /* Lo fuerza a la extrema IZQUIERDA */
    margin-bottom: 60px; /* AUMENTA ESTE NÚMERO para separar más las líneas */
    margin-left: 10%; /* Un pequeño margen para que no pegue con el borde de la pantalla */
}

/* 3. PARTE INFERIOR (Blacksword) - Indentada a la derecha */
span.mi-blacksword {
    font-family: 'Blacksword', cursive !important;
    font-size: 3em !important;
    color: #114d74 !important;
    font-weight: normal !important;
    text-transform: none !important;
    line-height: 0.8 !important;
    
    /* MAGIA DE POSICIÓN */
    align-self: flex-start; 
    margin-left: 30%; /* Esto empuja el texto hacia la DERECHA respecto al de arriba */
}


/* --- HERO FRIDU: AJUSTE MÓVIL FORZADO --- */
@media (max-width: 767px) {
    /* Apuntamos a la sección Y a las capas internas de SP Page Builder */
    .mayoreo-fridu,
    .mayoreo-fridu .sppb-section-bg,
    .mayoreo-fridu > div[style*="background-image"] {
        background-image: url('/files/2026/02/13/1350x1080.png') !important;
        background-attachment: scroll !important; 
        background-position: center center !important;
        background-size: cover !important;
    }

    /* Si SPPB está usando un overlay o capa extra, la hacemos transparente para que no estorbe */
    .mayoreo-fridu .sppb-section-bg-overlay {
        background-attachment: scroll !important;
    }
}

/* --- OVERLAY DE VERIFICACIÓN DE EDAD --- */
#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 9999999;
    display: none; /* Se activa vía JS */
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.age-verification-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legal-text {
    background-color: #f9f9f9;
    border-left: 4px solid #ed2a58;
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.checkbox-container { margin: 20px 0; display: flex; justify-content: center; }
.checkbox-container label { cursor: pointer; display: flex; align-items: center; font-family: Raleway, sans-serif; font-weight: 600; font-size: 14px; }
.checkbox-container input { display: none; }
.checkmark { height: 18px; width: 18px; background-color: #eee; margin-right: 10px; border-radius: 3px; position: relative; border: 1px solid #ccc; }
.checkbox-container input:checked ~ .checkmark { background-color: #4CAF50; border-color: #4CAF50; }
.checkbox-container input:checked ~ .checkmark:after { content: ""; position: absolute; left: 6px; top: 2px; width: 4px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); display: block;}

.buttons-container { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.confirm-btn { background-color: #114d74; color: white; border: none; padding: 12px 25px; border-radius: 4px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.confirm-btn:disabled { background-color: #ccc; cursor: not-allowed; }
.cancel-btn { background-color: #f44336; color: white; border: none; padding: 12px 25px; border-radius: 4px; font-weight: bold; cursor: pointer; }