/* Variables de color sobreescritas (si aplica) */
/* 
:root {
    --primary-color: #nuevoColor;
} 
*/

/* Modificadores estéticos de la imagen placeholder */
.img-placeholder {
    background-color: #eee;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ========================
   BANNER SECTION
   ======================== */
.banner-section {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.banner-form-col {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
}

.banner-img-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

/* Estilos del Formulario */
.subscription-form {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 30px 20px;
    color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.subscription-form h2 {
    text-align: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    display: block;
    width: 80%;
    margin: 20px auto 0 auto;
    padding: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-soon {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 900;
}

/* ========================
   SECCIÓN 1 (Fondo con toda info)
   ======================== */
.section-1 {
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.section-1 .content-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    max-width: 800px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-1 h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* ========================
   SECCIÓN 2 (Degradado y 2 Columnas)
   ======================== */
.section-2 {
    background: linear-gradient(to bottom, var(--secondary-color) 0%, var(--white) 80%);
    padding: 100px 0;
}

.col-half h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.col-half p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* ========================
   SECCIÓN 3 (Fondo Azul)
   ======================== */
.section-3 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
}

.section-3 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.section-3 .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 18px;
}

.grid-images {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.img-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: center;
}

.img-item p {
    margin-top: 20px;
    font-size: 16px;
}

.section-3 .outro-text {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0 auto;
    font-size: 18px;
}

/* ========================
   SECCIÓN 4 (Redes Sociales)
   ======================== */
.section-4 {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.section-4 .main-image {
    max-width: 250px;
    margin: 0 auto 50px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column-reverse;
    }

    .col-2-grid,
    .col-2-grid.reverse {
        flex-direction: column;
        text-align: center;
    }

    .grid-images {
        flex-direction: column;
        align-items: center;
    }

    .banner-section {
        padding: 40px 0;
    }
}