/* ============================================
PÁGINA RECURSOS – AJUSTES ESTÉTICOS
============================================ */

/* Encabezado */
.recursos-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1.5rem;
}

/* Accordion */
#recursosAccordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
}

#recursosAccordion .accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 0.5rem;
    box-shadow: none;
}

#recursosAccordion .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
}

#recursosAccordion .accordion-button:focus {
    box-shadow: none;
}

#recursosAccordion .accordion-body {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Listas de vencimientos */
.recursos-vencimientos .list-group-item {
    border: none;
    border-bottom: 1px dashed #ddd;
    padding-left: 0;
}

/* Cards de recursos */
.recurso-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.recurso-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Botones deshabilitados más prolijos */
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Links de interés */
.links-interes ul {
    list-style: none;
    padding-left: 0;
}

.links-interes li::before {
    content: "›";
    color: #0d6efd;
    margin-right: 0.5rem;
}
/* === Actualidad / Novedades (look tipo listado con fecha a la izquierda) === */
.actualidad .post-date{
width: 64px;
flex: 0 0 64px;
border: 1px solid rgba(0,0,0,.1);
border-radius: 10px;
padding: 10px 6px;
background: #fff;
}

.actualidad .post-day{
font-size: 24px;
font-weight: 700;
line-height: 1;
}

.actualidad .post-month{
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .06em;
margin-top: 4px;
color: rgba(0,0,0,.55);
}

.actualidad .post-title a:hover{
text-decoration: underline;
}

/* Instagram Icon */
.social-instagram {
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-instagram:hover {
    color: #E1306C; /* color oficial Instagram */
}
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  background: #25D366;
  text-decoration: none;
}

.whatsapp-float img{
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
}