/* Font Awesome Fallback - Ícones essenciais usando Unicode */

/* Ícones principais */
.fa-car-wash::before { content: "🚗"; }
.fa-sparkles::before { content: "✨"; }
.fa-whatsapp::before { content: "📱"; }
.fa-chevron-down::before { content: "▼"; }

/* Estrelas coloridas para serviços */
.fa-star::before { 
    content: "⭐"; 
    display: block;
    text-align: center;
    line-height: 1;
}

/* Estrelas específicas por cor */
.bronze-star::before { 
    content: "🥉"; 
    display: block;
    text-align: center;
    line-height: 1;
}
.silver-star::before { 
    content: "🥈"; 
    display: block;
    text-align: center;
    line-height: 1;
}
.gold-star::before { 
    content: "🥇"; 
    display: block;
    text-align: center;
    line-height: 1;
}
.diamond-star::before { 
    content: "💎"; 
    display: block;
    text-align: center;
    line-height: 1;
}

/* Novos ícones de carro para serviços */
.fa-car::before { content: "🚗"; }
.fa-car-side::before { content: "🚙"; }
.fa-car-rear::before { content: "🏎️"; }
.fa-car-battery::before { content: "🔋"; }

/* Ícones antigos (mantidos para compatibilidade) */
.fa-medal::before { content: "🥉"; }
.fa-crown::before { content: "👑"; }
.fa-gem::before { content: "💎"; }
.fa-check::before { content: "✓"; }
.fa-home::before { content: "🏠"; }
.fa-clock::before { content: "⏰"; }
.fa-shield-alt::before { content: "🛡️"; }
.fa-leaf::before { content: "🌿"; }
.fa-instagram::before { content: "📷"; }
.fa-phone::before { content: "📞"; }
.fa-map-marker-alt::before { content: "📍"; }

/* Classes base do Font Awesome */
.fas, .far, .fab {
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    width: 1em;
    text-align: center;
    line-height: 1;
}

/* Fallback para ícones não encontrados */
.fa-*::before {
    content: "●";
    color: var(--primary-yellow);
} 