* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f6efe7;
    color: #4a3b2a;
}

/* Top bar */
.top-bar {
    background-color: #4a2e14;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    padding: 15px 8%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.35s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #8a6a4f;
    font-size: 15px;
    position: relative;
}

.menu a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #b47b45;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.logo strong {
    font-size: 22px;
    color: #4a2e14;
}

.logo span {
    font-size: 14px;
    color: #8a6a4f;
}



.menu a:hover {
    color: #4a2e14;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 50px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
}

/* Conteúdo */
.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #b47b45;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #5a4a3a;
}

/* Botão */
.btn-primary {
    background-color: #1faa00;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #178a00;
}

/* Responsivo */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
/* ===== ANIMAÇÕES ===== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay opcional para efeito em cascata */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}


/* ===== SEÇÃO PORQUE ===== */

.porque {
    padding: 80px 8%;
    background-color: #fff;
    text-align: center;
}

.porque h2 {
    font-size: 36px;
    color: #b47b45;
    margin-bottom: 15px;
    font-weight: 500;
}

.porque .subtitle {
    font-size: 16px;
    color: #6b5b4b;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid #b47b45;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 60px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    color: #b47b45;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.5;
}

/* Card destaque (central) */
.card.destaque {
    border-bottom: 4px solid #7a4a24;
    transform: scale(1.03);
}


/* ===== CTA AVALIAÇÃO ===== */

.cta-avaliacao {
    background-color: #ead8c4;
    padding: 80px 8%;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text h2 {
    font-size: 40px;
    color: #b47b45;
    font-weight: 500;
    line-height: 1.2;
}

.cta-action {
    max-width: 420px;
}

.cta-action p {
    font-size: 16px;
    color: #4a3b2a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-cta {
    background-color: #b47b45;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background-color: #9e6538;
}

/* Responsivo */
@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 32px;
    }
}


/* ===== ESTILIZAÇÃO SOBRE MIM ===== */
/* ===== ESTILIZAÇÃO SOBRE MIM ===== */
.sobre {
    padding: 100px 8%;
    background-color: #fdfaf7;
}

.sobre-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.sobre-content {
    flex: 1;
}

.sobre-content .tag {
    color: #b47b45;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.sobre-content h2 {
    font-size: 38px;
    color: #4a2e14;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sobre-content p {
    margin-bottom: 20px;
    color: #5a3a46;
    font-size: 17px;
    line-height: 1.6;
}

.sobre-image {
    flex: 1;
    position: relative;
}

.sobre-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #ead8c4;
}

.experiencia-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #4a2e14;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experiencia-badge strong {
    display: block;
    font-size: 18px;
}

.experiencia-badge span {
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .sobre-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .sobre-image img {
        box-shadow: 10px 10px 0px #ead8c4;
        max-width: 100%;
    }
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #1faa00;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Mobile: botão só ícone */
@media (max-width: 600px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
    }
}
.whatsapp-float {
    animation: pulseIn 0.6s ease;
}

@keyframes pulseIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* depois do sobre mim */

