* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e6f3c;
    --primary-dark: #0b3b1f;
    --secondary: #ffc107;
    --accent: #17a2b8;
    --text-dark: #1e3a2f;
    --bg-light: #f4f9f4;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.logo h1 i {
    color: var(--secondary);
    margin-right: 10px;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-admin {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-admin:hover {
    background: var(--white);
    color: var(--primary);
}

.hero {
    background: linear-gradient(rgba(30,111,60,0.9), rgba(11,59,31,0.9)), url('https://via.placeholder.com/1920x400?text=Salud+Tierralta');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.info-contacto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--white);
}

.contacto h3, .horarios h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu {
    background: var(--primary-dark);
    text-align: center;
    padding: 1rem;
    position: sticky;
    top: 85px;
    z-index: 999;
}

.menu a {
    color: var(--white);
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu a:hover {
    color: var(--secondary);
}

.servicios {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.servicios h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-detalles {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-detalles:hover {
    background: var(--primary-dark);
}

.galeria {
    padding: 4rem 2rem;
    background: var(--white);
}

.galeria h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.galeria-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.contacto-section {
    padding: 4rem 2rem;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.contacto-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contacto-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contacto-section .info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contacto-section .info i {
    margin-right: 10px;
    color: var(--secondary);
}
/* ============================================
   REDES SOCIALES - ICONOS GRANDES
   ============================================ */

.redes-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.redes-sociales a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(243, 244, 250, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 30%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 14px rgba(3, 156, 10, 0.15);
}

.redes-sociales a i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

/* Efecto hover */
.redes-sociales a:hover {
    transform: translateY(-5px) scale(1.1);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Colores al hacer hover */
.redes-sociales a:hover .fa-facebook {
    color: #111b22;
}

.redes-sociales a:hover .fa-instagram {
    color: #a2b151;
}

.redes-sociales a:hover .fa-whatsapp {
    color: #9abda7;
}
/* Aumentar tamaño de todos los iconos de redes sociales */
.redes-sociales a i {
    font-size: 2.5rem;
}

/* O para un tamaño específico por red social */
.redes-sociales a .fa-facebook {
    font-size: 2.5rem;
    color: #1877F2;
}

.redes-sociales a .fa-instagram {
    font-size: 2.5rem;
    color: #E4405F;
}

.redes-sociales a .fa-whatsapp {
    font-size: 2.5rem;
    color: #1e6f3c;
}


/* Responsive */
@media (max-width: 768px) {
    .redes-sociales a {
        width: 55px;
        height: 55px;
    }
    
    .redes-sociales a i {
        font-size: 1.8rem;
    }
    
    .redes-sociales {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .redes-sociales a {
        width: 48px;
        height: 48px;
    }
    
    .redes-sociales a i {
        font-size: 1.5rem;
    }
}
/* Versión responsive para móviles */
@media (max-width: 768px) {
    .redes-sociales a {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .redes-sociales {
        gap: 1rem;
    }
}

.redes-sociales {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.redes-sociales a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.redes-sociales a:hover {
    color: var(--secondary);
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .menu {
        position: static;
    }
    
    .menu a {
        display: inline-block;
        margin: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .servicios-grid, .galeria-grid {
        grid-template-columns: 1fr;
    }
}

/* Botones PQR */
.pqr-buttons {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pqr-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pqr-container h2 {
    color: #1e6f3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pqr-container > p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.pqr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pqr-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #1e3a2f;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pqr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.pqr-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.pqr-card:nth-child(1) i { color: #1e6f3c; }
.pqr-card:nth-child(2) i { color: #25D366; }
.pqr-card:nth-child(3) i { color: #dc3545; }
.pqr-card:nth-child(4) i { color: #17a2b8; }

.pqr-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pqr-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.pqr-card span {
    color: #1e6f3c;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive slider */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        bottom: 20%;
        left: 5%;
        right: 5%;
        padding: 1rem;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .pqr-grid {
        grid-template-columns: 1fr;
    }
}
/* Botones personalizables */
.botones-custom {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.botones-container {
    max-width: 1200px;
    margin: 0 auto;
}

.botones-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.boton-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.boton-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    filter: brightness(1.05);
}

.boton-custom i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .botones-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .boton-custom {
        justify-content: center;
    }
}
/* Header con solo logo */
header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 70px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .logo-placeholder i {
        font-size: 1.8rem;
    }
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1e3a2f;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1e3a2f;
}

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

/* Animación de pulsación */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Versión responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
/* Estilos para videos en galería */
.galeria-item iframe,
.galeria-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: none;
}

.galeria-item iframe {
    pointer-events: none;
}

.galeria-item:hover iframe {
    pointer-events: auto;
}

.badge-video {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.galeria-categoria {
    display: inline-block;
    background: #e8f0e8;
    color: #1e6f3c;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
}
/* ============================================
   SLIDER RESPONSIVE - IMÁGENES COMPLETAS
   ============================================ */

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    background: #1e3a2f;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Contenedor de imagen - AUTO AJUSTABLE */
.slide-imagen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* IMAGEN - SE AJUSTA AUTOMÁTICAMENTE SIN DEFORMARSE */
.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

/* Overlay para mejorar legibilidad del texto */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

/* Contenido del slide - centrado y responsive */
.slide-content {
    position: absolute;
    bottom: 25%;
    left: 10%;
    right: 10%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    max-width: 550px;
    text-align: center;
    animation: slideUp 0.8s ease-out;
    border-left: 4px solid var(--color-secundario, #ffc107);
    z-index: 2;
}

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

.slide-content h2 {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-slide {
    display: inline-block;
    background: var(--color-secundario, #ffc107);
    color: #1e3a2f;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.btn-slide:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Botones de navegación */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots indicadores */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-secundario, #ffc107);
    width: 30px;
    border-radius: 10px;
}

/* ============================================
   RESPONSIVE - DIFERENTES TAMAÑOS DE PANTALLA
   ============================================ */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .slider-container {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content {
        bottom: 20%;
        left: 8%;
        right: 8%;
        padding: 1.5rem 2rem;
        max-width: 500px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content {
        bottom: 15%;
        left: 5%;
        right: 5%;
        padding: 1rem 1.5rem;
        max-width: 90%;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content {
        bottom: 10%;
        padding: 0.8rem 1rem;
    }
    
    .slide-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Pantallas muy grandes (4K) */
@media (min-width: 1920px) {
    .slider-container {
        height: 900px;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .btn-slide {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .slider-container {
        height: 85vh;
        min-height: 350px;
    }
    
    .slide-content {
        bottom: 10%;
        padding: 0.5rem 1rem;
    }
    
    .slide-content h2 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .slide-content p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-slide {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
}
/* Ventanas Emergentes (Popups) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.popup-centro {
    position: relative;
}

.popup-esquina {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
    transform: none;
    animation: slideInRight 0.3s ease;
}

.popup-esquina .popup-overlay {
    background: transparent;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--color-primario, #1e6f3c);
    color: white;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.popup-close:hover {
    transform: scale(1.1);
    background: none;
}

.popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.popup-body img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-body iframe,
.popup-body video {
    width: 100%;
    border: none;
}

.popup-texto h3 {
    color: var(--color-primario, #1e6f3c);
    margin-bottom: 0.5rem;
}

.popup-texto p {
    color: #666;
    line-height: 1.5;
}

.popup-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
}

.popup-btn {
    display: inline-block;
    background: var(--color-primario, #1e6f3c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.popup-btn:hover {
    background: var(--color-footer, #0b3b1f);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .popup {
        width: 90vw !important;
        max-height: 80vh;
    }
    
    .popup-header h3 {
        font-size: 0.9rem;
    }
    
    .popup-esquina {
        bottom: 10px;
        right: 10px;
        width: 85vw !important;
    }
}
