/** Reset básico para márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
}

body {
    font-family: Poppins, sans-serif;
    background-color: #2c74c8;
    font-size: 16px !important;
    color: #fff;
}

p {
    font-size: 0.95rem;
}

h3 {
    font-size: 1.4rem;
}

#main-content {
    min-height: 60vh; /* Asegura que el contenido principal tenga al menos el 60% de la altura de la ventana */
    background-image: url(../img/bg-landing.png), url(../img/onda-fondo-1.png);
    background-size: cover, contain;
    background-position: center 300%, center 150%;
    background-repeat: no-repeat;
    background-color: transparent;
}

/** Formulario **/ 
#form-cupones label {
    width: 100%;
}

#form-cupones label input {
    background-color: #fff;
    color: #333;
}

#datos-contacto img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

#datos-contacto img.telefono {
    width: 30px;
    height: 30px;
}

#datos-contacto strong {
    font-size: 0.95rem;
}

footer p {
    font-size: 0.8rem;
}

/** Para la página de gracias */
.container-fluid.thanks {
    background-color: #2c74c8;
}

#content-gracias {
    min-height: 100vh; /* Asegura que el contenido principal tenga al menos el 100% de la altura de la ventana */
    background-image: url(../img/bg-landing.png), url(../img/onda-fondo-1.png);
    background-size: cover, contain;
    background-position: center -250px, center 125%;
    background-repeat: no-repeat;
}