        /* ======================================================================= */
/* VARIÁVEIS E CORES (A paleta de maquiagem do site)                       */
/* Aqui a gente define as cores que vamos usar no site todo. Se quiser     */
/* mudar o dourado pra rosa, é só mudar aqui!                              */
/* ======================================================================= */
:root {
            --color-primary: #111111;
            /* Dark Text */
            --color-accent: #B88A44;
            /* Gold/Brown */
            --color-accent-hover: #966F33;
            --color-text-main: #2A2A2A;
            --color-text-muted: #4A4A4A;
            --color-bg: #FCFAF5;
            /* Light Cream background */
            --color-surface: #FFFFFF;
            /* White */
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* ======================================================================= */
/* RESET GERAL (Zerando a bagunça padrão do navegador)                     */
/* Isso tira todas as margens chatas que os navegadores botam sozinhos     */
/* ======================================================================= */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ======================================================================= */
/* CORPO DO SITE (A base de tudo)                                          */
/* Define a fonte de texto padrão e a cor de fundo de tudo.                */
/* ======================================================================= */
body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-main);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Reusable Classes */
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-accent);
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 3rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary, .nav-btn {
            background: linear-gradient(to right, #A37A31 0%, #E6C587 50%, #A37A31 100%);
            color: #111 !important;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
            border-radius: 8px;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(184, 138, 68, 0.2);
            border: 1px solid rgba(184, 138, 68, 0.4);
        }

        .btn-primary:hover, .nav-btn:hover {
            background: linear-gradient(to right, #966F33 0%, #D4AF37 50%, #966F33 100%);
            transform: translateY(-2px);
            color: #000 !important;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-b {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-text span:first-child {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-accent);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-text span:last-child {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--color-primary);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            color: var(--color-primary);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--color-accent);
        }

        nav a:not(.nav-btn)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--color-accent);
            transition: var(--transition);
        }

        nav a:not(.nav-btn):hover::after,
        nav a.active::after {
            width: 100%;
        }



        /* Hero Section */
        .hero {
            padding: 10rem 5% 5rem 5%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #FCFAF5 0%, #F5F0E6 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(184, 138, 68, 0.08) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            position: relative;
            z-index: 1;
            animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #B88A44 0%, #D4AF37 50%, #966F33 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.7;
        }
        
        .hero-img {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            position: relative;
            z-index: 1;
            margin-top: 4rem;
            margin-right: 3rem;
            animation: fadeInRight 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
            opacity: 0;
            transform: translateX(30px);
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-img img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            max-height: 600px;
            border-radius: 24px 120px 24px 24px;
            box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 255, 255, 0.5);
            transition: var(--transition);
        }

        .hero-img img:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.8);
        }

        /* Quem Somos */
        .quem-somos {
            padding: 6rem 5%;
            display: flex;
            align-items: center;
            gap: 4rem;
            background-color: var(--color-surface);
        }

        .quem-somos-texto {
            flex: 1;
        }

        .quem-somos-texto h2 {
            font-size: 2.8rem;
            color: var(--color-accent);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .quem-somos-texto p {
            font-size: 1.15rem;
            color: var(--color-text-main);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .stats-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
            display: flex;
            flex-direction: column;
        }

        .stat-number span {
            font-size: 1.5rem;
            margin-top: -5px;
        }

        .stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-primary);
            max-width: 350px;
        }

        .quem-somos-img {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .quem-somos-img img {
            width: 100%;
            max-width: 600px;
            border-radius: 16px 140px 16px 16px;
            box-shadow: var(--shadow-lg);
        }

        /* Serviços */
        .servicos {
            padding: 6rem 5%;
            background-color: var(--color-bg);
        }

        .grid-servicos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-inline: auto;
        }

        .card-servico {
            background-color: var(--color-surface);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            border: 2px solid var(--color-accent);
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .card-servico:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(184, 138, 68, 0.15);
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            color: var(--color-accent);
        }

        .card-servico h3 {
            font-size: 1.4rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .card-servico a {
            color: var(--color-accent);
            font-weight: 500;
            font-size: 1rem;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: var(--transition);
        }

        .card-servico a:hover {
            color: var(--color-accent-hover);
        }

        /* Equipe */
        .equipe {
            padding: 6rem 5%;
            background-color: var(--color-surface);
        }

        .grid-equipe {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .membro {
            text-align: center;
            width: calc(25% - 1.5rem);
            min-width: 220px;
            margin-bottom: 2rem;
        }

        .membro-foto {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            background-color: #f0f0f0;
            box-shadow: var(--shadow-md);
        }

        .membro-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .membro h4 {
            font-size: 1.3rem;
            color: var(--color-primary);
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .membro p {
            font-size: 1rem;
            color: var(--color-accent);
            font-weight: 500;
        }

        /* Depoimentos */
        .depoimentos {
            padding: 6rem 5%;
            background: url('assets/extracted_images/fundoavl.jpg') center/cover;
        }

        .depoimentos .section-title {
            color: var(--color-accent);
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            max-width: 1000px;
            margin: 0 auto 3rem auto;
            line-height: 1.2;
            text-align: center;
        }

        .grid-depoimentos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card-depoimento {
            background-color: var(--color-surface);
            padding: 2rem 2.5rem;
            border-radius: 30px;
            border: 2px solid var(--color-accent);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 1;
        }

        .card-depoimento::before {
            content: '\201D';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 8rem;
            font-family: 'Playfair Display', serif;
            color: rgba(184, 138, 68, 0.1);
            line-height: 0.8;
            z-index: 0;
            pointer-events: none;
        }

        .avatar-depoimento {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .avatar-depoimento img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .conteudo-depoimento {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .stars {
            color: #E6C587;
            font-size: 1.4rem;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
        }

        .conteudo-depoimento p {
            font-size: 1rem;
            color: var(--color-text-main);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .autor-depoimento {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-accent);
        }

        /* WhatsApp Section */
        .whatsapp-section {
            padding: 6rem 5%;
            background-color: var(--color-surface);
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .whatsapp-texto {
            flex: 1;
        }

        .whatsapp-texto h2 {
            font-size: 2.5rem;
            color: var(--color-accent);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .whatsapp-texto p {
            font-size: 1.1rem;
            color: var(--color-text-main);
            margin-bottom: 1.5rem;
        }

        .whatsapp-texto p.highlight {
            color: var(--color-accent);
            font-weight: 600;
        }

        .whatsapp-img {
            flex: 1;
            position: relative;
        }

        .whatsapp-img img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        /* Footer */
        footer {
            background-color: var(--color-surface);
            padding: 4rem 5% 1rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1000px;
            margin: 0 auto 3rem auto;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-col-left {
            max-width: 400px;
        }

        .footer-logo-img {
            max-width: 300px;
            margin-bottom: 1.5rem;
        }

        .footer-address {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1.4;
        }

        .footer-col-right {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .footer-contact-row {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
        }

        .contact-text {
            font-size: 1.3rem;
            line-height: 1.4;
        }

        .contact-label {
            font-weight: 700;
            color: var(--color-accent);
        }

        .contact-value {
            font-weight: 700;
            color: var(--color-primary);
        }

        .contact-value.underline {
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-top: 5px;
        }

        .social-icons a {
            color: var(--color-accent);
            transition: var(--transition);
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            color: var(--color-accent-hover);
        }

        .social-icons svg {
            width: 32px;
            height: 32px;
        }

        .footer-divider {
            border: none;
            border-top: 2px solid var(--color-accent);
            max-width: 1000px;
            margin: 0 auto;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1000;
        }

        .mobile-menu-btn span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--color-primary);
            margin: 6px 0;
            transition: var(--transition);
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* ======================================================================= */
        /* RESPONSIVIDADE (A mágica que faz o site caber no celular)               */
        /* Aqui a gente avisa: "Se a tela for de celular, espreme tudo pra caber!" */
        /* ======================================================================= */
        /* Responsive */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                padding-top: 8rem;
                text-align: center;
            }

            .hero h2 {
                font-size: 3.8rem;
            }

            .hero h3 {
                font-size: 2.5rem;
            }

            .hero-img {
                margin-top: 3rem;
                justify-content: center;
                margin-right: 0;
            }

            /* ======================================================================= */
        /* SEÇÃO QUEM SOMOS E SERVIÇOS (As caixinhas de informação)                */
        /* Define como o texto vai ficar do lado da imagem sem quebrar tudo        */
        /* ======================================================================= */
        .quem-somos,
            .whatsapp-section {
                flex-direction: column;
                text-align: center;
            }

            .stats-container {
                justify-content: center;
            }

            .membro {
                width: calc(33.333% - 1.5rem);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            header {
                padding: 1rem 5%;
                justify-content: space-between;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background-color: var(--color-surface);
                padding: 100px 2rem 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: 0.3s ease-in-out;
                z-index: 999;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .hero h2 {
                font-size: 2.8rem;
            }

            .hero h3 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .membro {
                width: calc(50% - 1.5rem);
            }

            .quem-somos-img img {
                border-radius: 12px 80px 12px 12px;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 3rem;
            }
            .footer-contact-row {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            .footer-col-right {
                align-items: center;
            }
        }