/* efectos.css - Estilos Globales Master Investment Academy */

:root {
    /* --- PALETA DE COLORES OFICIAL --- */
    --gold-primary: #bf9a42;
    --gold-hover: #eebd32;
    --gold-text: #b69243;
}

/* 1. Estilo para el Botón de Lujo */
.golden-gradient {
    background: linear-gradient(135deg, #d4af37, #b8941f, #f4d03f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    /* Sombra dorada suave */
}

/* 2. Selección de Texto de Lujo */
::selection {
    background: var(--gold-primary);
    color: white;
}

/* 3. Barra de Desplazamiento (Scrollbar) Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 5px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* 4. Clases de Utilidad */
.text-gold {
    color: var(--gold-primary) !important;
}

.text-gold-dark {
    color: var(--gold-text) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.border-gold {
    border-color: var(--gold-primary) !important;
}

/* 5. Estilo antiguo (por si acaso quedó algún botón viejo usándolo) */
.glow-button {
    display: inline-block;
    background-color: var(--gold-primary);
    color: white;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glow-button:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(191, 154, 66, 0.4);
}

/* efectos.css - Estilos Globales Master Investment Academy */

:root {
    /* --- PALETA DE COLORES OFICIAL --- */
    --gold-primary: #bf9a42;
    --gold-hover: #eebd32;
    --gold-text: #b69243;
}

/* 1. Estilo para el Botón de Lujo */
.golden-gradient {
    background: linear-gradient(135deg, #d4af37, #b8941f, #f4d03f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    /* Sombra dorada suave */
}

/* 2. Selección de Texto de Lujo */
::selection {
    background: var(--gold-primary);
    color: white;
}

/* 3. Barra de Desplazamiento (Scrollbar) Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 5px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* 4. Clases de Utilidad */
.text-gold {
    color: var(--gold-primary) !important;
}

.text-gold-dark {
    color: var(--gold-text) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.border-gold {
    border-color: var(--gold-primary) !important;
}

/* 5. Estilo antiguo (por si acaso quedó algún botón viejo usándolo) */
.glow-button {
    display: inline-block;
    background-color: var(--gold-primary);
    color: white;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glow-button:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(191, 154, 66, 0.4);
}

/* --- BLOQUEO TOTAL VISUAL DE GOOGLE TRANSLATE --- */

/* 1. Ocultar la barra usando selectores de atributos (más fuerte que las clases) */
iframe[class*="goog-te-banner"],
.goog-te-banner-frame,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 2. Forzar al HTML y BODY a ignorar el espacio extra */
html,
body {
    top: 0 !important;
    margin-top: 0 !important;
    position: static !important;
    height: auto !important;
    min-height: 100%;
}

/* 3. Ocultar cualquier elemento que Google inyecte antes del Nav */
body>.skiptranslate {
    display: none !important;
}

/* 4. Asegurar que tu NAV esté siempre encima y pegado arriba */
nav {
    top: 0 !important;
}

/* ========================================
   MODAL DE EVENTO - ESTILOS
   ======================================== */

/* Overlay del modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Contenedor del modal */
.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

/* Botón de cerrar */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    font-size: 18px;
}

.modal-close:hover {
    background: var(--gold-primary);
    color: white;
    transform: rotate(90deg);
}

/* Contenido del modal */
.modal-content {
    padding: 50px 40px 40px;
    text-align: center;
}

/* Icono principal */
.modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37, #b8941f, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(191, 154, 66, 0.3);
    animation: pulse-gold 2s ease-in-out infinite;
}

.modal-icon i {
    font-size: 45px;
    color: white;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(191, 154, 66, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(191, 154, 66, 0.6);
    }
}

/* Título del modal */
.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Descripción */
.modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Lista de características */
.modal-features {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 18px;
}

/* Botón principal CTA */
.modal-cta {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(191, 154, 66, 0.5);
}

/* Botón secundario */
.modal-secondary {
    background: transparent;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.modal-secondary:hover {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 640px) {
    .modal-content {
        padding: 40px 25px 30px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
    }

    .modal-icon i {
        font-size: 35px;
    }
}