/*
Theme Name: MindFit
Theme URI: https://mindfitve.com
Author: MindFit Team
Description: Tema premium a medida optimizado con Bootstrap 5 para Landing Pages VSL.
Version: 1.0.0
Text Domain: mindfit
*/

/* --- IMPORTACIÓN DE TIPOGRAFÍAS --- */
@import url('https://googleapis.com');

/* --- DECLARACIÓN DE VARIABLES (Paleta de Colores Solicitada) --- */
:root {
    --mf-primary-dark: #304258;  /* Color 1 */
    --mf-accent: #FCC573;        /* Color 2 (Botones, Destacados) */
    --mf-primary-blue: #7297CB;  /* Color 3 */
    --mf-bg-light: #ECEDE8;      /* Color 4 (Fondos claros) */
}

/* --- ESTILOS GENERALES --- */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Montserrat Regular */
    background-color: #ffffff;
    color: var(--mf-primary-dark);
}

.font-regular {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.font-semibold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Montserrat Semibold */
}

/* --- CLASES DE UTILIDAD PERSONALIZADAS --- */
.bg-light-custom {
    background-color: var(--mf-bg-light) !important;
}

.text-primary-dark {
    color: var(--mf-primary-dark) !important;
}

.text-primary-blue {
    color: var(--mf-primary-blue) !important;
}

.text-accent {
    color: var(--mf-accent) !important;
}

.bg-accent {
    background-color: var(--mf-accent) !important;
}

.bg-blue-light {
    background-color: rgba(114, 151, 203, 0.15) !important;
}

/* Sombras de Texto para Legibilidad en Hero */
.text-shadow-large {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.text-shadow-small {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* --- BOTÓN DE ACCIÓN PERSONALIZADO (Color #FCC573) --- */
.btn-mindfit-action {
    background-color: var(--mf-accent) !important;
    color: var(--mf-primary-dark) !important;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(252, 197, 115, 0.4);
    transition: all 0.3s ease;
}

.btn-mindfit-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 197, 115, 0.6);
    background-color: #eab462 !important; /* Un tono sutil más oscuro para el hover */
}

/* --- COMPONENTES COMPLEMENTARIOS --- */
.custom-max-width {
    max-width: 800px;
}

.border-bottom-custom {
    border-bottom: 1px solid rgba(48, 66, 88, 0.2) !important;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--mf-accent);
    border-radius: 2px;
}

/* Animación de pulso para el texto del video */
@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; }
}
.animation-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Ajustes del Acordeón interactivo */
.custom-mindfit-accordion .accordion-button:not(.collapsed) {
    background-color: var(--mf-bg-light) !important;
    color: var(--mf-primary-dark) !important;
    box-shadow: none;
}
.custom-mindfit-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--mf-primary-blue);
}

/* --- ELEMENTOS DE DISEÑO EXCLUSIVOS DEL VSL (PDF Requisitos) --- */
/* Contenedor del reproductor */
.vsl-player-wrapper {
    max-width: 800px;
    background-color: #000;
    aspect-ratio: 16/9;
}

/* Capa de Play inicial */
.vsl-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    background-color: var(--mf-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(252, 197, 115, 0.8);
    transition: transform 0.2s ease;
}

.vsl-player-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
}

/* Barra de progreso falsa */
.fake-progress-container {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 11;
    cursor: pointer;
}

.fake-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--mf-accent);
    transition: width 0.1s linear;
}

/* Estilos de los números del Contador */
.timer-num {
    background-color: var(--mf-primary-dark);
    color: #ffffff;
    font-size: 2.5rem;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    min-width: 70px;
}

.timer-label {
    display: block;
    font-size: 0.85rem;
    color: var(--mf-primary-dark);
    text-uppercase: uppercase;
    margin-top: 5px;
}

.timer-divider {
    font-size: 2.5rem;
    line-height: 1;
    padding-bottom: 25px;
}

/* Video de fondo con efecto desenfoque */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: blur(4px); /* Suave desenfoque estético estilo Bluehackers */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 66, 88, 0.85), rgba(114, 151, 203, 0.75));
    z-index: 2;
}

.navbar-brand img,
.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
