/* RESET GLOBAL BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #000;
    background-color: #ffffff;
}

/* CONTENEDOR GENERAL DEL CUERPO */
.cuerpo {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
}

/* TEXTO PRINCIPAL (INTRO) */
.intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.intro p {
    font-size: 24px;
    line-height: 1.4;
}

.blue {
    color: #1b80f2;
    font-weight: 900;
}

/* CONTENIDO PRINCIPAL: SOLUCIONES / SERVICIOS */
.contenido {
    max-width: 900px;
    margin: 0 auto;
}

.contenido h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 30px 0 20px 0;
}

/* ITEMS */
.item {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid #e6e6e6;
    align-items: center;
}

.number {
    font-size: 24px;
    font-weight: 900;
    color: #000;
}

.info h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 3px;
}

.info h4 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.info p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.arrow {
    width: 24px;
    justify-self: end;
}

/* SEPARADOR */
.divider {
    max-width: 900px;
    margin: 40px auto;
    border: 0;
    border-bottom: 1px solid #ccc;
}

/* CTA */
.cta {
    max-width: 1100px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.cta p {
    font-size: 28px;
    font-weight: 900;
    text-align: left;
    max-width: 600px;
    line-height: 1.2;
}

.cta .btn,
.btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 999px;
    background: #1b80f2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* LOGOS */
.logos {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.logos img {
    height: 55px;
    object-fit: contain;
}

/* CERTIFICACIONES */
.certificaciones {
    text-align: center;
    background: #f3f3f3;
    padding: 40px 20px;
	border-radius: 25px;
}

.certificaciones h2 {
    font-size: 32px;
    font-weight: 900;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cert img {
    height: 70px;
}

.cert p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* BANNER AZUL */
.blue-banner {
    background: #1b80f2;
    color: white;
    border-radius: 25px;
    padding: 60px 20px;
    text-align: center;
    margin: 40px auto;
}

.blue-banner h5 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.banner-text {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.4;
}

.strong{
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
}

/* ========= SECCIÓN DEMO (IMAGEN + FORM) ========= */

.demo-section {
    display: flex;
    background: #ffffff;
    padding: 40px 0;
    gap: 40px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-img {
    flex: 1;
}

.demo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.demo-form {
    flex: 1;
}

.demo-form h2 {
    font-size: 30px;
    font-weight: 900;
    color: #1b80f2;
    margin-bottom: 25px;
}

/* Layout general del form */
/* Formulario (columna derecha) */
.tagline {
  margin-top: 10px;
  color: #E0483A;
  font-size: 26px;
  line-height: 30px;
  font-weight: 900;
  text-align: center;
}

.tabla-formulario {
  margin-top: 30px;
  width: 100%;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
}

.tabla-formulario tr {
  height: 24px;
}

.tabla-formulario td {
  padding: 4px 0;
}

.tabla-formulario input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid darkgray;
  color: royalblue;
  height: 24px;
  background-color: #F6F5F5;
  font-family: inherit;
  font-size: 14px;
}

.tabla-formulario input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.tabla-formulario .boton {
  text-align: center;
}


.tabla-formulario input[type="submit"] {
  background-color: #1b80f2;
  color: #ffffff;
  border: 0;
  border-radius: 90px;
  cursor: pointer;
  width: 50%;
}

.tabla-formulario select {
  color: royalblue;
  width: 100%;
  height: 24px;
  border: 0;
  border-bottom: 1px solid darkgray;
  background-color: #F6F5F5;
  font-family: inherit;
  font-size: 14px;
}

.tabla-formulario a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

/* Botón */
.btn-enviar {
    background: #1b80f2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.btn-enviar:hover {
    background: #0f63c4;
}

.btn-enviar input[type="submit"] {
    background: transparent;
	border: none;
	color: #ffffff;
}

/* reCAPTCHA */
.recaptcha img {
    margin-top: 15px;
    width: 230px;
}

/* ========= FAQ ========= */

.faq {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.faq h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
}

details {
    background: #f3f3f3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

details summary {
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

details p {
    margin-top: 10px;
    font-size: 16px;
}

/* ========= RESPONSIVE ========= */

/* Tablets */
@media (max-width: 992px) {
    .intro p {
        font-size: 22px;
    }

    .contenido h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 22px;
    }

    .blue-banner h5 {
        font-size: 30px;
    }

    .banner-text {
        font-size: 20px;
    }

    .demo-section {
        gap: 24px;
    }
}

/* Móviles */
@media (max-width: 768px) {

    .intro p {
        font-size: 20px;
    }

    .item {
        grid-template-columns: 40px 1fr 25px;
    }

    .number {
        font-size: 20px;
    }

    .info h3 {
        font-size: 18px;
    }

    .cta p {
        font-size: 20px;
    }

    .logo img {
        height: 25px;
    }

    .demo-section {
        flex-direction: column;
        padding: 30px 0;
    }

    .demo-img,
    .demo-form {
        width: 100%;
    }

    .demo-form form .row {
        flex-direction: column;
        gap: 10px;
    }

    .checkbox-group .check-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .blue-banner {
        padding: 40px 20px;
    }
	
	.certificaciones h2 {
		font-size: 26px;
	}
}


 /* --- CTA RESPONSIVA --- */
@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta p {
        text-align: center;
        font-size: 22px;
    }

    .cta .btn {
        font-size: 15px;
        padding: 12px 32px;
    }
}



/* Móviles pequeños */
@media (max-width: 480px) {

    .intro p {
        font-size: 18px;
    }

    .item {
        grid-template-columns: 30px 1fr 20px;
    }

    .info h3 {
        font-size: 16px;
    }

    .info p {
        font-size: 14px;
    }

    .cta .btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .logos img {
        height: 20px;
    }

    .blue-banner h5 {
        font-size: 24px;
    }

    .banner-text {
        font-size: 16px;
    }
}
