/* =================================================================
   DASHBOARD - PARTE 3: COMPONENTES FLOTANTES, BANNERS Y RESPONSIVE
   ================================================================= */

/* =================================================================
   MODAL DE EVENTO - DISEÑO FIEL A LA IMAGEN DE REFERENCIA
   ================================================================= */

.evento-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.evento-modal-overlay.show {
    opacity: 1;
}

.evento-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.evento-close-btn {
    position: absolute;
    top: 0px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #6b4c7f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.evento-close-btn:hover {
    background: #6b4c7f;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.evento-card {
    background: linear-gradient(135deg, #3a7d44 0%, #5a2d6e 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

/* Forma ondulada blanca superior */
.evento-wave-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 280px;
    background: #ffffff;
    border-bottom-right-radius: 80% 50%;
    z-index: 1;
}

/* Top Section: Logo + Badge */
.evento-top-section {
    position: relative;
    z-index: 2;
    padding: 30px 35px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.evento-logo-area {
    position: relative;
}

.evento-logo-img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.llega-ribbon {
    position: relative;
    background: #5a9e7f;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(90, 158, 127, 0.5);
    animation: ribbonPulse 2s ease-in-out infinite;
    transform: rotate(-3deg);
}

.llega-ribbon::before,
.llega-ribbon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.llega-ribbon::before {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent #4a8b6f transparent transparent;
}

.llega-ribbon::after {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent #4a8b6f;
}

@keyframes ribbonPulse {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(-3deg) scale(1.05); }
}

/* Destino */
.evento-destino-area {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 10px 35px 20px;
}

.destino-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: #5a3f6f;
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

/* Main Content */
.evento-main-content {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 20px 35px 30px;
    gap: 0;
    align-items: stretch;
    flex: 1;
}

.evento-left-content {
    flex: 1; 
    padding-bottom: 20px;
    padding-right: 25px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.evento-descripcion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.evento-right-content {
    flex: 0 0 260px;
    padding-left: 25px;
}

.evento-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.evento-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.evento-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.evento-info-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Cambiado de baseline a flex-start */
    gap: 8px;
    color: #ffffff;
    line-height: 1.2;
}

.evento-info-date {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
    position: relative;
    top: 3px; /* Ajusta entre 2px y 5px según necesites */
}

.evento-info-month {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
}

.evento-info-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.evento-info-place {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

/* Menta Area */
.evento-menta-area {
    flex: 0 0 180px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.menta-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    animation: mentaFloat 3s ease-in-out infinite;
}

@keyframes mentaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-5px) rotate(2deg); }
}

.menta-hearts {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
    font-size: 1.4rem;
    animation: heartsFloat 2.5s ease-in-out infinite;
}

@keyframes heartsFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(15deg); opacity: 1; }
}

/* Footer */
.evento-footer {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 20px 35px;
    text-align: center;
    margin-top: auto;
}

.footer-text {
    font-size: 1.1rem;
    color: #5a2d6e;
    font-weight: 700;
    margin: 0;
    font-style: italic;
}