.funcionamento {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.func-container {
    max-width: 900px;
    margin: 0 auto;
}

.func-container h2 {
    font-size: 36px;
    color: #4a3b2a;
    font-weight: 500;
}

.func-container h2 span {
    font-weight: 700;
    color: #4a2e14;
}

.func-container .subtitle {
    font-size: 18px;
    color: #8a6a4f;
    margin: 15px 0 30px;
}

.func-description {
    font-size: 20px;
    color: #5a4a3a;
    line-height: 1.6;
    margin-bottom: 40px;
}

.atendimentos-wrapper h3 {
    font-size: 22px;
    color: #b47b45;
    margin-bottom: 25px;
    font-weight: 500;
}

/* O Card Marrom inspirado na imagem */
.card-presencial {
    background: linear-gradient(135deg, #4a2e14 0%, #7a4a24 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(74, 46, 20, 0.2);
    max-width: 600px;
    margin: 0 auto 40px;
}

.card-presencial h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-presencial p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Botão Verde de Destaque */
.btn-whatsapp-func {
    background-color: #1faa00;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp-func:hover {
    background-color: #178a00;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .card-presencial {
        padding: 25px;
    }
    
    .func-container h2 {
        font-size: 28px;
    }
}


/* relatos */
/* Organização Geral da Seção */
.resultados {
    padding: 80px 5%;
    background-color: #fcf9f6;
    text-align: center;
}

.resultados-header-central {
    margin-bottom: 50px;
}

.resultados-header-central h1 {
    font-size: 36px;
    color: #b47b45;
    margin-bottom: 10px;
}

.resultados-header-central h1 span {
    font-weight: 800;
    color: #4a2e14;
}

/* Wrapper da Galeria */
.feedback-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(180, 123, 69, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
}

/* Grid de Imagens Organizada */
.grid-mensagens {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 20px;
    margin-bottom: 40px;
}

.foto-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-print {
    width: 100%;
    height: 450px; /* Mantém uma altura fixa para alinhar os cards */
    object-fit: contain; /* ESSA É A MUDANÇA: Garante que a foto apareça inteira sem zoom */
    background-color: #fff; /* Fundo branco caso o print seja mais estreito que o card */
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.img-print:hover {
    transform: scale(1.02);
}

.caption {
    margin-top: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b47b45;
    font-weight: 600;
}

/* Info Inferior */
.resultado-info-clean {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.resultado-info-clean h2 {
    color: #4a2e14;
    font-size: 24px;
    margin-bottom: 10px;
}

.resultado-info-clean p {
    color: #777;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade: No celular vira uma coluna só */
@media (max-width: 992px) {
    .grid-mensagens {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .img-print {
        height: auto;
        max-height: 500px;
    }
}

/* ===== ESTILO SEÇÃO FAQ ===== */
.faq {
    padding: 80px 8%;
    background-color: #fcf9f6; /* Fundo bege claro das imagens */
    text-align: center;
}

.faq-header h2 {
    font-size: 32px;
    color: #b47b45; /* Cor bronze dos títulos */
    margin-bottom: 10px;
}

.faq-header h2 span {
    font-weight: 700;
}

.faq-header .subtitle {
    font-size: 16px;
    color: #5a4a3a;
    margin-bottom: 40px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Estilo do Card de Dúvida (Borda pontilhada da imagem) */
details {
    background: transparent;
    border: 2px dashed #4a2e14; /* Borda pontilhada marrom escuro */
    border-radius: 50px; /* Bordas bem arredondadas conforme imagem */
    margin-bottom: 15px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Título da Dúvida */
summary {
    list-style: none; /* Remove a setinha padrão */
    font-weight: 500;
    color: #4a2e14;
    font-size: 18px;
    display: flex;
    align-items: center;
}

summary::before {
    content: '+ '; /* Ícone de mais conforme imagem */
    margin-right: 10px;
    font-weight: bold;
}

/* Quando o FAQ está aberto */
details[open] {
    background-color: #fff;
    border-style: solid; /* Muda para linha contínua quando aberto */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

details[open] summary {
    margin-bottom: 10px;
    color: #b47b45;
}

details[open] summary::before {
    content: '- '; /* Muda para menos quando aberto */
}

/* Texto da Resposta */
.faq-answer {
    padding: 10px 0 10px 20px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
}


/* ===== ESTILO PARALLAX ===== */
.parallax-container {
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1516307365426-bea591f05011?q=80&w=2000&auto=format&fit=crop'); /* Imagem com vibe de natureza/paz */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    background: rgba(74, 46, 20, 0.6); /* Filtro marrom semi-transparente para dar leitura ao texto */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.parallax-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

.parallax-content .sparkle {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.parallax-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.parallax-content p {
    font-size: 18px;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

/* Botão em destaque (Verde igual ao das imagens) */
.btn-parallax {
    background-color: #00a82d;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.btn-parallax:hover {
    background-color: #008f26;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .parallax-container {
        height: 500px;
        background-attachment: scroll; /* Melhora a performance em celulares */
    }
    
    .parallax-content h2 {
        font-size: 28px;
    }
}


/* ===== ESTILO CONTATO ===== */
.contato {
    padding: 80px 8%;
    background-color: #fcf9f6;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-info {
    flex: 1;
}

.contato-info h2 {
    color: #b47b45;
    font-size: 32px;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: #5a4a3a;
}

.info-item i {
    color: #b47b45;
    font-size: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 3px;
}

/* Ícones das Redes Sociais Circulares */
.redes-sociais {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.redes-sociais {
    margin-top: 30px;
}

.social.instagram {
    width: 120px;
    height: 40px;
    background: #b47b45;
    color: white;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.social.instagram:hover {
    background: #4a2e14;
    transform: translateY(-3px);
}


/* Card do Formulário */
.contato-form-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contato-form-card p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

form input, form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 30px; /* Campos arredondados conforme imagem */
    outline: none;
    font-family: inherit;
}

form textarea {
    border-radius: 20px;
    resize: none;
}

.btn-enviar {
    width: 100%;
    padding: 15px;
    background-color: #b47b45;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-enviar:hover {
    background-color: #4a2e14;
}

/* Responsivo */
@media (max-width: 850px) {
    .contato-container {
        flex-direction: column;
    }
}


/* ===== ESTILO DO RODAPÉ ===== */
.main-footer {
    background-color: #4a2e14; /* Marrom escuro da imagem */
    color: #ffffff;
    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-column h3 {
    color: #b47b45; /* Dourado/Bronze */
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

/* Links Úteis */
.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fcf9f6;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-column ul li a i {
    font-size: 10px;
    margin-right: 8px;
    color: #b47b45;
}

.footer-column ul li a:hover {
    color: #b47b45;
    padding-left: 5px;
}

/* Informações de Contato */
.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: #b47b45;
    margin-top: 4px;
}

/* Botões de Redes Sociais */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.social-btn:hover {
    background: rgba(180, 123, 69, 0.2);
    border-color: #b47b45;
}

/* Rodapé Inferior */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.privacy-link {
    color: #ffffff;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-info p { justify-content: center; }
}






input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 30px; /* Estilo pílula das imagens */
    outline: none;
    font-family: inherit;
    font-size: 16px;
    color: #555;
}

input[type="tel"]:focus {
    border-color: #b47b45; /* Cor bronze ao clicar */
}