      .bandera-lgbt {
      height: 20px;
      width: 100%;
      background: linear-gradient(
        to bottom,
        #e40303 0%,     /* Rojo */
        #e40303 16.66%,
        #ff8c00 16.66%, /* Naranja */
        #ff8c00 33.33%,
        #ffed00 33.33%, /* Amarillo */
        #ffed00 50%,
        #008026 50%,    /* Verde */
        #008026 66.66%,
        #004dff 66.66%, /* Azul */
        #004dff 83.33%,
        #750787 83.33%, /* Violeta */
        #750787 100%
      );
    }
	
	.acordeon {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
}

.acordeon-titulo {
  text-align: ;
  background: #f0f0f0;
  padding: 12px;
  cursor: pointer;
  font-weight: bold;
}

.acordeon-contenido {
	text-align: ;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 12px;
}

.acordeon.activo .acordeon-contenido {
  max-height: 500px; /* ajusta según el contenido */
  padding: 12px;
}








/* =====================
   Estilos generales
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* =====================
   Hero Section
===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #ff5eb8, #6b5bff);
  color: white;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 500px;
}

.hero .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: #6b5bff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background-color: #eee;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* =====================
   Secciones alternadas
===================== */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.section.alt {
  flex-direction: row-reverse;
  background-color: #f8f8f8;
 
}

.section-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.section-text {
  flex: 1;
  min-width: 300px;
}

.section-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6b5bff;
}

.section-text p {
  margin-bottom: 15px;
}

/* =====================
   Footer
===================== */
footer {
  background-color: #6b5bff;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    flex-direction: column;
  }

  .section,
  .section.alt {
    flex-direction: column;
    text-align: center;
  }

  .section-image img {
    max-width: 100%;
  }
}
.acordeon {
  border: 2px solid #6b5bff; /* Borde morado */
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.acordeon-titulo {
  text-align: center;
  background: linear-gradient(135deg, #ff5eb8, #6b5bff);
  color: white;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
}

.acordeon-contenido {
  max-height: 0px;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.chase h1{
      margin-left: 7%; /* Mueve el título hacia la derecha dejando un margen del 30% desde la izquierda */
	  color:#6b5bff;
    }

.acordeon.activo .acordeon-contenido {
  max-height: 800px; /* lo suficiente para tu texto */
  padding: 15px;
}
.section.alt .section-image img {
  display: block;
  margin-left: 0;
  margin-right: auto;
}
.foto-final img {
	float: left; 
	}