
        :root {
            --salvia: #6B8E85;
            --arena: #EDEBE6;
            --blanco: #FAFAF7;
            --gris: #8B8B8B;
            --ink: #2F2F2F;
            --line: rgba(139, 139, 139, 0.25);
        }

        body {
            background-color: var(--arena);
            color: var(--ink);
            font-family: "Inter", system-ui, sans-serif;
        }


        /* Chips de Navegación */
        .nav-pills-custom {
            background-color: #fff;
            padding: 0.5rem;
            border-radius: 50px;
            display: inline-flex;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            margin-bottom: 3rem;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
        }

        .nav-pills-custom .nav-link {
            color: var(--gris);
            font-weight: 700;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            border: none;
            transition: all 0.2s ease;
            background: transparent;
        }

        .nav-pills-custom .nav-link:hover {
            color: var(--salvia);
            background-color: rgba(107, 142, 133, 0.05);
        }

        .nav-pills-custom .nav-link.active {
            background-color: var(--salvia);
            color: #fff;
            box-shadow: 0 4px 10px rgba(107, 142, 133, 0.3);
        }

        /* =========================================
           BOTONES TIPO BLOQUE (1 SOLO COLOR)
           ========================================= */
        .tab-pane { animation: fadeIn 0.4s ease-out; }

        .btn-result-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 1.2rem 1rem;
            
            /* COLOR ÚNICO SÓLIDO (Arena) */
            background-color: var(--blanco); 
            color: var(--ink);
            
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 12px;
            
            /* Sin bordes laterales diferenciados */
            border: 1px solid transparent; 
            
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        .btn-result-grid:hover {
            /* Cambio a color sólido Salvia en hover */
            background-color: var(--salvia); 
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(107, 142, 133, 0.4);
        }

        .month-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        .month-header h3 {
            background-color: var(--arena);
            display: inline-block;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            color: var(--salvia);
            font-weight: 800;
        }
        .month-header::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            border-bottom: 1px solid var(--line);
            z-index: 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
  