/* ===== SECCION GENERAL ===== */
.nosotros-section{
margin-top:60px;
}

/* ===== CAJAS PRINCIPALES ===== */
.info-box{
background:#fff;
padding:30px;
border-radius:12px;
margin-bottom:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.info-box:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* TITULOS */
.box-title{
color:#0d6efd;
margin-bottom:15px;
font-weight:600;
}

/* LISTAS */
.custom-list{
padding-left:20px;
}

.custom-list li{
margin-bottom:8px;
}

/* ===== SIDEBAR ===== */
.sidebar-card{
background:#fff;
padding:25px;
border-radius:12px;
margin-bottom:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.sidebar-card h4{
color:#0d6efd;
margin-bottom:12px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
.nosotros-section{
margin-top:40px;
}
}

/* SIDEBAR STICKY */
.sidebar-sticky{
position:sticky;
top:110px;
}

/* CAJA */
.links-box{
padding:25px;
border-radius:14px;
background:white;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* TITULO */
.links-box h4{
font-weight:600;
margin-bottom:20px;
border-bottom:2px solid #e6eef7;
padding-bottom:10px;
}

/* LISTA */
.sidebar-links{
list-style:none;
padding:0;
margin:0;
}

/* ITEM */
.sidebar-links li{
margin-bottom:12px;
}

/* ENLACES */
.sidebar-links a{
display:flex;
align-items:center;
gap:12px;
padding:12px 15px;
border-radius:10px;
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

/* HOVER */
.sidebar-links a:hover{
background:#eef5ff;
color:#0d6efd;
transform:translateX(5px);
}

/* ICONOS */
.sidebar-links i{
color:#0d6efd;
font-size:18px;
}

/* MOBILE */
@media(max-width:992px){
.sidebar-sticky{
position:relative;
top:0;
margin-top:40px;
}
}

/* ===== CAJA PRINCIPAL ===== */
.info-box{
background:white;
padding:45px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* TITULO PRINCIPAL */
.main-title{
font-size:32px;
font-weight:700;
color:#0a3d62;
margin-bottom:15px;
}

/* INTRO */
.intro-text{
font-size:17px;
color:#555;
margin-bottom:20px;
}

/* SECCIONES INTERNAS */
.policy-section{
margin-bottom:28px;
}

.policy-section h4{
color:#1e5fa3;
font-weight:600;
margin-bottom:8px;
}

/* LINEA SEPARADORA */
.info-box hr{
margin:25px 0;
opacity:.15;
}


/* ===================================================== */
/* ====== ESTILOS AGREGADOS — ORGANIZAR CARDS ====== */
/* ===================================================== */

/* GRID AUTOMATICO */
.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
gap:25px;
margin-top:30px;
}

/* CARD */
.gestion-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
display:flex;
flex-direction:column;
}

.gestion-card:hover{
transform:translateY(-5px);
}

/* IMAGEN UNIFORME */
.gestion-card img{
width:100%;
height:260px;
object-fit:cover;
}

/* CONTENIDO */
.card-content{
padding:18px 15px;
}

.card-content h4{
font-size:17px;
font-weight:600;
margin-bottom:5px;
}

.card-content span{
font-size:14px;
color:#666;
}

/* TITULOS DE SECCION */
.section-header{
text-align:center;
margin-top:80px;
}

.section-header h1,
.section-header h2{
font-weight:700;
margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
.gestion-card img{
height:220px;
}
}