/* Responsive Modal */
@media (max-width: 992px) {
    .evento-card {
        min-height: auto;
    }
    
    .evento-main-content {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .evento-menta-area {
        order: -1;
        flex: 0 0 100%;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .menta-img {
        max-width: 170px;
    }
    
    .evento-right-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .evento-modal-overlay {
        padding: 15px;
    }
    
    .evento-wave-shape {
        width: 85%;
        height: 200px;
    }
    
    .evento-top-section {
        padding: 20px 25px 10px;
    }
    
    .evento-logo-img {
        height: 70px;
    }
    
    .llega-ribbon {
        padding: 10px 25px;
        font-size: 1.2rem;
    }
    
    .evento-destino-area {
        padding: 5px 25px 15px;
    }
    
    .destino-text {
        font-size: 2.5rem;
    }
    
    .evento-main-content {
        padding: 0 25px 20px;
        flex-direction: column;
    }
    
    .evento-left-content {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        margin-bottom: 20px;
    }
    
    .evento-descripcion {
        font-size: 1rem;
        text-align: center;
    }
    
    .evento-right-content {
        flex: none;
        width: 100%;
        padding-left: 0;
    }
    
    .evento-info-item {
        justify-content: center;
    }
    
    .evento-menta-area {
        flex: none;
        width: 100%;
    }
    
    .menta-img {
        max-width: 160px;
    }
    
    .evento-footer {
        padding: 15px 25px;
    }
    
    .footer-text {
        font-size: 0.95rem;
    }
    
    .evento-close-btn {
        top: -10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .evento-wave-shape {
        width: 100%;
        height: 140px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 50% 30%;
    }
    
    .evento-logo-img {
        height: 55px;
    }
    
    .llega-ribbon {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .destino-text {
        font-size: 2rem;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .evento-descripcion {
        font-size: 0.95rem;
    }
    
    .evento-info-date {
        font-size: 1.8rem;
    }
    
    .evento-info-month {
        font-size: 0.9rem;
    }
    
    .evento-info-time {
        font-size: 1.2rem;
    }
    
    .evento-info-place {
        font-size: 0.9rem;
    }
    
    .menta-img {
        max-width: 140px;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
}

/* =================================================================
   BOTÓN VISOR FLOTANTE (INFERIOR IZQUIERDA)
   ================================================================= */

.visor-float {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 160px;
    height: auto;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: visorFloat 3s ease-in-out infinite;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visor-float:hover {
    transform: scale(1.1) rotate(-5deg);
    animation: none;
    z-index: 10000;
}

.visor-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(107, 76, 127, 0.4));
    transition: filter 0.3s ease;
}

.visor-float:hover .visor-image {
    filter: drop-shadow(0 8px 30px rgba(107, 76, 127, 0.6));
}

.visor-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    border: 2px solid #6b4c7f;
}

.visor-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #6b4c7f;
}

.visor-float:hover .visor-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

@keyframes visorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =================================================================
   BOTÓN WHATSAPP FLOTANTE (INFERIOR DERECHA)
   ================================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #ffffff;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #ffffff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* =================================================================
   FRANJA INSTITUCIONAL
   ================================================================= */

.institucional-banner {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    padding: 40px 20px;
    border-top: 4px solid #6b4c7f !important;
    color: #FAFAFA;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.institucional-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.franja-decoracion-izq, .franja-decoracion-der {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.franja-decoracion-izq {
    top: -100px;
    left: -100px;
}

.franja-decoracion-der {
    bottom: -100px;
    right: -100px;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    margin: 0 auto;
    max-width: 700px;
}

.banner-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-franja {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-franja:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* =================================================================
   NAVEGACIÓN ENLACES GOBIERNO
   ================================================================= */

.enlaces-gobierno-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 4px solid #6b4c7f;
}

.enlaces-navegacion-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.enlace-navegacion-item {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.enlace-navegacion-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    min-width: 140px;
}

.enlace-navegacion-link:hover {
    background: rgba(107, 76, 127, 0.05);
    transform: translateY(-3px);
}

.enlace-icono-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enlace-navegacion-link:hover .enlace-icono-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.enlace-navegacion-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.enlace-navegacion-link:hover .enlace-navegacion-text {
    color: #6b4c7f;
    font-weight: 700;
}

.enlace-navegacion-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999999' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

/* =================================================================
   RESPONSIVE COMPONENTES
   ================================================================= */

@media (max-width: 992px) {
    .carousel-item { 
        height: auto;
        min-height: 350px; 
    }
    .carousel-item img { 
        height: auto; 
        max-height: 75vh;
        object-fit: contain;
        background-color: #f4f4f4;
    }
    
    .events-section { padding: 40px 0; }
    .section-title { font-size: 1.8rem; }
    .event-image { min-height: 500px; }
    .locations-grid { grid-template-columns: 1fr; }
    
    .projects-section { padding: 60px 0; }
    .projects-section .section-title { font-size: 1.8rem; }
    .project-image { height: 300px; }

    .banner-title { font-size: 2.2rem; }
    .banner-subtitle { font-size: 1.1rem; }
    
    .enlaces-navegacion-container {
        padding: 20px 15px;
        gap: 5px;
    }
    
    .enlace-navegacion-link {
        padding: 12px 18px;
        min-width: 120px;
    }
    
    .enlace-icono-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .enlace-navegacion-text {
        font-size: 0.85rem;
    }
    
    .enlace-navegacion-item:not(:last-child)::after {
        right: -8px;
        width: 16px;
        height: 16px;
    }
    
    .visor-float {
        width: 150px;
        bottom: 25px;
        left: 25px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 300px; 
    }
    .carousel-caption-custom { bottom: 60px; padding: 20px 30px; }
    .carousel-caption-custom h2 { font-size: 1.8rem; }
    .carousel-caption-custom p { font-size: 1rem; }
    
    .events-section { padding: 30px 0; }
    .section-subtitle { font-size: 0.8rem; }
    .section-title { font-size: 1.5rem; }
    .event-image { min-height: 450px; }
    .event-content { padding: 20px; }
    .event-title { font-size: 1.3rem; }
    .event-text { font-size: 0.9rem; }
    
    .projects-section { padding: 40px 0; }
    .projects-section .section-title { font-size: 1.5rem; }
    .project-image { height: 280px; }
    .project-content { padding: 20px; }
    .project-title { font-size: 1.2rem; }
    .projects-hashtags { padding: 20px; }
    .hashtag-large { font-size: 0.9rem; padding: 10px 18px; }
    
    .whatsapp-float { bottom: 20px; right: 20px; width: 60px; height: 60px; }
    .whatsapp-float i { font-size: 2rem; }
    .whatsapp-tooltip { display: none; }

    .institucional-banner { padding: 50px 15px; }
    .banner-title { font-size: 1.8rem; }
    .banner-subtitle { font-size: 1rem; }
    .badge-franja { font-size: 0.85rem; padding: 8px 18px; }
    
    .enlaces-gobierno-section { padding: 40px 0; }
    
    .enlaces-navegacion-container {
        flex-direction: column;
        gap: 15px;
        padding: 25px 15px;
    }
    
    .enlace-navegacion-item {
        width: 100%;
        justify-content: center;
    }
    
    .enlace-navegacion-item:not(:last-child)::after {
        display: none;
    }
    
    .enlace-navegacion-link {
        flex-direction: row;
        gap: 15px;
        padding: 15px 20px;
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }
    
    .enlace-icono-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .enlace-navegacion-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .visor-float {
        width: 130px;
        bottom: 20px;
        left: 20px;
    }
    
    .visor-tooltip {
        display: none;
    }

    .salud-mental-section { padding: 40px 0; }
    .salud-mental-content { padding: 30px 20px; }
    .salud-mental-title { font-size: 1.8rem; }
    .section-badge { font-size: 0.8rem; padding: 8px 18px; }
    .definition-card { padding: 25px; }
    .definition-text { font-size: 0.95rem; line-height: 1.7; }
    .point-item { padding: 12px; }
    .point-text strong { font-size: 1rem; }
    .point-text span { font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; }
    .btn-primary-custom, .btn-secondary-custom { width: 100%; justify-content: center; }
    .salud-mental-image { min-height: 400px; padding: 20px; }
    .institutional-mascot { max-height: 350px; }
    .float-item { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .carousel-item { 
        min-height: 250px; 
    }
    .slider-progress-bar { height: 3px; }
    .carousel-caption-custom { bottom: 40px; padding: 15px 20px; width: 95%; }
    .carousel-caption-custom h2 { font-size: 1.4rem; }
    .carousel-caption-custom p { font-size: 0.9rem; }
    
    .event-image { min-height: 400px; }
    .event-hashtags { justify-content: center; }
    .locations-grid { grid-template-columns: 1fr; }
    
    .project-image { height: 250px; }
    .overlay-content i { font-size: 2.5rem; }
    .overlay-content span { font-size: 1rem; }
    .projects-hashtags { gap: 10px; }
    .hashtag-large { font-size: 0.85rem; padding: 8px 15px; }
    
    .whatsapp-float { bottom: 15px; right: 15px; width: 55px; height: 55px; }
    .whatsapp-float i { font-size: 1.8rem; }

    .banner-title { font-size: 1.5rem; }
    .banner-badges { flex-direction: column; align-items: center; gap: 10px; }
    
    .enlaces-gobierno-section { padding: 30px 0; }
    .enlaces-navegacion-container { padding: 20px 10px; border-radius: 12px; }
    .enlace-navegacion-link { padding: 12px 15px; gap: 12px; }
    .enlace-icono-wrapper { width: 45px; height: 45px; font-size: 1.1rem; }
    .enlace-navegacion-text { font-size: 0.9rem; }
    
    .visor-float {
        width: 110px;
        bottom: 15px;
        left: 15px;
    }

    .salud-mental-title { font-size: 1.5rem; }
    .definition-card { padding: 20px; }
    .definition-text { font-size: 0.9rem; }
    .point-icon { width: 35px; height: 35px; font-size: 0.9rem; }
    .institutional-mascot { max-height: 280px; }
}

@media (max-width: 480px) {
    .banner-badges {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .badge-btn-foro {
        width: 100%;
        justify-content: center;
    }
}