:root {
  interpolate-size: allow-keywords;
}

[class*="acordeon_"] h2{
  margin-bottom: 2rem;
}

[class*="acordeon_"] .accordioncontent ul {
    padding: 0 0 0 20px;
}

/* acordeon styles 1 */

.acordeon_1 details{
    border-style: none;
    padding: 2rem 5rem 2rem 0;
    margin: 0;
    border-bottom: 1px solid #e1e0e0;
}

.acordeon_1 details summary{
  all:inherit;
  border-style:none;
  color:black;
  cursor:pointer;
  display:block;
  font-weight:normal;
  padding:0;
  position: relative;
  transition: padding 1s;
  transition-behavior: allow-discrete;
}

.acordeon_1 details summary:before {
	content: "\002B";
	position: absolute;
	right: 0;
	font-size: 30px;
	font-weight: 500;
	color: #709cca;
	top: 13px;
  right: -4rem;
	transform: translateY(-50%);
	transition: all 0.5s;
}

.acordeon_1 details summary:after {
  float: right;
  margin-right: 0;
  width: 40px;
  height: 40px;
  background: #210f5914;
  text-align: center;
  border-radius: 50%;
  content: '';
  position: absolute;
  right: -5rem;
  top: -7px;
}

.acordeon_1 details[open] summary{
  padding-bottom: 1.5rem;
}

.acordeon_1 details[open] summary:before{
  content: "\2212";
}

/* eol acordeon styles 1 */

/* acordeon styles 2 */

.acordeon_2 details{
    border-style:none;
    margin-bottom:1em;
    padding:0;
}

.acordeon_2 details summary{
    all:inherit;
    border-style:none;
    color:#457B9D;
    cursor:pointer;
    display:block;
    font-weight:normal;
    padding:0;
    position: relative;
    display: flex;
}


.acordeon_2 details summary h4{
  font-weight: normal;
  display: inline;
}

.acordeon_2 details summary:after{
    content: "+";
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* eol acordeon styles 2 */

/* acordeon styles 3 */

.acordeon_3 details{
    border-style: none;
    padding: 1.5rem 0 0 0;
    margin: 0;
}


.acordeon_3 details summary{
  all:inherit;
  border: 1px solid black;
  padding: 1.5rem 3rem 1.5rem 6rem;
  border-radius: 50px;
  color:black;
  cursor:pointer;
  display:block;
  font-weight:normal;
  position: relative;
  transition: padding 1s;
  transition-behavior: allow-discrete;
}

.acordeon_3 details summary:before {
	content: "\002B";
	position: absolute;
	right: 0;
	font-size: 30px;
	font-weight: 500;
	color: #709cca;
	top: 50%;
  left: 20px;
	transform: translateY(-50%);
	transition: all 0.5s;
}

.acordeon_3 details summary:after {
  float: right;
  margin-right: 0;
  width: 24px;
  height: 224px3px;
  background: #210f5914;
  text-align: center;
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}

.acordeon_3 details[open] summary{
  padding-bottom: 1.5rem;
}

.acordeon_3 details[open] summary:before{
  content: "\2212";
}


.acordeon_3 .accordioncontent {
  padding: 0rem 3rem;
  border-right: 1px solid #686868;;
  border-left: 1px solid #686868;;
  margin: 2rem 3rem;
}

/* eol acordeon styles 3 */



/* Contenedor principal */
details.acord1 {
    border-style: none;
    margin-bottom: 1em;
    padding: 0;
    display: block; /* Asegura que el contenedor fluya correctamente */
}

/* El encabezado (Summary) */
details.acord1 summary {
    list-style: none; /* Estándar moderno */
    outline: none;
    color: #457B9D;
    cursor: pointer;
    padding: 0.5em 0;
    position: relative;
    display: flex; /* Cambiamos block por flex para evitar errores de renderizado en Safari */
    align-items: center;
}

/* Quitar flecha en Safari */
details.acord1 summary::-webkit-details-marker {
    display: none;
}

/* El icono + */
details.acord1 summary:after {
    content: "+";
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}

/* Animación y cambio visual al abrir */
details[open].acord1 > summary:after {
    content: "−"; 
    transform: rotate(180deg);
}

/* Forzar que el contenido sea visible */
details.acord1 ul {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* eol acordeon styles 1 */

