/* Estilos específicos para Contacto Inversor */

/* Neo Sans W1G - Configuración de fuentes locales */
@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/neo-sans-w1g-medium_freefontdownload_org/neo-sans-w1g-medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/neo-sans-w1g-medium_freefontdownload_org/neo-sans-w1g-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/neo-sans-w1g-medium_freefontdownload_org/neo-sans-w1g-medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/neo-sans-w1g-bold-italic_freefontdownload_org/neo-sans-w1g-bold-italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/neo-sans-w1g-light-italic_freefontdownload_org/neo-sans-w1g-light-italic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Estilos de Layout para DESKTOP SOLAMENTE */
@media (min-width: 1024px) {

    /* Sobrescribir contenedor para hacer más ancho */
    .inversores-main .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Sobrescribir cualquier contenedor global */
    body .container {
        max-width: none !important;
        width: 100% !important;
    }

    /* Específico para esta página */
    .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
    }

    /* Título de la página */
    .page-title {
        text-align: center;
        margin-bottom: 50px;
        padding: 20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-title h1 {
        color: #1a1a1a;
        font-family: 'Neo Sans W1G', 'Neo Sans', sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title p {
        color: #666;
        font-family: 'Work Sans', sans-serif;
        font-size: 18px;
        font-weight: 400;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Grid de Contacto */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 0 auto 80px auto;
        align-items: start;
        min-height: var(--scaled-vh, 100vh);
        width: 1824px;
        /* Traducido de 95vw para 1920 */
        max-width: none;
        padding: 0 30px;
        box-sizing: border-box;
    }

    /* Columna Izquierda: Formulario */
    .contact-form {
        background: transparent;
        border-radius: 12px;
        overflow: hidden;
        height: fit-content;
        width: 100%;
        max-width: none;
    }

    .contact-form iframe {
        display: block;
        width: 100% !important;
        height: 1400px !important;
        border: none !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    /* Columna Derecha: Información */
    .contact-info {
        background: #fff;
        padding: 50px;
        border-radius: 8px;
        color: #333;
        height: fit-content;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
        width: 100%;
        max-width: none;
    }

    .contact-info h2 {
        color: #1a1a1a;
        font-family: 'Neo Sans W1G', 'Neo Sans', sans-serif;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .info-item {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .info-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .info-item h3 {
        color: #f9751c;
        font-family: 'Neo Sans W1G', 'Neo Sans', sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .info-item p {
        color: #555;
        font-family: 'Work Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 5px;
    }

    .info-item strong {
        color: #f9751c;
        font-family: 'Work Sans', sans-serif;
        font-weight: 600;
    }
}

/* Arreglar footer para que sea igual al index */
.footer-logo-large span {
    font-family: 'Neo Sans', 'Arial', sans-serif !important;
    font-weight: 500 !important;
    font-size: 34px !important;
    color: #f7f6f2 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    margin-left: -35px !important;
}

.desktop-scaled .footer-logo-large span {
    font-size: 54px !important;
}


/* Tablet Specific (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 90% !important;
        max-width: none !important;
        margin: 0 auto 60px auto !important;
        gap: 40px !important;
    }

    /* Reorder: Info first, Form second */
    .contact-info {
        order: 1 !important;
        width: 100% !important;
    }

    .contact-form {
        order: 2 !important;
        width: 100% !important;
    }

    /* Adjust iframe height for tablet if needed */
    .contact-form iframe {
        height: 1200px !important;
    }
}

/* Responsive rules moved to universal-responsive.css */
/* Botón de Mute para Video de Inversor */
.video-mute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-mute-btn:hover {
    background: rgba(249, 117, 28, 0.8);
    transform: scale(1.1);
}

.video-mute-btn i {
    font-size: 0.9rem;
}

