.service-highlight {
    display: inline-block;
    position: relative;
    margin: 0 5px;
    padding: 5px 15px;
    border-radius: 8px;
    transform: scale(1.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.service-highlight:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Cores harmonizadas com o tema roxo escuro e vermelho do Market Frame */
.videos-highlight {
    background: linear-gradient(135deg, #e63946 0%, #9d0208 100%);
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trafego-highlight {
    background: linear-gradient(135deg, #480ca8 0%, #3f37c9 100%);
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-highlight {
    background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-highlight {
    background: linear-gradient(135deg, #b5179e 0%, #7209b7 100%);
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0% {
        transform: scale(1.1) translateY(0px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        transform: scale(1.1) translateY(0px);
    }
}

.hero h2 {
    line-height: 1.8;
    margin: 1.5rem 0;
    font-size: 2.2rem;
}

.hero-title-container {
    margin: 2rem 0;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e63946;
    color: white;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.service-icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 1.2em;
}

.oferta-mes {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #e63946 0%, #9d0208 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem 0;
    transform: rotate(-2deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(-2deg);
    }
    50% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(-2deg);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    margin-top: 2rem;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.cta-button:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(230, 57, 70, 0.5);
}
