/* =========================================================================
   1. VARIABLES GLOBALES Y CONFIGURACIÓN (:root)
   ========================================================================= */
:root {
    --verde-oscuro: #1b4332;
    --verde-medio: #2d6a4f;
    --verde-acentuado: #40916c;
    --verde-claro: #e8f5e9;
    --gris-fondo: #f8f9fa;
    --negro: #081c15;
    --blanco: #ffffff;
    --fuente-moderna: 'Lexend', sans-serif;
    
    /* Variables de Sombreados Modernos */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(27, 67, 50, 0.08);
}

/* =========================================================================
   2. ESTILOS BASE Y CONTENEDORES GLOBALES
   ========================================================================= */
body {
    font-family: var(--fuente-moderna);
    margin: 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f4f9f4 0%, #e8f0e8 100%);
    background-attachment: fixed;
    color: var(--negro);
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================================================================
   3. HEADER & SECCIÓN DE INTRODUCCIÓN
   ========================================================================= */
.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
}

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-logo {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--blanco);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-container:hover .brand-logo {
    transform: scale(1.06) rotate(3deg);
}

.header-container h1 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
    color: var(--verde-oscuro);
    line-height: 1.1;
}

.header-container h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    letter-spacing: -0.2px;
}

/* Box Intro Premium con Íconos */
.intro-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 244, 0.9));
    border-left: 5px solid #2e7d32;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-icon {
    font-size: 1.2rem;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* =========================================================================
   4. SECCIÓN INFO-ACCENT (Caja Limpios y Secos)
   ========================================================================= */
.info-accent-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 5px solid var(--verde-acentuado);
    padding: 16px 22px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.info-accent-box p {
    margin: 4px 0;
    color: #2b4c3f;
    font-size: 0.95rem;
}

.info-accent-box p strong {
    color: var(--verde-oscuro);
    font-size: 1.05rem;
}

/* =========================================================================
   5. BUSCADOR Y BOTONES DE FILTRO PREMIUM
   ========================================================================= */
.search-filter-container {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#buscador {
    width: 100%;
    padding: 18px 26px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 1.05rem;
    font-family: var(--fuente-moderna);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#buscador:focus {
    border-color: var(--verde-medio);
    background: var(--blanco);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.12), var(--shadow-md);
    outline: none;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.5);
    color: #4a5568;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--fuente-moderna);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover:not(.active) {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 106, 79, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Estados Activos Inteligentes */
.btn-filter:nth-child(1).active {
    background: var(--verde-oscuro);
    color: var(--blanco);
    border-color: var(--verde-oscuro);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}
.btn-filter:nth-child(2).active {
    background: #2d6a4f;
    color: var(--blanco);
    border-color: #2d6a4f;
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.25);
}
.btn-filter:nth-child(3).active {
    background: #52796f;
    color: var(--blanco);
    border-color: #52796f;
    box-shadow: 0 8px 20px rgba(82, 121, 111, 0.25);
}
.btn-filter:nth-child(4).active {
    background: #d96b27;
    color: var(--blanco);
    border-color: #d96b27;
    box-shadow: 0 8px 20px rgba(217, 107, 39, 0.25);
}

.btn-filter i {
    pointer-events: none; 
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.btn-filter:hover:not(.active) i {
    transform: scale(1.1);
}

/* =========================================================================
   6. REJILLA Y TARJETAS PREMIUM (Cards Grid)
   ========================================================================= */
.grid-org { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); 
    gap: 30px; 
}

.card {
    background: var(--blanco);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border-left: 6px solid var(--verde-medio); 
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.09);
}

