.interactivoAccordeon {
    --primary: #016d38;
    --secondary: #ffdc5d;
    --text: #333333;
    --white: #fff;
}


a:focus {
    outline: none;
}

.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 {
    border: none;
}

.panel-body {
    color: #333;
    background: #f2f2f2;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 34%;
    align-items: center;
    justify-items: center;
    gap: 30px;
}

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

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

.panel-body img {
    max-width: 100%;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.panel-body img {
    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: 10px 15px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 70px;
    margin: 5px auto;
}

.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(--text);
}

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

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

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



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

@media screen and (max-width: 992px) {
    .panel-head {
        padding: 2px 21% 7px 40px;
        background-size: 47px;
        margin: 8px;
    }

    .panel-body {
        padding: 15px;
        font-size: 20px;
    }

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

@media screen and (max-width: 768px) {
    .panel-head {
        padding: 1px 21% 2px 35px;
        background-size: 47px;
        margin: 3px;
    }

    #recurso-3 h2 {
        font-size: 20px;
        margin: 11px;
    }
}

@media screen and (max-width: 576px) {
    .panel-head {
        padding: 12px 21% 8px 21px;
        background-size: 32%;
        background-position: right 3px center;
        margin: 5px;
        min-height: 85px;
        align-items: center;
        display: flex;
    }

    .panel-body {
        padding: 15px;
    }

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


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


.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(--primary);
    background-color: var(--secondary);
    border-radius: 20px;
    padding: 8px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    transform: scale(1);
    transition: transform .3s;
    border: 2px solid var(--primary);
}

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