
.exp-tabs__tab + .exp-tabs__tab{ margin-top:4px; }
.exp-tabs__tab.is-active{
  background:rgba(255,255,255,.16);
  opacity:1;
	    border-bottom: 0 !important;
}

.exp-tabs__panel{
  background:#F0EEEE;
  border-radius:14px;
  padding:26px;
}
.exp-tabs__panel[hidden]{ display:none; }

.exp-tabs__title{
  margin:0 0 12px;
}

.exp-tabs__image{
  width:100%;
  height:auto;
  display:block;
  margin-top:16px;
  border-radius:40px;
  object-fit:cover;
	    aspect-ratio: 1 / 1;
}


.exp-tabs__nav {
    background-color: #6C7560;
    padding-left: 360px;
    padding-top: 50px;
	padding-bottom: 50px;
}

.exp-tabs__panels,.exp-tabs__nav {
    width: 50%;
}
.exp-tabs__panels {padding: 50px 0 50px 65px!important; 
	border-radius: 0 !important;}

.exp-tabs__panels {
    background-color: #F0EEEE;
}

html .exp-tabs article {
    margin: 0 !important;
    padding: 0;
}

h3.exp-tabs__title {
    font-family: 'titulos';
    font-size: 40px;
    line-height: 47px;
    color: #16261B;
    font-weight: 400;
}

.exp-tabs__content * {
    color: #16261B;
    font-family: 'parrafos';
    font-size: 16px !important;
    line-height: 27px;
    font-weight: 400;
	font-style: normal;
}
.exp-tabs__panels article {
    max-width: 100%;
     padding-right: 360px !important;
}
.exp-tabs__nav.flex1.doflex.docolumn button {
    border: 0;
    color: #FFFFFF;
    font-family: 'parrafos';
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    border-bottom: 1px solid #B5C0A5;
    background-color: transparent;
    padding: 20px 0 !important;
    text-align: left;
    cursor: pointer;
	width: calc(100% - 100px);
}
button.is-active {
    color: #16261B !important;
}

.contenedor-boton--activo {
    background-color: #F0EEEE;
    border-radius: 50px 0 0 50px;
}

.contenedor-boton {
    padding-left: 30px;
}

.contenedor-boton button {
    display: flex;
    gap: 15px;
}

@media screen and (max-width: 1600px) and (min-width: 1300px) {
.exp-tabs__panels article {
     padding-right: 160px !important;
}
	.exp-tabs__nav {
    padding-left: 160px !important;
}
}

@media screen and (max-width: 1299px) {
.exp-tabs__panels article {
     padding-right: 20px !important;
}
	.exp-tabs__nav {
    padding-left: 20px !important;
}
	.exp-tabs__nav.flex1.doflex.docolumn button {
    font-size: 18px;
    line-height: 22px;
}
	.exp-tabs__nav.flex1.doflex.docolumn button {
		        width: calc(100% - 30px) !important;}
.exp-tabs__panels {
	padding: 50px 0 50px 30px !important;}
	
}
@media screen and (max-width: 900px) { 
	section.exp-tabs {display: none}}

/* ACORDEON */

/* Contenedor */
.exp-acc {
  display: flex;
  flex-direction: column;
}

/* Cada item */
.exp-acc__item {
  overflow: hidden;
  background: #6C7560; /* verde */
  color: #fff;
}

/* Summary */
.exp-acc__summary {
  list-style: none;
  cursor: pointer;
}
.exp-acc__summary::-webkit-details-marker {
  display: none;
}

.exp-acc__summary-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.exp-acc__icono-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.exp-acc__title {
  font-size: 15px;
  font-weight: 500;
}

/* Chevron */
.exp-acc__chevron {
  margin-left: auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.exp-acc__item[open] .exp-acc__chevron {
  transform: rotate(-135deg);
}

/* Contenido desplegable con animación */
.exp-acc__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
  background: #f5f1ee;
  color: #16261b;
}

.exp-acc__item[open] .exp-acc__content {
  grid-template-rows: 1fr;
}

.exp-acc__content > * {
  overflow: hidden;
}

.exp-acc__content-header {
  padding: 14px 16px 10px;
  display: flex;
  gap: 10px;
}

.exp-acc__description p {
  margin: 0;
}

.exp-acc__figure {
  margin: 0;
}

.exp-acc__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 8px 8px;
}

@media (min-width: 768px) {
  .exp-acc {
    display: none;
  }
}