.card[data-categoria="reciclaje"] { border-left-color: #2d6a4f; }
.card[data-categoria="compostaje"] { border-left-color: #52796f; }
.card[data-categoria="especiales"] { border-left-color: #d96b27; }

.card-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #f4f7f5; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.card:hover .banner-img {
    transform: scale(1.04);
}

.banner-vector-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1rem;
    color: var(--blanco);
    background: rgba(8, 28, 21, 0.45); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover .banner-vector-icon {
    transform: scale(1.1) rotate(15deg);
    background: rgba(8, 28, 21, 0.65);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    background: var(--blanco);
    margin-top: -15px; 
    position: relative;
    z-index: 3;
}

.header-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-header h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    color: var(--negro);
    line-height: 1.2;
}

.org-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid var(--blanco); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Badges de Categoría */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}
.category-badge i { font-size: 0.75rem; }
.badge-reciclaje { background: #e8f5e9; color: #2d6a4f; }
.badge-compostaje { background: #f1f3ee; color: #4f6d41; }
.badge-especiales { background: #fdf2e9; color: #d96b27; }

.card-body { 
    padding: 15px 20px 22px 20px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}

/* Caja de Materiales Interna */
.card-materials {
    margin: 5px 0 10px 0;
    padding: 12px;
    background: #f8fcf9;
    border-radius: 12px;
    border: 1px solid #e2ece9;
}

.materials-label {
    font-weight: 700;
    color: var(--verde-oscuro);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-materials p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.info-p { margin: 6px 0; font-size: 0.95rem; line-height: 1.45; color: #444; }
.info-p i {
    color: var(--verde-acentuado);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}
.info-p .inline-clock { margin-left: 12px; color: #777; }

.geo-link, .whatsapp-link, .instagram-link {
    color: var(--negro);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}
.geo-link i { color: #ef4444; }
.geo-link:hover { color: var(--verde-medio); text-decoration: underline; }
.whatsapp-link:hover { color: #25d366; text-decoration: underline; }
.instagram-link:hover { color: #e1306c; }

/* =========================================================================
   6.1 ACORDEÓN DESPLEGABLE (Ecopuntos)
   ========================================================================= */
.contenedor-ecopuntos {
    margin: 12px 0 6px 0;
}

.btn-desplegar-jxb {
    width: 100%;
    background: rgba(45, 106, 79, 0.08); 
    color: var(--verde-oscuro);
    border: 1px solid rgba(45, 106, 79, 0.15);
    padding: 11px 16px;
    border-radius: 12px; 
    cursor: pointer;
    font-family: var(--fuente-moderna);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-desplegar-jxb:hover {
    background: rgba(45, 106, 79, 0.15);
    border-color: rgba(45, 106, 79, 0.3);
}

.btn-desplegar-jxb span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icono-flecha {
    font-size: 1.05rem;
    color: var(--verde-acentuado);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lista-sedes-jxb {
    background: rgba(248, 252, 249, 0.75);
    border: 1px dashed rgba(45, 106, 79, 0.2);
    border-top: none;
    padding: 15px 14px 8px 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    margin-top: -6px; 
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sede-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 10px;
    border-left: 3px solid var(--verde-acentuado);
}

.sede-item .geo-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--negro);
}

.sede-item .geo-link:hover { color: var(--verde-medio); }

.sede-horario {
    font-size: 0.8rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sede-horario i {
    color: #999;
    font-size: 0.85rem;
}

/* =========================================================================
   6.2 BOTÓN "VER MÁS" TEXTOS LARGOS (Efecto BUPLY)
   ========================================================================= */
.btn-ver-mas-materiales {
    background: none;
    border: none;
    color: var(--verde-acentuado);
    font-family: var(--fuente-moderna);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.2s ease;
}

.btn-ver-mas-materiales:hover {
    color: var(--verde-oscuro);
}

.materiales-texto-container {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

/* =========================================================================
   7. WIDGET DEL MAPA PREMIUM
   ========================================================================= */
.map-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--verde-oscuro); 
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    margin-top: 50px;
    margin-bottom: 50px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.map-header {
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.map-title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.map-title-icon {
    font-size: 1.2rem;
    color: var(--verde-oscuro);
    background: #e8f5e9;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    letter-spacing: -0.5px;
}

.map-header span {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 1px;
}

.map-container iframe {
    border: none !important;
    display: block;
    width: 100%;
    filter: grayscale(5%) contrast(95%); 
    transition: filter 0.3s ease;
}

.map-container:hover iframe { filter: none; }

/* =========================================================================
   8. FOOTER COMPLETO
   ========================================================================= */
.footer-box { 
    background: var(--negro); 
    color: var(--blanco); 
    padding: 45px 25px; 
    margin-top: 20px; 
    border-radius: 24px; 
    text-align: center; 
    box-shadow: var(--shadow-lg);
}

.footer-brand { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; color: var(--blanco); }
.footer-subtitle { font-size: 1rem; opacity: 0.8; margin-bottom: 25px; font-weight: 300; max-width: 400px; margin-left: auto; margin-right: auto; }
.footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 15px; }

.footer-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-icon:hover { transform: translateY(-5px); color: var(--blanco); }
.icon-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285ae5 90%); }
.icon-tiktok:hover { background-color: #000; box-shadow: -2px -2px 0 #00f2fe, 2px 2px 0 #fe0979; }
.icon-facebook:hover { background-color: #1877f2; }

.footer-hr { border: 0; border-top: 1px solid rgba(255,255,255,0.12); max-width: 150px; margin: 35px auto; }
.support-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #b7e4c7; }
.support-text { font-size: 0.92rem; opacity: 0.75; line-height: 1.5; margin: 0 0 25px 0; }

.btn-cafecito {
    background: #ff813f;
    color: var(--blanco);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 129, 63, 0.3);
    transition: all 0.2s ease;
}

.btn-cafecito:hover { transform: scale(1.04); box-shadow: 0 10px 25px rgba(255, 129, 63, 0.5); }
.footer-copy { font-size: 0.8rem; opacity: 0.4; margin-top: 45px; }

/* =========================================================================
   9. BANNER FLOTANTE DE INSTALACIÓN PWA
   ========================================================================= */
.install-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 24px;
    padding: 16px 20px;
    z-index: 999999;
    border: 1px solid rgba(255, 255, 255, 0.7);
    animation: sliderUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.install-content { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.install-text h4 { margin: 0 0 4px 0; font-size: 1.05rem; font-weight: 700; color: var(--verde-oscuro); }
#instrucciones-instalacion { margin: 0; font-size: 0.85rem; color: #555; line-height: 1.3; }
.install-actions { display: flex; align-items: center; gap: 14px; }

.btn-instalar-main {
    background: var(--verde-oscuro);
    color: var(--blanco);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-instalar-main:hover { background: var(--verde-medio); }
.btn-cerrar-x { background: none; border: none; font-size: 1.5rem; color: #aaa; cursor: pointer; }

@keyframes sliderUp {
    from { transform: translate(-50%, 120px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* =========================================================================
   10. AJUSTES RESPONSIVOS UNIFICADOS
   ========================================================================= */
@media (max-width: 600px) {
    body { padding: 15px 10px; }
    .header-container { padding: 12px 18px; gap: 14px; margin-bottom: 20px; justify-content: center; }
    .brand-logo { width: 55px; height: 55px; border-radius: 14px; border: 2px solid var(--blanco); }
    .header-container h1 { font-size: 1.6rem; }
    .header-container h2 { font-size: 0.85rem; }
    .grid-org { gap: 20px; }
    .map-container { border-radius: 20px; margin-top: 40px; margin-bottom: 40px; }
    .map-header { padding: 14px 18px; }
    .map-title-icon { width: 36px; height: 36px; font-size: 1.05rem; border-radius: 10px; }
    .map-header h3 { font-size: 1rem; }
    .map-header span { font-size: 0.78rem; }
    .map-container iframe { height: 320px; }
}

/* =========================================================================
   11. SECCIÓN DE NOVEDADES (SLIDER PREMIUM)
   ========================================================================= */
.novedades-section {
    margin-bottom: 35px;
    position: relative;
}

.novedades-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--verde-oscuro);
    margin: 0 0 15px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--blanco);
    border: 1px solid rgba(0, 0, 0, 0.05); 
    border-left: 5px solid var(--verde-medio); 
}

.slides-container {
    display: flex;
    width: 100%;
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.slides-container::-webkit-scrollbar {
    display: none;
}

.slide-item {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr; 
    background: var(--blanco);
}

@media (min-width: 768px) {
    .slide-item.con-imagen-flyer {
        grid-template-columns: 1.1fr 1fr;
    }
}

.novedades-col-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ffffff; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novedades-col-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 10px; 
    box-sizing: border-box;
}

.novedades-col-texto {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.novedades-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.novedades-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 850;
    color: var(--negro);
    line-height: 1.2;
}

.novedades-badge {
    padding: 5px 12px;
    border-radius: 30px;
    color: var(--blanco);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.novedades-col-texto p {
    margin: 0;
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.5;
}

.novedades-btn-accion {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--verde-medio);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(45, 106, 79, 0.15);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.novedades-btn-accion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 106, 79, 0.25);
    filter: brightness(0.95);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--verde-oscuro);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--blanco);
    color: var(--verde-medio);
    transform: translateY(-50%) scale(1.08);
}

.btn-prev { left: 15px; }
.btn-next { right: 15px; }

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
}

.indicator-dot.active {
    background: var(--blanco);
    transform: scale(1.25);
    width: 18px; 
    border-radius: 4px;
}

@media (max-width: 600px) {
    .novedades-section-title { font-size: 1.15rem; }
    .novedades-col-texto { padding: 18px; gap: 10px; }
    .novedades-header h4 { font-size: 1.1rem; }
    .slider-btn { width: 34px; height: 34px; font-size: 0.95rem; }
    .btn-prev { left: 8px; }
    .btn-next { right: 8px; }
}