.interactivoAccordeon {
    --primary: #67ABB7;
    --borde1: #8ad2df;
    --secondary: #FFE599;
    --borde2: #ffbf00;
    --color3: #ff516b;
    --borde3: #da0222;
    --color4: #033F87;
    --text: #333333;
    --white: #fff;
}

a:focus {
    outline: none;
}

.acordeon {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    padding: 10px;
}

.acordeon>div {
    margin: 0;
    width: 100%;
    max-width: 1000px;
}

@media screen and (max-width: 768px) {
    .acordeon>div {
        width: 100%;
        max-width: 100%;
    }
}

.interactivoAccordeon {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    padding: 10px;
}

.interactivoAccordeon>div {
    margin: 0;
    width: 100%;
    max-width: 1000px;
}

@media screen and (max-width: 768px) {
    .interactivoAccordeon>div {
        width: 100%;
        max-width: 100%;
    }
}

.panel-group {
    counter-reset: my-counter;
}

.panel {
    border: none;
}


.panel.locked {
    pointer-events: none;
    filter: grayscale(1);
}

.panel-body {
    color: #333;
    background: #f2f2f2;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    background-image: url(../img/fondo1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-blend-mode: hard-light;
    display: none;
}

/* Cuando el panel está activo */
.panel.active .panel-body {
    display: block;
}

@media (max-width: 767px) {
    .panel-body {
        grid-template-columns: 1fr;
    }
}

.col1 {
    display: grid;
    grid-template-columns: 1fr 34%;
    align-items: center;
    justify-items: center;
    gap: 30px;
}

@media (max-width: 767px) {

    .col1 {
        grid-template-columns: 1fr;
    }

}

.panel-body:before,
.panel-body::after {
    display: none;
}

.panel-body__img {
    border: 4px solid #9B6314;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.panel-default>a {
    text-decoration: none;
}

.panel-default>a>.panel-heading {
    background-color: #603E2A;
}

.panel-heading {
    padding: 10px 15px 15px 50px;
}

#recurso-3 h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.panel-group .panel {
    margin-bottom: 2px;
    border-radius: 5px;
}

.panel-head {
    padding: 20px 20px 20px 60px;
    border-radius: 5px;
    background-image: url(../img/estrellas.gif);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: top -5px right 5px;
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.panel-head::before {
    content: counter(my-counter)".";
    counter-increment: my-counter;
    position: absolute;
    left: 5px;
    top: 0;
    width: 50px;
    height: 100%;
    background-size: 45px;
    background-position: center left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 4vh;
}

.panel:nth-child(even) .panel-head::before {
    background-image: url(../img/lista-numerada1.png), url(../img/estrellas.gif);
}

.panel:nth-child(odd) .panel-head::before {
    background-image: url(../img/lista-numerada2.png), url(../img/estrellas.gif);
}

.panel-head H3 {
    font-weight: bold;
    font-size: 22px;
    margin: 0;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.panel.animation {
    animation: pulse .6s infinite;
}


.panel:nth-child(even) .panel-head {
    color: var(--color4);
}

.panel:nth-child(odd) .panel-head {
    color: var(--white);
}

.panel:nth-child(even) {
    border: 2px solid var(--borde2);
    background: var(--secondary);
}

.panel:nth-child(odd) {
    border: 2px solid var(--borde1);
    background: var(--primary);
    color: var(--secondary);
}

.panel:nth-child(3),
.panel:nth-child(7) {
    background: var(--color3) !important;
    border: 2px solid var(--borde3) !important;
}

.panel:nth-child(3) .panel-head,
.panel:nth-child(7) .panel-head {
    color: var(--white);
}



/*********** media queries *****************/

@media screen and (max-width: 992px) {
    .panel-body {
        padding: 15px;
        font-size: 20px;
    }

    #recurso-3 h2 {
        font-size: 23px;
    }
}

@media screen and (max-width: 768px) {
    #recurso-3 h2 {
        font-size: 20px;
        margin: 11px;
    }
}

@media screen and (max-width: 576px) {
    .panel-body {
        padding: 15px;
    }

    #recurso-3 h2 {
        font-size: 17px;
        margin: 5px auto;
    }
}


.panel-body__img {
    border-radius: 8px;
    width: 300px;
}


.fuente {
    font-size: 14px;
    padding: 2px 2px 2px 10px !important;
    border-left: 14px solid var(--secondary);
    position: relative;
    margin-top: 15px;
}

.fuente::before {
    content: "";
    position: absolute;
    left: -14px;
    bottom: 0;
    width: 14px;
    height: 50%;
    background: var(--primary);
}

.fuenteTitulo {
    font-weight: bold;
    color: var(--primary);
}


.btnMore {
    font-size: 20px;
    font-weight: normal;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    color: var(--white);
    background-color: var(--color3);
    border-radius: 2rem;
    padding: 8px 20px 8px 30px;
    display: block;
    transform: scale(1);
    transition: transform .3s;
    border: 2px solid var(--borde3);
    position: relative;
    width: fit-content;
    margin: 20px auto 0;
    text-decoration: none;
}

.btnMore::before {
    content: "";
    position: absolute;
    left: -20px;
    top: -10px;
    width: 50px;
    height: 60px;
    background-image: url(../img/ruleta.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}

.btnMore:hover {
    color: var(--white);
    text-decoration: none;
    transform: scale(1.02);
}

.itemExpander {
    padding: 10px 20px 10px 60px;
    background-image: url(../img/lista1.png);
    background-size: 45px;
    background-position: center left;
    background-repeat: no-repeat;
    position: relative;
}

.listaExpander {
    position: relative;
}

.listaExpander:before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #033F87;
}

.col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listaExpander2 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
}

.listaExpander2 img {
    width: 70px;
    background-image: url(../img/icono1.png);
    background-position: left center;
    background-size: contain;
    padding: 15px;
}

.listaExpander2:nth-child(odd) img {
    background-image: url(../img/icono1.png);
}

.listaExpander2:nth-child(even) img {
    background-image: url(../img/icono3.png);
}

.listaExpander2 {
    margin: 0;
}

.tituloH2Expander h2 {
    margin: 0 auto 10px;
    font-weight: bold;
    padding: 30px 10px 5px 80px;
    font-size: 28px;
}

.tituloH2--h2 h2::before {
    background-size: contain;
}

.tituloH3Expander {
    margin: 0 auto;
    padding: 30px 30px 10px;
}

.tituloH3Expander h3 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 0;
}

.tituloH3--h3 {
    background-size: 50px, 60px;
}