/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Kanit, sans-serif;
  line-height: 1.2;
  color:#808181;
  padding: 0;
}

h1 {
  font-size: 2.4em;
  color:#ff5a00;
}
h2 {
  font-size: 1.6em;
  font-weight: 600;
  color:#0e0069;
}
h3 {
  font-size: 1.1em;
  font-weight: 300;
  color:#0e0069;
}
p {
  font-size: 1.1em;
  font-weight: 300;
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
    margin-right: auto;
}

main {
  padding: 12px 40px;
}

.faq {
  max-width: 700px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.1em;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 10px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

footer {
  background: url(img/footer.png) no-repeat top center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: auto;
  margin-left: auto;
    margin-right: auto;
}

.datos {
  margin-left:40%;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: left;
  align-items: center;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #0077ff; /* o el color de la red social */
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Relación 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: auto;
  }

  .video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 200;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    width: 100%;
  }
}
