/* Variáveis de cores baseadas na paleta */
:root {
    --preto-profundo: #000000;
    --amarelo-queimado: #FFBA30;
    --laranja-vibrante: #FF5C1C;
    --pessego-claro: #FFBEA5;
    --vermelho-intenso: #D90000;
    --cinza: #A0A0A0;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E0E0E0;
    --azul-escuro: #1A237E;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--preto-profundo);
    background-color: var(--branco);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    color: var(--preto-profundo);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--laranja-vibrante);
    margin: 15px auto 0;
}

section {
    padding: 80px 0;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 50px; /* Mantém a altura do contêiner do logo */
    display: flex;
    align-items: center;
}

.logo img {
    /* Ajustado para controlar o tamanho do logo de forma mais robusta */
    max-height: 50px; /* Limita a altura máxima da imagem */
    width: auto;       /* Mantém a proporção da imagem */
    height: auto;      /* Garante que a altura se ajuste à largura se for menor que max-height */
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--laranja-vibrante);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--amarelo-queimado);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex; /* Alterado para flex para alinhar ícone e texto */
    align-items: center; /* Alinha o ícone e o texto verticalmente */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 8px; /* Espaçamento entre o ícone e o texto */
}

.cta-button:hover {
    background-color: var(--laranja-vibrante);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--preto-profundo);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 8px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--branco);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button-large {
    background: linear-gradient(to right, var(--laranja-vibrante), var(--vermelho-intenso));
    color: var(--branco);
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    background: linear-gradient(to right, var(--vermelho-intenso), var(--laranja-vibrante));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Quem Somos */
.quem-somos {
    background-color: var(--branco);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--cinza-claro);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--laranja-vibrante);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--preto-profundo);
}

/* Missão & Valores - Ajustes de Distribuição de Espaço */
.missao-valores {
    background-color: var(--cinza-claro);
}

/* Garante que o content-wrapper dentro de missao-valores distribua corretamente seus filhos */
.missao-valores .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    gap: 2rem; /* Espaço entre a caixa de missão e a caixa de valores */
    justify-content: center; /* Centraliza os itens quando há espaço extra */
    align-items: flex-start; /* Alinha os itens ao topo */
}

.missao-box {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1; /* Permite que a caixa de missão cresça */
    min-width: 300px; /* Largura mínima para a caixa de missão */
    max-width: 45%; /* Limita a largura para permitir duas colunas com gap */
    transition: all 0.3s ease; /* Adiciona transição para o hover */
}

.missao-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.valores-box {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 2; /* Permite que a caixa de valores cresça mais que a de missão, ocupando mais espaço */
    min-width: 350px; /* Largura mínima para a caixa de valores */
    max-width: 50%; /* Limita a largura para que possa ficar ao lado da caixa de missão */
    transition: all 0.3s ease; /* Adiciona transição para o hover */
}

.valores-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}


.missao-box h3 {
    color: var(--laranja-vibrante);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
}

.valores-list {
    display: grid;
    grid-template-columns: 1fr; /* Padrão para uma única coluna no mobile */
    gap: 1.5rem;
}

/* Para telas maiores, exibe os itens da lista de valores em múltiplas colunas, se possível */
@media (min-width: 769px) {
    .valores-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 2 ou mais colunas dentro da caixa de valores */
    }
}

.valores-box h3 { /* Estilo específico para o título da caixa de valores, se necessário */
    color: var(--laranja-vibrante);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
}


/* Diferenciais */
.diferenciais {
    background-color: var(--branco);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--cinza-claro);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: var(--laranja-vibrante);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(255, 92, 28, 0.3);
}

.diferencial-card h3 {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Serviços */
.servicos {
    background-color: var(--cinza-claro);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.servico-card {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--amarelo-queimado);
    opacity: 0.1;
    transition: height 0.3s ease;
    z-index: -1;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.servico-card:hover::before {
    height: 100%;
}

.servico-icon {
    font-size: 2rem;
    color: var(--laranja-vibrante);
    margin-bottom: 1rem;
}

.servico-card h3 {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

/* Portfólio - Novo estilo de zoom ao passar o mouse */
.portfolio {
    background-color: var(--branco);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--laranja-vibrante);
    cursor: pointer;
    transform: scale(1); /* Garante o estado inicial do zoom */
    transition: transform 0.3s ease-in-out; /* Adiciona transição para o zoom */
}

.portfolio-item:hover {
    transform: scale(1.05); /* Zoom in de 5% ao passar o mouse */
}


.portfolio-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1560523160-754a9e25c68f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2036&q=80');
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(5) {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(6) {
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
}


.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--branco);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none; /* Permite que os cliques passem pelo overlay */
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 2rem;
}

.secondary-button {
    background-color: transparent;
    color: var(--laranja-vibrante);
    border: 2px solid var(--laranja-vibrante);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background-color: var(--laranja-vibrante);
    color: var(--branco);
}

/* Como Funciona */
.como-funciona {
    background-color: var(--cinza-claro);
}

.processo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background-color: var(--amarelo-queimado);
}

