/* ==========================================================================
   1. ESTILOS GERAIS E RESET
   ========================================================================== */

/* Reset básico para remover margens e paddings padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garantir que o body ocupe toda a altura da tela */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    font-family: Arial, sans-serif;
    flex-direction: column;
}

/* O main deve crescer para ocupar o espaço disponível */
main {
    flex: 1;
}


/* ==========================================================================
   2. LAYOUT E CLASSES UTILITÁRIAS
   ========================================================================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    /* --- CORREÇÃO ADICIONADA AQUI --- */
    display: inline-block; /* Garante que o 'transform' funcione em links <a> */
    background-color: #0e630e;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Adicionada a transição do transform aqui também */
}

.btn-primary:hover {
    background-color: #11a011;
}


/* ==========================================================================
   3. COMPONENTES GERAIS (HEADER, BANNER, SERVIÇOS, FOOTER)
   ========================================================================== */

/* ----------------------------------------------------
  Cabeçalho Modernizado
---------------------------------------------------- */
header {
    background-color: rgba(255, 255, 255, 1);
    padding: 3px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: top 0.4s ease-in-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-placeholder {
    height: 105px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

header .logo:hover img {
    transform: scale(1.05);
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav ul li a {
    position: relative;
    color: #059600;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 5px 0;
}

header nav ul li a:hover {
    color: #3dce3d;
}

header nav ul li a:not(.btn-agendamento):not(.link-acompanhar)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #3dce3d;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

header nav ul li a:not(.btn-agendamento):not(.link-acompanhar):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

header nav ul li a.btn-agendamento {
    background-color: #0e630e;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

header nav ul li a.btn-agendamento:hover {
    background-color: #11a011;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 99, 14, 0.2);
}

header nav ul li a.link-acompanhar {
    text-decoration: underline;
    font-weight: bold;
    color: #0e630e;
}

header nav ul li a.link-acompanhar:hover {
    color: #059600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #059600;
}

/* ----------------------------------------------------
  Banner Modernizado
---------------------------------------------------- */

.banner {
    position: relative;
    color: #ffffff;
    padding: 150px 20px;
    text-align: center;
    z-index: 1;
    overflow: hidden; 
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1; 
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images_css/banner2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner h1,
.banner p,
.banner .btn-primary {
    position: relative;
    z-index: 2; 
    animation: fadeInAnimation 0.8s ease-out forwards;
}

.banner h1 {
    font-size: 2.8rem; 
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.banner p {
    font-size: 1.3rem; 
    margin-bottom: 30px;
    animation-delay: 0.2s; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
}

.banner .btn-primary {
    /* Valores antigos de padding eram 15px 30px e font-size era 1rem (padrão) */
    padding: 18px 38px; /* Aumentado para dar mais preenchimento */
    font-size: 1.1rem;  /* Aumentado para o texto ficar um pouco maior */
    animation-delay: 0.4s;
    opacity: 0;
}

.banner .btn-primary:hover {
    transform: scale(1.05);
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESTANTE DO CÓDIGO PERMANECE O MESMO */
/* ----------------------------------------------------
  Seção de Serviços Modernizada
---------------------------------------------------- */
.servicos {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.servicos h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    /* ALTERADO: Título com gradiente para um visual mais impactante */
    background: linear-gradient(45deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.servicos-textos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.servico-texto {
    background-color: #ffffff;
    padding: 25px;
    /* ALTERADO: Bordas levemente mais arredondadas */
    border-radius: 12px;
    /* ALTERADO: Sombra mais suave e sutil */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    /* NOVO: Borda sutil para melhor definição */
    border: 1px solid #f0f0f0;
    /* NOVO: Transição suave para o efeito de hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* NOVO: Efeito de elevação no card ao passar o mouse */
.servico-texto:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(46, 139, 87, 0.1);
}

.servico-texto h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2E8B57;
    /* NOVO: Adiciona posicionamento para o elemento decorativo */
    position: relative;
    padding-left: 15px;
}

/* NOVO: Elemento decorativo para o título do serviço */
.servico-texto h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: #2E8B57;
    border-radius: 2px;
}

.servico-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* --- Estilos do Carrossel (Mobile) --- */

.carrossel-textos-container {
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carrossel-textos-slide {
    display: flex;
    transition: transform 0.5s ease-in-out; /* ALTERADO: Transição mais suave */
    width: 100%;
}

.carrossel-texto {
    flex: 0 0 100%;
    box-sizing: border-box;
    min-height: 400px;
}

.carrossel-texto h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E8B57;
}

.carrossel-texto p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.carrossel-textos-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8); /* ALTERADO: Fundo mais limpo */
    color: #2E8B57; /* ALTERADO: Ícone com a cor principal */
    border: 1px solid #eee; /* NOVO: Borda sutil */
    width: 45px; /* NOVO: Botão ligeiramente maior */
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carrossel-textos-btn:hover {
    background-color: #2E8B57;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3); /* NOVO: Sombra no hover */
}

.carrossel-textos-btn.prev { left: 15px; } /* ALTERADO: Pequeno ajuste de posição */
.carrossel-textos-btn.next { right: 15px; }

.carrossel-textos-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carrossel-textos-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2E8B57; /* ALTERADO: Usa a cor principal */
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4; /* ALTERADO: Indicadores inativos ficam semitransparentes */
}

.carrossel-textos-indicators .indicator.active {
    opacity: 1; /* ALTERADO: Indicador ativo fica opaco */
    transform: scale(1.2);
}

/* Carrossel de Imagens */
.carrossel-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carrossel-slide {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrossel-imagem {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.carrossel-imagem img {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 15px;
    object-fit: cover;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 139, 87, 0.9);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carrossel-btn:hover {
    background-color: rgba(46, 139, 87, 1);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.prev { left: 10px; }
.carrossel-btn.next { right: 10px; }

.carrossel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carrossel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-indicators .indicator.active {
    background-color: #2E8B57;
    transform: scale(1.2);
}

/* ----------------------------------------------------
   Rodapé
   ---------------------------------------------------- */
.footer {
    background-color: #06200e;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 120px;
}

.footer-contato {
    text-align: left;
}

.footer-contato p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-contato i {
    color: #3dce3d;
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-redes {
    display: flex;
    align-items: center;
}

.footer-redes img {
    width: 45px;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-redes img:hover {
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 9px;
    color: #bdc3c7;
}


/* ==========================================================================
   4. ESTILOS ESPECÍFICOS DE PÁGINAS
   ========================================================================== */

/* ----------------------------------------------------
   Página: Sobre Nós
   ---------------------------------------------------- */
.sobre-nos {
    padding: 60px 0;
    background-color: #ffffff;
}

.sobre-nos h1 {
    font-size: 2.5rem;
    color: #2E8B57;
    text-align: center;
    margin-bottom: 20px;
}

.sobre-nos .subtitulo {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.sobre-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.sobre-texto {
    flex: 1;
    min-width: 300px;
}

.sobre-texto h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sobre-imagem {
    flex: 1;
    min-width: 300px;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sobre-missao, .sobre-valores {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.sobre-missao h2, .sobre-valores h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 20px;
}

.sobre-missao p, .sobre-valores p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.sobre-valores ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sobre-valores ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.sobre-valores ul li::before {
    content: "✔";
    color: #2E8B57;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sobre-valores ul li strong {
    color: #2E8B57;
    font-weight: 600;
}

.sobre-equipe {
    text-align: center;
    margin-bottom: 60px;
}

.sobre-equipe h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 40px;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.membro {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membro:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.membro img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.membro h3 {
    font-size: 1.5rem;
    color: #2E8B57;
    margin-bottom: 10px;
}

.membro p {
    font-size: 1rem;
    color: #555;
}

/* ----------------------------------------------------
   Páginas com Formulário (Modernizado)
   ---------------------------------------------------- */
.agendamento,
.acompanhar-pedido {
    padding: 60px 0;
    background-color: #fcfcfc; /* ALTERADO: Um branco um pouco mais suave */
}

.agendamento h1,
.acompanhar-pedido h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    /* ALTERADO: Título com gradiente para consistência visual */
    background: linear-gradient(45deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agendamento .subtitulo,
.acompanhar-pedido .subtitulo {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* --- Estilos de Formulário Modernizados --- */
.form-group {
    margin-bottom: 25px; /* ALTERADO: Um pouco mais de espaço */
}

.form-group label {
    display: block;
    font-size: 1rem; /* ALTERADO: Levemente menor para hierarquia */
    color: #444;    /* ALTERADO: Cor um pouco mais suave */
    margin-bottom: 8px;
    font-weight: 600; /* NOVO: Deixa o label com mais destaque */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px; /* ALTERADO: Mais espaçamento interno (mais "respiro") */
    font-size: 1rem;
    border: 1px solid #e0e0e0; /* ALTERADO: Borda inicial mais sutil */
    border-radius: 8px;       /* ALTERADO: Bordas mais suaves */
    outline: none;
    background-color: #ffffff;
    color: #333;
    /* NOVO: Transição suave para o efeito de foco */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* NOVO: Efeito de "Glow" ao focar em um campo */
.form-group input:focus,
.form-group select:focus {
    border-color: #2E8B57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

/* --- Específicos do Agendamento --- */
.agendamento-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.agendamento-info,
.agendamento-formulario {
    flex: 1;
    min-width: 300px;
}

.agendamento-formulario .btn-primary {
    width: 100%;                  /* Faz o botão ocupar toda a largura do formulário */
    padding: 15px;                /* Aumenta o espaçamento interno, tornando-o maior */
    font-size: 1.1rem;            /* Aumenta um pouco o tamanho da letra */
    margin-top: 15px;             /* Adiciona um espaço acima do botão, empurrando-o para baixo */
    font-weight: bold;
}

.agendamento-formulario {
    background-color: #ffffff;
    padding: 40px; /* ALTERADO: Mais espaçamento interno */
    border-radius: 12px; /* ALTERADO: Bordas mais suaves */
    /* ALTERADO: Sombra mais profissional e suave */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
}

.agendamento-info h2,
.agendamento-formulario h2 {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 20px;
}

.agendamento-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- NOVO: Estilos para Rádio Buttons Personalizados --- */
.contato-opcoes {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

/* Esconde o rádio button padrão do navegador */
.contato-opcoes input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.contato-opcoes label {
    display: inline-flex; /* Alterado para inline-flex */
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #555;
    position: relative;
    cursor: pointer;
}

/* Cria o círculo externo do nosso rádio button */
.contato-opcoes label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Cria o ponto interno (inicialmente invisível) */
.contato-opcoes label::after {
    content: '';
    position: absolute;
    display: block;
    left: 7px; /* Centraliza o ponto */
    top: 7px;  /* Centraliza o ponto */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: scale(0);
    transition: transform 0.2s ease;
}

/* Estilos quando o rádio button está selecionado (checked) */
.contato-opcoes input[type="radio"]:checked + label::before {
    background-color: #2E8B57;
    border-color: #2E8B57;
}

.contato-opcoes input[type="radio"]:checked + label::after {
    transform: scale(1);
}

/* Efeito de foco para acessibilidade */
.contato-opcoes input[type="radio"]:focus + label::before {
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

/* Específicos de Acompanhar Pedido */
#form-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

#form-acompanhar {
    max-width: 500px;
    margin: 0 auto;
}

#form-acompanhar .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

#form-acompanhar .btn-primary i {
    margin-right: 8px;
}

.resultado-pedido {
    margin-top: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.resultado-pedido h3 {
    text-align: center;
    color: #2E8B57;
    margin-bottom: 40px;
}

.resultado-pedido p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.erro {
    color: #ff0000;
    font-weight: bold;
}

.timeline-container {
    position: relative;
    width: 100%;
    margin: 50px 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative; /* Para a linha de fundo */
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0%; /* Controlado via JS */
    height: 4px;
    background-color: #0e630e;
    z-index: 2;
    transition: width 0.8s ease-in-out;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 3;
}

.timeline-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 3px solid #ccc;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 10px auto;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s;
}

.timeline-step-label {
    font-size: 0.9rem;
    color: #666;
}

.timeline-step.completed .timeline-step-icon {
    background-color: #0e630e;
    border-color: #0e630e;
    color: #ffffff;
}

.timeline-step.completed .timeline-step-label {
    font-weight: bold;
    color: #0e630e;
}

.timeline-step.active .timeline-step-icon {
    background-color: #3dce3d;
    border-color: #0e630e;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(61, 206, 61, 0.7);
}

.timeline-step.active .timeline-step-label {
    font-weight: bold;
    color: #059600;
}

#status-detalhes {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #333;
}

.detalhe-status {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa; /* Um cinza bem claro */
    border-left: 4px solid #2E8B57; /* Destaque na cor do site */
    color: #495057; /* Cor do texto mais escura */
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0 5px 5px 0;
}

.detalhe-status i {
    margin-right: 8px;
    color: #2E8B57;
}


/* ==========================================================================
   5. MEDIA QUERIES (ESTILOS RESPONSIVOS)
   ========================================================================== */

@media (max-width: 768px) {

    /* --- AJUSTES DE TAMANHO DO CABEÇALHO MOBILE --- */
    header .logo img {
        max-height: 65px;
    }
    .menu-toggle {
        font-size: 2rem;
    }

    /* --- NAVEGAÇÃO MOBILE --- */
    .menu-toggle {
        display: block;
    }
    header nav ul {
        display: none;
    }
    .nav-list {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-list.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-list a {
        text-align: left;
        padding: 10px 20px;
        text-decoration: none;
        color: #059600;
        display: block;
        width: 100%;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    .nav-list a:hover {
        color: #3dce3d;
    }
    
    /* --- BANNER RESPONSIVO --- */
    .banner {
        padding: 80px 20px;
    }
    .banner h1 {
        font-size: 2rem;
    }
    .banner p {
        font-size: 1rem;
    }

    /* --- SERVIÇOS RESPONSIVO --- */
    .servicos-textos {
        display: none;
    }
    .carrossel-textos-container {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        height: auto;
        max-height: 350px;
    }
    .carrossel-texto {
        padding: 40px 30px;
        min-height: 400px;
    }
    .carrossel-texto h3 {
        font-size: 2rem;
    }
    .carrossel-texto p {
        font-size: 1.3rem;
    }
    .carrossel-textos-btn {
        width: 25px;
        height: 25px;
        font-size: 1.1rem;
    }
    .carrossel-textos-btn.prev { left: 2px; }
    .carrossel-textos-btn.next { right: 2px; }
    .carrossel-textos-indicators .indicator {
        width: 7px;
        height: 7px;
    }
    .servicos h2 {
        margin-bottom: 20px;
    }
    .carrossel-container {
        margin-top: 20px;
    }
    .carrossel-imagem img {
        height: 400px;
    }
    .carrossel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .carrossel-indicators .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* --- FOOTER RESPONSIVO --- */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-contato p {
        overflow-wrap: break-word;
        word-wrap: break-word;
        justify-content: center;
    }
    .footer-redes {
        justify-content: center;
        margin-top: 12px;
    }

    /* --- PÁGINAS ESPECÍFICAS RESPONSIVAS --- */
    /* Sobre Nós */
    .sobre-conteudo {
        flex-direction: column;
        text-align: center;
    }
    .sobre-texto, .sobre-imagem {
        min-width: 100%;
    }
    .sobre-texto h2 {
        font-size: 1.8rem;
    }
    .sobre-texto p {
        font-size: 1rem;
    }
    .sobre-missao, .sobre-valores {
        padding: 20px;
    }
    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Timeline Responsiva (VERTICAL) */
    .timeline-container {
        position: relative;
        margin: 30px 0;
    }
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 23px;
        width: 4px;
        height: calc(100% - 20px);
        background-color: #e0e0e0;
        z-index: 1;
    }
    .timeline-progress {
        width: 4px;
        height: 0;
        left: 23px;
        top: 10px;
        z-index: 2;
    }
    .timeline::before {
        display: none;
    }
    .timeline {
        display: block;
    }
    .timeline-step {
        position: relative;
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
        padding-left: 70px; 
    }
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    .timeline-step-icon {
        position: absolute;
        left: 0;
        top: 0;
        margin-right: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        z-index: 3;
    }
    .timeline-step-label {
        padding-top: 12px;
        font-size: 1rem;
    }
}