/*Estilos contenedores*/
.contenedor-descripcion {
    background-color: #dae1ee;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
}

.contenedor-descripcion p {
    margin: 0;
}

.contenedor-secundario p {
    margin: 10px 0 5px;
}

.section.contenedor-principal, .row.py-5.container-decalogo {
    background-color: #dae1ee;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
}

.section.contenedor-principal h3 {
    margin: 10px 0;
}

.btn-a {
    display: flex;
    justify-content: center;
}

.btn-a a {
    display: flex;
    width: 265px;
    margin-right: 0px;
    background: #8bc400;
    justify-content: center;
    border-radius: 35px;
}

.btn-a a:hover {
    background-color: #97d106;
}

/*Fin estilos contenedores*/
/*Estilos acordion*/
.accordion-container {
    padding: 3px;
    border-radius: 10px;
}

.panel-group .panel {
    border: none;
    box-shadow: none;
}

.panel-heading {
    background: #003087 !important;
    padding: 10px 15px;
    border-radius: 10px !important;
    cursor: pointer;
}

.panel-title {
    color: #fff !important;
}

.panel-title a {
    display: block;
    position: relative;
    text-decoration: none;
}

.panel-title a:hover {
    color: #8BC400;
}

.panel-title a:visited {
    color: #fff;
}

.panel-title a .glyphicon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.panel-body {
    background: #fff;
    border: 1px solid #f5f5f5 !important;
    padding: 15px;
    border-radius: 5px;
    margin-top: 5px;
}

h2.text-center {
    margin: 20px;
}

.sec-first .col-md-6 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*Estilos cards*/
.thumbnail .caption {
    padding: 5px;
    height: 70px;
}

.col-sm-6.col-md-4 {
    display: flex;
    justify-content: center;
}

.thumbnail .caption h4 {
    text-align: center;
    font-size: 20px;
    line-height: 1;
    margin: 3px 0 15px;
}

.thumbnail {
    width: 250px;
    height: 235px;
    padding: 18px 0;
    border-style: none;
    border-radius: 25px;
    box-shadow: 0.5px 0.5px 8px 1px #d1d1d1;
}

.thumbnail img {
    max-width: 55%;
    min-height: 10px;
    min-width: 10px;
}

.btn-style {
    display: flex;
    justify-content: center;
}

.btn-primary {
    color: white !important;
    font-weight: 500;
}

.btn-style .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px !important;
    width: 180px;
    height: 35px;
    margin: 5px;
    border-style: none;
    border-radius: 8px;
    background-color: #003087;
}

.btn:hover {
    background-color: #0045c6;
}

/*Fin estilos cards*/
.panel-title>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Asegura que el ícono siempre quede al final */
.panel-title>a .icon-toggle {
    margin-left: auto;
}

/* Herramientas Aprende */
.container-herramientas h5 {
    font-size: 30px;
    font-weight: bold;
}

.container-herramientas a:hover {
    text-decoration: underline;
}

.container-herramientas {
    background-color: #dae1ee;
    border-radius: 15px;
    padding: 10px;
}

.panel-body h3 {
    margin-top: 0px;
}

.check-item {
    cursor: pointer;
    transition: all 0.3s ease;
}
.card-step {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 300px;
    padding: 15px;
    margin: 10px 0;
}

.card-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: #003087;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.decalogo-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    position: relative;
}

.info-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    border-top:6px solid #66b32e;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    position:relative;
}

.decalogo-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 8px;
    border-radius: 0 20px 20px 0;
    background: var(--color);
}

.icon-circle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:110px;
    height:110px;
    min-width:110px;
    flex-shrink:0;
    border: 10px solid #fff;
    border-radius:50%;
    background:var(--color);
    color:white;
    font-size:40px;
    margin-right:25px;
    box-shadow:0 8px 12px rgba(0,0,0,0.15);
}

.content h4 {
    font-weight: 700;
    color: var(--color);
    margin-bottom: 8px;
}

.content p {
    margin: 0;
    color: #2c3e50;
}


/* colores */

.green {
    --color: #7AC142;
}

.teal {
    --color: #1BB5A3;
}

.blue {
    --color: #1C8EC6;
}

.deepblue {
    --color: #1E6BD6;
}

.indigo {
    --color: #344CB7;
}

.purple {
    --color: #5747C2;
}

.violet {
    --color: #6E3BC9;
}

.pink {
    --color: #C23CA3;
}

.red {
    --color: #E23B2D;
}

.orange {
    --color: #F48B00;
}


/* responsive */

@media (max-width:768px) {

    .decalogo-item {
        flex-direction: column;
        text-align: center;
    }

    .icon-circle {
        margin-right: 0;
        margin-bottom: 15px;
    }

}