body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0f172a;
}

/* Paleta de colores de iconos */
.color-orange {
    color: #f26522;
}

.bg-orange {
    background-color: #f26522;
}

.color-blue {
    color: #2a76f2;
}

.bg-blue {
    background-color: #2a76f2;
}

.color-green {
    color: #5cb85c;
}

.bg-green {
    background-color: #5cb85c;
}

.color-purple {
    color: #6a1b9a;
}

.bg-purple {
    background-color: #6a1b9a;
}

.color-pink {
    color: #e91e63;
}

.bg-pink {
    background-color: #e91e63;
}

/* Contraste mejorado del mapa de calor - Escala de Naranja Jecor */
.heat-0 {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* Inactivo */
.heat-1 {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
}

/* Muy bajo */
.heat-2 {
    background-color: #fed7aa;
}

/* Bajo */
.heat-3 {
    background-color: #fb923c;
}

/* Medio */
.heat-4 {
    background-color: #f26522;
}

/* Alto (Brand Orange) */
.heat-5 {
    background-color: #9a3412;
}

/* Máximo */

.package-card {
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
}

.star-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
    width: 100px;
    height: 100px;
}

.heatmap-grid-layout {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
}

.heatmap-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

/* Live Button Styles */
.live-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: #f26522;
    /* Jecor Orange */
    border: 1px solid #f26522;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(242, 101, 34, 0.2), 0 2px 4px -1px rgba(242, 101, 34, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.live-button:hover {
    transform: translateY(-2px);
    background-color: #ea580c;
    /* Darker orange on hover */
    box-shadow: 0 10px 15px -3px rgba(242, 101, 34, 0.3), 0 4px 6px -2px rgba(242, 101, 34, 0.2);
    border-color: #ea580c;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}