/*
Theme Name: RF Engenharia
Theme URI: https://rfengenhariapm.com.br/
Author: Silvanio Junior
Author URI: https://rfengenhariapm.com.br/
Description: RF Engenharia - Saúde Ocupacional e Segurança do Trabalho
Version: 1.0.0
*/

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background-color: #f8fafc;
}
.hero-bg {
    background-color: #23372B; /* Verde escuro */
    background-image: radial-gradient(circle at top right, rgba(177, 201, 103, 0.15), transparent 40%);
}
.cta-button {
    transition: all 0.3s ease;
    background-color: #B1C967;
    border: none;
    color: #23372B;
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #23372B;
    color: #fff;
}
/* Animação */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    opacity: 0;
}
.fade-in-up.visible {
     animation: fadeInUp 0.8s ease-out forwards;
}
/* Estilo para abas de soluções */
.tab-button.active {
    background-color: #B1C967;
    color: #23372B;
}
/* Estilo para cards de serviços */
.service-card {
    transition: all 0.3s ease;
    border-left: 4px solid #B1C967;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #23372B;
}
/* Títulos principais */
h1, h2, h3, h4, h5, h6 {
    color: #23372B;
}
/* Títulos em fundo escuro */
.bg-gray-700 h2, .bg-gray-700 h3, .bg-gray-800 h2, .bg-gray-800 h3 {
    color: #fff !important;
}
/* Textos secundários */
.text-gray-600, .text-gray-400, .text-gray-300 {
    color: #AEB7A9 !important;
}
/* Ícones */
.icon-green {
    color: #B1C967 !important;
}
.icon-dark {
    color: #23372B !important;
}
/* Fundo dos círculos das NRs */
.bg-nr-circle {
    background-color: #eaf2d0 !important;
    color: #B1C967 !important;
}
/* Texto preto na seção Sobre Nós */
#sobre, #sobre p, #sobre h2, #sobre span, #sobre .text-gray-600 {
    color: #222 !important;
} 