/* ========================================
   VARIÁVEIS CSS - PALETA AMARELO PREMIUM
   ======================================== */
:root {
    --cor-primaria: #FFB800;
    --cor-secundaria: #CC9300;
    --cor-destaque: #FFC933;
    --cor-clara: #FFF9E6;
    --cor-escura: #2C2C2C;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #CCCCCC;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-hover: rgba(0, 0, 0, 0.15);
    --transicao: all 0.3s ease;
}

/* ========================================
   RESET E BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    background: var(--branco);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-escura);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 2px 10px var(--sombra);
    z-index: 1000;
    transition: var(--transicao);
}

.header.scrolled {
    box-shadow: 0 2px 15px var(--sombra-hover);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--cor-escura);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transicao);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cor-primaria);
    background: var(--cor-clara);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-primaria);
    border-radius: 3px;
    transition: var(--transicao);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.9) 0%, rgba(204, 147, 0, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--branco);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transicao);
    text-align: center;
}

.btn-primary {
    background: var(--branco);
    color: var(--cor-primaria);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--cor-clara);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary:hover {
    background: var(--branco);
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ========================================
   SEÇÕES GERAIS
   ======================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cor-escura);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    text-align: center;
    margin-bottom: 3rem;
}

/* ========================================
   SOBRE
   ======================================== */
.sobre {
    background: var(--cinza-claro);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-imagem img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra);
}

.sobre-conteudo p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.missao {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cor-clara);
    border-left: 4px solid var(--cor-primaria);
    border-radius: 8px;
}

.missao h3 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

/* ========================================
   SERVIÇOS
   ======================================== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    transition: var(--transicao);
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--sombra-hover);
}

.servico-icone {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.servico-card h3 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.servico-card p {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ========================================
   VALORES
   ======================================== */
.valores {
    background: var(--cor-clara);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--sombra);
    text-align: center;
    transition: var(--transicao);
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--sombra-hover);
}

.valor-icone {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.valor-card h3 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

.valor-card p {
    color: var(--cor-texto-claro);
}

/* ========================================
   ESTATÍSTICAS
   ======================================== */
.estatisticas {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--branco);
    text-align: center;
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card {
    padding: 1.5rem;
}

.stat-numero {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos {
    background: var(--cinza-claro);
}

.depoimentos-carrossel {
    max-width: 800px;
    margin: 0 auto;
}

.carrossel-wrapper {
    position: relative;
    min-height: 250px;
}

.depoimento-card {
    display: none;
    background: var(--branco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    text-align: center;
}

.depoimento-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depoimento-texto {
    margin-bottom: 2rem;
}

.depoimento-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto);
    font-style: italic;
}

.depoimento-autor strong {
    display: block;
    color: var(--cor-primaria);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.depoimento-autor span {
    color: var(--cor-texto-claro);
    font-size: 0.9rem;
}

.carrossel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carrossel-prev,
.carrossel-next {
    background: var(--cor-primaria);
    color: var(--branco);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
}

.carrossel-prev:hover,
.carrossel-next:hover {
    background: var(--cor-secundaria);
    transform: scale(1.1);
}

.carrossel-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cinza-medio);
    cursor: pointer;
    transition: var(--transicao);
}

.dot.active,
.dot:hover {
    background: var(--cor-primaria);
    transform: scale(1.2);
}

/* ========================================
   FAQ
   ======================================== */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--sombra);
    overflow: hidden;
}

.faq-pergunta {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-escura);
    text-align: left;
    transition: var(--transicao);
}

.faq-pergunta:hover {
    background: var(--cor-clara);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    transition: var(--transicao);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-resposta {
    max-height: 500px;
}

.faq-resposta p {
    padding: 0 1.5rem 1.5rem;
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ========================================
   CONTATO
   ======================================== */
.contato {
    background: var(--cor-clara);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.info-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--sombra);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--cor-primaria);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

.info-card a {
    color: var(--cor-primaria);
}

.info-card a:hover {
    text-decoration: underline;
}

.contato-form {
    background: var(--branco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cor-escura);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cinza-medio);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.form-mensagem {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-mensagem.sucesso {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-mensagem.erro {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--cor-escura);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transicao);
}

.footer-col ul li a:hover {
    color: var(--cor-primaria);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    margin-bottom: 1rem;
}

.footer-legal a {
    color: var(--cor-primaria);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    font-style: italic;
    opacity: 0.6;
    max-width: 800px;
    margin: 1rem auto 0 !important;
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transicao);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--sombra);
    z-index: 999;
    transition: var(--transicao);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--cor-secundaria);
    transform: translateY(-5px);
}

/* ========================================
   PÁGINA LEGAL (Políticas e Termos)
   ======================================== */
.pagina-legal {
    padding: 8rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pagina-legal h1 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.pagina-legal h2 {
    color: var(--cor-secundaria);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pagina-legal p,
.pagina-legal ul {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--cor-texto);
}

.pagina-legal ul {
    padding-left: 2rem;
}

.pagina-legal li {
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--branco);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 5px 20px var(--sombra);
        transition: var(--transicao);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--cinza-claro);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .estatisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-numero {
        font-size: 2.5rem;
    }
    
    .contato-form {
        padding: 2rem 1.5rem;
    }
}

