/* Estilos para la sección del newsletter */
.newsletter_area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* .newsletter_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/all-img/pattern.png') repeat;
    opacity: 0.1;
} */

/* Estilos para el contenido del lado izquierdo */
.newsletter_content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter_content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.newsletter_content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.newsletter_description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter_benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter_benefits li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.newsletter_benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* Estilos para el formulario del newsletter */
.subs_form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.subs_form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.subs_form h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.subs_form p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Estilos para el iframe del formulario */
.subs_form iframe {
    width: 100% !important;
    min-height: 350px !important;
    border: none !important;
    background: transparent !important;
}

/* Estilos responsivos */
@media (max-width: 991px) {
    .newsletter_content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .newsletter_content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter_benefits li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .newsletter_content h2 {
        font-size: 2rem;
    }

    .subs_form {
        padding: 2rem;
    }

    .subs_form h3 {
        font-size: 1.75rem;
    }

    .subs_form p {
        font-size: 1rem;
    }

    .newsletter_benefits li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter_content h2 {
        font-size: 1.75rem;
    }

    .newsletter_description {
        font-size: 1rem;
    }

    .subs_form {
        padding: 1.5rem;
    }

    .subs_form h3 {
        font-size: 1.5rem;
    }

    .subs_form p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .subs_form iframe {
        min-height: 300px !important;
    }
}

/* Estilos para los campos del formulario dentro del iframe */
.amoforms_iframe input[type="text"],
.amoforms_iframe input[type="email"] {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #eee !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.amoforms_iframe input[type="text"]:focus,
.amoforms_iframe input[type="email"]:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(176, 34, 142, 0.1) !important;
}

.amoforms_iframe button[type="submit"] {
    background: var(--secondary-color) !important;
    color: white !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.amoforms_iframe button[type="submit"]:hover {
    background: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
} 