/**
 * Estilos específicos para destacar o preço do serviço
 */

.price-highlight {
    display: inline-block;
    position: relative;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #450fe1, #7c4dff);
    animation: pulse-pricing 2s infinite;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.price-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.7);
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.5px;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Efeito de brilho em volta do preço */
.price-highlight::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(135deg, #8a2be2, #4166f5, #00bfff);
    border-radius: 10px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: glow-pricing 3s ease-in-out infinite alternate;
}

/* Animação de pulsar para o preço */
@keyframes pulse-pricing {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 77, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(124, 77, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 77, 255, 0);
    }
}

/* Animação de brilho para o efeito de fundo */
@keyframes glow-pricing {
    0% {
        opacity: 0.5;
        filter: blur(8px);
    }
    100% {
        opacity: 0.8;
        filter: blur(12px);
    }
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .price-value {
        font-size: 2rem;
    }
    
    .price-period {
        font-size: 0.9rem;
    }
    
    .price-highlight {
        padding: 8px 15px;
    }
}