button {
    outline: none !important;
}

.suscripcion-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;

    background-color: #FFF;
}

.form-suscripcion {
    display: flex;
    max-width: 1014px;
    align-items: center;
    gap: 8px;
}

.form-desc {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.campana-suscripcion {
    width: 37.322px;
    height: 37.322px;
    flex-shrink: 0;
    aspect-ratio: 37.32/37.32;
}

.form-container-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.form-text {
    flex-shrink: 0;
    color: var(--Brand-Colors-Blue-00, #1B365D);

    /* Titles/Title H6/Regular */
    font-family: "Encode Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

.form-text strong {
    color: var(--Brand-Colors-Turquoise-00, #00AEC7);
    font-weight: 700;
}

.form-body {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.form-input {
    display: flex;
    min-width: 369px;
    height: 42px;
    padding: 9px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

    border-radius: 8px;
    border: 1px solid var(--Complementary-Colors-Black-60, #C1C1C1);
    background: var(--White--Background-White, #FFF);
}

.form-input::placeholder {
    flex: 1 0 0;
    color: var(--Complementary-Colors-Black-60, #C1C1C1);

    /* Paragraphs/Normal/Body-Regular */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.btn-suscripcion {
    border: none;
    display: flex;
    height: 42.422px;
    padding: 11.11px 20.201px;
    justify-content: center;
    align-items: center;
    gap: 8.08px;

    border-radius: 30.301px;
    background: var(--Brand-Colors-Blue-00, #1B365D);

    transition: background-color 300ms ease-out, transform 300ms ease-out;
}

.btn-suscripcion:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-suscripcion:hover {
    background: var(--Brand-Colors-Turquoise-00, #00AEC7);
}

.btn-suscripcion-text {
    color: var(--White--Background-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 18.181px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.161px; /* 88.889% */
}

.btn-suscripcion-icon {
    color: var(--White--Background-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Font Awesome 6 Pro";
    font-size: 16.161px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.161px; /* 100% */
}

.message {
    margin-top: 10px;       /* espacio justo debajo del form */
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    max-width: 1014px;
}

.message.error {
    color: #d32f2f;
}

.message.success {
    color: #2e7d32;
}

@media (max-width: 768px) {
    .suscripcion-section {
        padding-bottom: 20px;
    }

    .form-suscripcion {
        max-width: 345px;
        flex-direction: column;
        justify-content: center;
        gap: 5.318px;
    }

    .form-desc {
        height: 26px;
        gap: 5.318px;
    }

    .campana-suscripcion {
        width: 24.811px;
        height: 24.811px;
        flex-shrink: 0;
        aspect-ratio: 24.81/24.81;
    }

    .form-container-text {
        gap: 5.318px;
    }

    .form-text {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .form-body {
        gap: 7.977px;
    }

    .form-input {
        min-width: 232px;
        height: 27.92px;
        padding: 5.983px 10.636px;
        border-radius: 5.318px;
        border: 0.665px solid var(--Complementary-Colors-Black-60, #C1C1C1);
    }

    .form-input::placeholder {
        font-size: 10.636px;
        line-height: 13.295px;
    }

    .btn-suscripcion {
        width: 105px;
        height: 28px;
        padding: 7.312px 13.295px;
        gap: 5.318px;
        border-radius: 19.943px;
    }

    .btn-suscripcion-text {
        font-size: 11.966px;
        line-height: 10.636px; 
    }

    .btn-suscripcion-icon {
        font-size: 10.636px;
        line-height: 10.636px; /* 100% */
    }


}