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

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

.directores-section {
    position: relative;
    padding: 40px 0;
    max-width: 1200px;
    margin: 20px auto 40px;
}

.titulo-directores {
    margin: 0 0 25px 20px;
    font-size: 34px;
    font-weight: 900;
}

.director-card {
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0001;
}

.director-card h3 {
    font-size: 20px;
    font-weight: 900;
}

.director-card p {
    font-size: 14px;
    color: #555;
}

.directores-section .carrusel {
    display: flex;
    gap: 150px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 40px;
}
.directores-section .carrusel::-webkit-scrollbar { display: none; }


/* ========= 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 input[type="submit"] {
  background-color: #1b80f2;
  color: #ffffff;
  border: 0;
  cursor: pointer;
}

.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;
}

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


/* ========= 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: 18px;
    }

    .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;
    }

    .logos img {
        height: 45px;
    }
    
    .logo img {
        height: 25px;
    }

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

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

    .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;
    }
}

/* 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: 40px;
    }
    
    .logo img {
        height: 25px;
    }

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

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

.mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
}
