body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #666666;
	text-decoration: none;
	background-attachment: fixed;
	background-image: url(../imagenes/fondo.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.tituloDest {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FF9900;
	text-decoration: none;
}

.menu-footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: capitalize;
}
.menu-footer:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FF9900;
	text-decoration: none;
}

.separador {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #FFCC00;
	text-decoration: none;
}


.fondo-contenido {
	background-attachment: fixed;
	background-image: url(../imagenes/fondo-contenido.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
.txt-footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-decoration: none;
}
.titulo-gris {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #666666;
	text-decoration: none;
}
.linkcontenido {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FF6600;
	text-decoration: none;
}

/* FAQ Accordion - De Loga */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 16px;
}

.faq-item {
  border-bottom: 1px solid #D8C7E6;
  overflow: hidden;
}

.faq-pregunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #5B2E5F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.faq-pregunta:hover {
  color: #8A8F00;
}

.faq-icono {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #F2A01A;
}

.faq-item.abierto .faq-icono {
  transform: rotate(45deg);
}

.faq-respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 8px;
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.abierto .faq-respuesta {
  max-height: 300px;
  padding: 0 8px 18px;
}