/* Main split-screen container */
.main-container {
    display: flex;
    flex-direction: column;
    /* Mobile first stack layout */
    min-height: 100vh;
    width: 100%;
}

/* Image column styles (Top on mobile, Left on desktop) */
.image-column {
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content column styles (Bottom on mobile, Right on desktop) */
.content-column {
    width: 100%;
    padding: 24px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Restricts content width to match original SendFox layout */
.content-wrapper {
    max-width: 540px;
    width: 100%;
}

.page-header {
    color: #f47373;
    font-size: 24px;
    font-weight: 350;
    margin-bottom: 2rem;
    letter-spacing: 0.001em;
}

/* ==========================================================================
   SENDFOX EMBEDDED FORM CUSTOM STYLES
   ========================================================================== */

.form-container {
    max-width: 350px;
    width: 100%;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.sendfox-form p {
    margin-bottom: 1.2rem;
}

/* Hide native form labels for a cleaner minimal look */
.sendfox-form label[for="sendfox_form_email"] {
    display: none;
}

/* Email input field customization */
.sendfox-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4.8px;
    background-color: #ffffff;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
}

.sendfox-form input[type="email"]:focus {
    border-color: #f27474;
    /* Highlights with brand coral color on focus */
}

/* GDPR / Privacy Checkbox alignment */
.sendfox-form label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
}

.sendfox-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f27474;
    cursor: pointer;
}

/* Call To Action button matching SendFox branding */
.sendfox-form button[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    font-size: 1.3125rem;
    font-weight: 400;
    color: #ffffff;
    background-color: #f27474;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    text-align: center;
}

.sendfox-form button[type="submit"]:hover {
    background-color: #e06363;
}

.sendfox-form button[type="submit"]:active {
    transform: scale(0.99);
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR DESKTOP SCREENS
   ========================================================================== */
@media (min-width: 992px) {
    .main-container {
        flex-direction: row;
        /* Triggers 50/50 split view */
    }

    .image-column {
        width: 46%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    .content-column {
        width: 60%;
        margin-left: 50%;
        /* Keeps content aligned properly beside fixed image */
        padding: 80px 60px;
        min-height: 100vh;
    }
}


/* ==========================================================================
   1. ESTILOS BASE DEL BOTÓN (Se aplican SIEMPRE: en móvil, PC y vertical)
   ========================================================================== */
.btn-send {
    font-family: 'Figtree', sans-serif !important;
    display: block;
    width: 100%;
    /* Por defecto ocupa todo el ancho, ideal para móvil y diseño vertical */
    box-sizing: border-box;
    padding: 14px 24px;
    font-size: 1.3125rem;
    font-weight: 400;
    color: #ffffff !important;
    background-color: #f47373 !important;
    /* El coral de SendFox */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-send:hover {
    background-color: #e05656 !important;
}