@import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700|Poppins:400,600&display=swap');

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Arimo', sans-serif;
  line-height: 1.6;
  background: #f5f7fa;
  color: #000;
}

body > *:first-child {
  margin-top: 0;
}

/* Header */
header {
  background-color: #302C7F;
  padding: 0.75rem 1rem;
  text-align: center;
  overflow: hidden;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

header h1 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* Banner SIN margen ni separación */
.banner1-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: none;
}

    /* Sección principal */
    section {
    padding: 2rem 3rem;
    max-width: 900px;
    margin: 1.5rem auto 4rem auto; /* sin margen superior */
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .accordion label i {
  margin-right: 0.6rem;
  color: #302C7F;
  font-size: 1.2rem;
  vertical-align: middle;
}

    /* Títulos */
    h2 {
      font-family: 'Poppins', sans-serif;
      color: #302C7F;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      border-bottom: 3px solid #302C7F;
      padding-bottom: 0.4rem;
    }
    h3, h4, h5 {
      font-family: 'Poppins', sans-serif;
      color: #333;
      font-weight: 600;
      margin-top: 1.4rem;
      margin-bottom: 0.6rem;
    }

    /* Párrafos y listas */
    p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #444;
    }
    ul {
      padding-left: 1.4rem;
      margin-bottom: 1.5rem;
      color: #555;
    }
    ul li {
      margin-bottom: 0.4rem;
    }

    a {
      color: #302C7F;
      text-decoration: none;
    }

    /* Acordeón */
    .accordion input[type=checkbox] {
      display: none;
    }
    .accordion label {
      display: block;
      cursor: pointer;
      padding: 1rem 1.2rem;
      margin: 0.8rem 0;
      background: #f0f2f7;
      color: #302C7F;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: background 0.4s, transform 0.2s;
      user-select: none;
    }
    .accordion label:hover {
      background: #e3e6f0;
      transform: translateY(-2px);
    }
    .accordion .content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.3s ease;
      background: #fff;
      border-radius: 0 0 10px 10px;
      margin-top: -0.5rem;
      padding: 0 1rem;
      color: #444;
    }
    .accordion input[type=checkbox]:checked ~ .content {
      max-height: 2000px; /* suficiente para el contenido */
      padding: 1rem;
    }


.banner2 {
  width: 100%;
  height: 250px;
  background-image: url('img/banner2.jpg'); /* cambialo por tu imagen */
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin: 0; /* separa del contenido */
}

h2#contacto-title {
  margin-top: 0; /* quita espacio entre el banner y el título */
}
    .contacto-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap; /* Para que se acomode en pantallas chicas */
  align-items: center;
}

.contacto-info {
  flex: 1 1 50%;
}

.contacto-mapa {
  flex: 1 1 40%;
  min-width: 260px; /* para asegurar que el mapa nunca quede demasiado chico */
}

    /* Mapa */
    #mapa iframe {
      width: 100%;
      max-width: 900px;
      height: 400px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      display: block;
      margin: 2rem auto 0 auto;
      border: 0;
    }

    /* Footer */
    footer {
      text-align: center;
      background-color: #302C7F;
      color: white;
      padding: 2rem 1rem;
      margin-top: 3rem;
      border-top-left-radius: 24px;
      border-top-right-radius: 24px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
    }

    footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

footer .social-icons a {
  color: white;
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

footer .social-icons a:hover {
  transform: scale(1.2);
  color: #d1d1d1; /* un gris suave al hacer hover */
}
footer p {
  color: white;
}


    /* Responsive */
    @media (max-width: 900px) {
      section {
        padding: 1.5rem 3rem;
        margin: 1.5rem auto 3rem auto;
      }
      h2 {
        font-size: 1.8rem;
      }
      #mapa iframe {
        height: 320px;
      }
    }

    @media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }
  .contacto-mapa iframe {
    height: 240px;
  }
}

    @media (max-width: 600px) {
      .header-container {
        flex-direction: column;
        gap: 0.4rem;
      }
      .logo {
        height: 24px;
      }
      header h1 {
        font-size: 0.9rem;
      }
      .banner1-img {
    width: 100%;
    height: auto;
    margin: 0;
    border: none;
    }

      section {
        padding: 1.2rem 1.5rem;
        margin: 1rem auto 2rem auto;
        border-radius: 12px;
        background-size: contain;
      }
      h2 {
        font-size: 1.5rem;
      }
      
      #mapa iframe {
        height: 240px;
      }
    }