        :root {
            --cor-principal: #2E8B57; /* Verde */
            --cor-principal-hover: #256d45;
            --cor-fundo: #fbf9f5;      /* Bege */
            --cor-fundo-escuro: #f0ede8;
            --cor-texto: #212529;
            --cor-texto-claro: #6c757d;
            --cor-branca: #ffffff;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        /* --- Configurações Base --- */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--cor-fundo);
            color: var(--cor-texto);
            overflow-x: hidden;
        }
        
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
        }

        /* --- Animações de Scroll --- */
        .fade-in-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navbar --- */
        .navbar {
            transition: background-color 0.4s ease;
            background-color: rgba(255, 255, 255, 0.9) !important;
            
            color: var(--cor-texto-claro);
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.9) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .navbar-brand img {
            height: 50px;
        }
        .navbar-dark .navbar-nav .nav-link {
            color: var(--cor-texto-claro);                                         
            font-weight: 500;
        }
        .navbar-light .navbar-nav .nav-link {
             color: var(--cor-texto-claro);
             font-weight: 500;
        }
        .nav-link:hover {
            color: var(--cor-principal) !important;
        }
        .btn-fale-conosco {
            background-color: var(--cor-principal);
            color: var(--cor-branca) !important;
            border-radius: 50px;
            padding: 10px 30px !important;
            transition: all 0.3s ease;
        }
        .btn-fale-conosco:hover {
            background-color: var(--cor-principal-hover);
            transform: scale(1.05);
        }

        /* --- Seção Hero Gigante --- */
        #hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to bottom, rgba(46, 139, 87, 0.8), rgba(46, 139, 87, 0.6)), url('images/hero-bg.jpg') no-repeat center center;
            text-align: center;
            overflow: hidden;
        }
        
        #hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
            z-index: -1;
        }
        .hero-content {
            max-width: 800px;
        }
        #hero h1 {
            color: white;
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 6rem); /* Fonte responsiva gigante */
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        #hero h1 .highlight {
            color: #ebdcc4; /* Destaque em amarelo claro */
        }
        #hero .lead {
            color: white;
            font-size: 1.5rem;
            margin: 30px 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .btn-cta {
            font-size: 1.2rem;
            font-weight: 700;
            padding: 18px 50px;
            border-radius: 50px;
            background-color: var(--cor-principal);
            color: var(--cor-branca);
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-cta:hover {
            background-color: var(--cor-principal-hover);
            transform: translateY(-5px);
        }

        /* --- Estilo de Seção Gigante --- */
        .section-gigante {
            padding: 120px 0;
            position: relative;
        }
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        .section-title h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        /* --- Divisor de Seção SVG --- */
        .section-divider {
            aspect-ratio: 960/100;
            width: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            position: absolute;
            left: 0;
            z-index: 2;
        }
        .top-divider {
            top: -1px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" style="fill:%23fbf9f5;"/></svg>');
        }
        .bottom-divider {
            bottom: -1px;
            transform: rotate(180deg);
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" style="fill:%23fbf9f5;"/></svg>');
        }
        .bg-verde .top-divider {
             background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" style="fill:%232E8B57;"/></svg>');
        }
        .bg-verde .bottom-divider {
             background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" style="fill:%232E8B57;"/></svg>');
        }
        
        /* --- Card de Serviço TOP --- */
        .card-servico {
            background: var(--cor-branca);
            border: none;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-servico:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }
        .card-servico .icon-feature {
            font-size: 5rem;
            color: var(--cor-principal);
            margin-bottom: 20px;
            display: inline-block;
        }
        .card-servico h3 {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* --- Card de Plano TOP --- */
        #planos {
            background-color: var(--cor-fundo-escuro);
        }
        .card-plano {
            background: var(--cor-branca);
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card-plano:hover {
            transform: scale(1.02);
        }
        .card-plano-destaque {
            background: linear-gradient(135deg, var(--cor-principal), #256d45);
            color: var(--cor-branca);
            border: none;
            transform: scale(1.08);
            z-index: 5;
            box-shadow: 0 20px 50px rgba(46, 139, 87, 0.4);
        }
        .card-plano-destaque .btn {
            background-color: var(--cor-branca);
            color: var(--cor-principal);
            font-weight: 700;
        }
        .card-plano-destaque .btn:hover {
             background-color: #f0f0f0;
        }
        .card-plano h3 { font-weight: 700; }
        .card-plano .display-4 { font-family: var(--font-display); font-weight: 900; }
        .card-plano-destaque .text-muted { color: rgba(255,255,255,0.8) !important; }
        .card-plano .list-unstyled { flex-grow: 1; }
        .card-plano-destaque .bi-check-circle-fill { color: var(--cor-branca); }
        
        /* --- Contato e Footer --- */
        #contato {
            background: linear-gradient(to top, var(--cor-fundo-escuro), var(--cor-fundo));
        }
        
        #servicos p {
            color: black;
        }

        #servicos h3 {
            color: black;
        }
        
        footer {
            background-color: #e0e0e0;
            color: black;
            padding: 60px 0 30px 0;
        }
        footer a { color: var(--cor-principal); text-decoration: none; }
        footer a:hover { color: var(--cor-branca); }
    