.processo-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.processo-numero {
    width: 50px;
    height: 50px;
    background-color: var(--preto-profundo);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 2rem;
    z-index: 1;
    border: 3px solid var(--amarelo-queimado);
}

.processo-content {
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.processo-content h3 {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--laranja-vibrante);
}

/* Formulário de Contato */
.contato {
    background-color: var(--branco);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--cinza-claro);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--cinza);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--laranja-vibrante);
}

/* Estilos para grupos de radio e checkbox */
.radio-group, .checkbox-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Espaçamento entre os itens */
    margin-top: 5px; /* Pequeno espaçamento do label */
}

.radio-group label, .checkbox-group-inline label {
    display: flex;
    align-items: center;
    margin-bottom: 0; /* Remove margem padrão de label */
    font-weight: 400; /* Peso de fonte normal para os textos das opções */
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group-inline input[type="checkbox"] {
    width: auto; /* Deixa o input com o tamanho padrão */
    margin-right: 5px; /* Espaço entre o input e o texto da label */
    cursor: pointer;
}


.file-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.file-text {
    flex: 1;
}

.file-button {
    background-color: var(--cinza);
    color: var(--branco);
    padding: 10px 15px;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.file-label:hover .file-button {
    background-color: var(--laranja-vibrante);
}

input[type="file"] {
    display: none;
}

.file-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--cinza);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.submit-button {
    background-color: var(--vermelho-intenso);
    color: var(--branco);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--amarelo-queimado);
}

/* Footer */
.footer {
    background-color: var(--preto-profundo);
    color: var(--branco);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--pessego-claro);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amarelo-queimado);
}

.separator {
    color: var(--cinza);
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--amarelo-queimado);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--cinza);
}

/* --- Botão Flutuante do WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    right: 20px; /* Distância da direita */
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    width: 60px; /* Tamanho do botão */
    height: 60px;
    border-radius: 50%; /* Torna-o redondo */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px; /* Tamanho do ícone */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Garante que fique acima de outros elementos */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efeito ao passar o mouse */
    background-color: #1DA851; /* Escurece um pouco ao hover */
}

/* --- Estilos para a Nova Funcionalidade AI (Gerador de Ideias) --- */
.ai-feature {
    margin-top: 2rem;
    text-align: center;
}

.ai-button {
    background-color: var(--azul-escuro); /* Cor de destaque para o botão AI */
    color: var(--branco);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; /* Ocupa a largura total do form-group */
    display: flex; /* Para alinhar o ícone de brilho */
    justify-content: center;
    align-items: center;
    gap: 10px; /* Espaço entre texto e brilho */
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3); /* Sombra para destaque */
}

.ai-button:hover {
    background-color: var(--laranja-vibrante); /* Muda para uma cor vibrante ao hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.4);
}

.ai-output {
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    text-align: left; /* Alinha o texto gerado à esquerda */
    min-height: 100px; /* Altura mínima para a área de saída */
    position: relative; /* Para posicionar o spinner */
    overflow-y: auto; /* Adiciona rolagem se o conteúdo for muito longo */
    max-height: 300px; /* Limita a altura do resultado */
}

.ai-output p {
    white-space: pre-wrap; /* Preserva quebras de linha e espaços no texto gerado */
    font-size: 0.95rem;
    color: var(--preto-profundo);
}

.loading-spinner {
    border: 4px solid var(--cinza-claro);
    border-top: 4px solid var(--laranja-vibrante);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px; /* Centraliza verticalmente */
    margin-left: -20px; /* Centraliza horizontalmente */
    z-index: 10;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styles for form messages */
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Classe para leitores de tela - Visually hidden */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsividade do Botão Flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsividade Geral */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .processo-timeline::before {
        left: 25px;
    }
    
    .processo-numero {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Esconde o botão "Peça um Orçamento" do cabeçalho em mobile para dar espaço ao menu */
    .header .cta-button {
        display: none; 
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--branco);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .stats-container {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-links, .social-media {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .valores-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .processo-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .processo-numero {
        margin-bottom: 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}
