/* Estilos para o banner de garantia no topo */
.top-guarantee-banner {
    background-color: #1e6f5c;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.top-guarantee-banner i {
    margin-right: 8px;
    font-size: 1.2em;
}

.top-guarantee-banner strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Estilos para a seção de garantia destacada no início */
.hero-guarantee {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px dashed #ff6b35;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.hero-guarantee .seal {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.hero-guarantee .content h3 {
    color: #1e6f5c;
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.hero-guarantee .content p {
    margin-bottom: 0;
    font-weight: 500;
}

.hero-guarantee .content strong {
    color: #ff6b35;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
    .hero-guarantee {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .hero-guarantee .seal {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-guarantee .content h3 {
        font-size: 1.1rem;
    }
}

/* Animação de destaque para a garantia */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.hero-guarantee {
    animation: pulseGlow 2s infinite;
}
