    /* ==================================
   VARIÁVEIS DE DESIGN GLOBAIS
   ================================== */
    :root {
        --color-blue: #5749ff;
        --color-green: #5bff20;
        --color-white: #ffffff;
        --color-gray: #e9e8e8;
        --color-dark: #121212;
        --font-family: 'Raleway', sans-serif;
    }

    /* ==================================
   RESET & BASICS
   ================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-family);
        background-color: var(--color-white);
        color: var(--color-dark);
        line-height: 1.6;
    }

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

    ul {
        list-style: none;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Utilitários */
    .text-center {
        text-align: center;
    }

    .text-right-align {
        text-align: right;
    }

    /* Para os fundos verdes no texto azul */
    .highlight-green {
        background-color: var(--color-green);
        color: var(--color-blue);
        padding: 0 15px;
        border-radius: 5px;
        display: inline-block;
    }

    /* ==================================
   CABEÇALHO (HEADER) E MENU
   ================================== */
    .header {
        position: absolute;
        /* Flutua sobre o hero */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 2rem 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        height: 50px;
        width: auto;
    }

    .menu-list {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    .menu-link {
        font-weight: 500;
        font-size: 1rem;
        color: var(--color-white);
        /* Texto branco pois estará sobre background escuro */
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        /* Sombra para garantir legibilidade */
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
        letter-spacing: 1px;
    }

    /* O Segredo do Hover Animado (Barrinha Verde) */
    .menu-link::after {
        content: '';
        position: absolute;
        width: 0;
        /* Começa invisível */
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-green);
        transition: width 0.3s ease-in-out;
        /* Anima o crescimento */
    }

    /* Ao passar o mouse, a barra cresce de 0 a 100% da largura da palavra */
    .menu-link:hover::after,
    .menu-link.active::after {
        width: 100%;
    }

    /* ==================================
   HERO / CARROSSEL
   ================================== */
    .hero {
        position: relative;
        height: 100vh;
        /* Ocupa 100% da tela inicial */
        background-color: var(--color-dark);
        overflow: hidden;
    }

    .carousel-container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .carousel-track {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.8s ease-in-out;
    }

    .slide {
        min-width: 100%;
        flex: 0 0 100%;
        /* Força o slide a não encolher na tela, consertando o display:flex pai */
        height: 100%;
        position: relative;
    }

    .slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        /* Mostra melhor a personagem */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradiente vindo debaixo indo pra cima (to top) para dar destaque do texto e deixar a imagem da Samara viva no topo */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.7) 25%, transparent 60%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        /* Desce as frases um pouco na visualização */
        height: 100%;
        color: var(--color-white);
    }

    /* ==================================
   ANIMAÇÕES HERO (ENTRADA)
   ================================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .hero-tag {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        animation: fadeInUp 1s ease-out forwards;
        opacity: 0;
    }

    .hero-content h1 {
        font-size: 4.8rem;
        font-weight: 400;
        /* Peso Regular requisitado */
        line-height: 1.1;
        max-width: 1000px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        animation: fadeInUp 1s ease-out 0.3s forwards;
        opacity: 0;
    }

    /* Setas minimalistas do Design */
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        font-size: 5rem;
        font-weight: 300;
        cursor: pointer;
        z-index: 10;
        transition: color 0.3s;
        font-family: inherit;
        /* para manter a estética fina do Raleway */
    }

    .carousel-arrow:hover {
        color: var(--color-white);
    }

    .prev-btn {
        left: 40px;
    }

    .next-btn {
        right: 40px;
    }

    /* Indicadores de bolinhas do Carrossel */
    .carousel-nav {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 10;
    }

    .nav-dot {
        width: 16px;
        height: 16px;
        background: rgba(255, 255, 255, 0.8);
        /* Maior visibilidade */
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.3);
        /* Contraste contra fundos claros */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    .nav-dot.current-dot {
        background: var(--color-green);
        transform: scale(1.3);
    }

    /* ==================================
   FÓRMULA MÁGICA SECTION
   ================================== */
    .formula-magica {
        background-color: var(--color-blue);
        padding: 100px 0;
        color: var(--color-white);
    }

    .formula-magica h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .formula-magica p {
        font-size: 1.6rem;
        font-weight: 300;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.4;
    }

    /* ==================================
   SERVIÇOS (Alternados)
   ================================== */
    .servicos {
        background-color: var(--color-white);
        padding: 120px 0;
    }

    .servico-row {
        display: flex;
        align-items: center;
        gap: 80px;
        margin-bottom: 100px;
    }

    .servico-row:last-child {
        margin-bottom: 0;
    }

    .reverse-row {
        flex-direction: row-reverse;
    }

    .servico-img-box {
        flex: 0 0 40%;
        /* Reduz a largura da imagem */
        max-width: 450px;
        border-radius: 60px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .servico-img {
        width: 100%;
        aspect-ratio: 1;
        /* Quadrada ou flexível */
        object-fit: cover;
        border-radius: 60px;
        /* Bordas grandes estilo design */
        display: block;
        transition: transform 0.6s ease;
    }

    .servico-img-box:hover .servico-img {
        transform: scale(1.08);
        /* Efeito de Zoom no Hover */
    }

    .servico-texto {
        flex: 1;
    }

    .servico-texto h3 {
        color: var(--color-blue);
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .servico-texto p {
        color: var(--color-blue);
        font-size: 1.6rem;
        font-weight: 300;
        line-height: 1.5;
    }

    /* ==================================
   CONTATO SECTION
   ================================== */
    .contato-section {
        background-color: var(--color-blue);
        padding: 100px 0;
        color: var(--color-white);
    }

    .contato-header h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contato-header p {
        font-size: 1.4rem;
        font-weight: 300;
        margin-bottom: 60px;
    }

    .contato-grid {
        display: flex;
        gap: 60px;
        align-items: stretch;
    }

    .contato-img-box,
    .contato-form-box {
        flex: 1;
    }

    .contato-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
    }

    .design-form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 20px 0;
    }

    .design-form .form-group {
        margin-bottom: 30px;
    }

    .design-form label {
        display: block;
        margin-bottom: 10px;
        font-weight: 300;
        font-size: 0.8rem;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.8);
    }

    .design-form input,
    .design-form textarea {
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 5px;
        color: var(--color-white);
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .design-form input::placeholder,
    .design-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
        font-weight: 300;
    }

    .design-form input:focus,
    .design-form textarea:focus {
        outline: none;
        border-color: var(--color-green);
    }

    .btn-submit-invisible {
        background: transparent;
        border: 2px solid var(--color-green);
        color: var(--color-green);
        font-weight: 700;
        letter-spacing: 2px;
        padding: 15px 0;
        width: 100%;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: auto;
    }

    .btn-submit-invisible:hover {
        background: var(--color-green);
        color: var(--color-blue);
    }

    /* ==================================
   RODAPÉ
   ================================== */
    .footer {
        background-color: var(--color-green);
        padding: 40px 0;
    }

    .footer-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-social {
        color: var(--color-blue);
    }

    .social-icons {
        display: flex;
        gap: 15px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .social-icons a {
        transition: opacity 0.3s;
    }

    .social-icons a:hover {
        opacity: 0.7;
    }

    .whatsapp-foot {
        font-size: 1.1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-copy {
        color: var(--color-blue);
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-logo img {
        max-width: 150px;
    }

    /* ==================================
   ANIMAÇÕES SCROLL (REVEAL)
   ================================== */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* ==================================
   SOBRE PAGE CSS
   ================================== */
    .hero-sobre {
        height: 85vh;
        /* Hero mais curto para não ocupar a tela toda */
    }

    .hero-sobre .slide-img {
        object-position: center 25%;
    }

    .sobre-intro {
        background-color: var(--color-white);
        padding: 80px 0;
        color: var(--color-blue);
        font-size: 1.6rem;
        font-weight: 300;
        line-height: 1.6;
    }

    .sobre-intro p {
        max-width: 800px;
        margin: 0 auto 20px;
    }

    .equipe-section {
        background-color: var(--color-gray);
        padding: 80px 0;
    }

    .equipe-grid {
        display: flex;
        justify-content: center;
        gap: 120px;
        flex-wrap: wrap;
    }

    .equipe-member {
        width: 280px;
        text-align: center;
        transition: transform 0.5s ease;
    }

    .equipe-member:hover {
        transform: translateY(-10px);
    }

    .equipe-member h3 {
        color: var(--color-blue);
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .equipe-img-wrap {
        width: 250px;
        height: 350px;
        margin: 0 auto 20px;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .equipe-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .equipe-member p {
        color: var(--color-blue);
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .equipe-social {
        margin-top: 10px;
    }

    .equipe-social a {
        color: var(--color-blue);
        font-size: 1.6rem;
        margin: 0 8px;
        transition: color 0.3s;
    }

    .equipe-social a:hover {
        color: var(--color-green);
    }

    .missao-valores {
        background-color: var(--color-white);
        padding: 80px 0;
        color: var(--color-blue);
        text-align: center;
    }

    .missao-block {
        max-width: 900px;
        margin: 0 auto 80px;
    }

    .missao-block h2,
    .valores-block h2 {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .missao-block p {
        font-size: 1.1rem;
        line-height: 1.6;
        font-weight: 300;
    }

    .valores-block {
        max-width: 900px;
        margin: 0 auto;
    }

    .valores-list {
        text-align: left;
    }

    .valores-list p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .valores-list p strong {
        font-weight: 700;
    }

    /* ==================================
   RESPONSIVIDADE (MOBILE)
   ================================== */
    @media (max-width: 992px) {

        .servico-row,
        .reverse-row {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .text-right-align {
            text-align: center;
        }

        .contato-grid {
            flex-direction: column;
        }

        .hero-content h1 {
            font-size: 3.5rem;
        }

        .formula-magica h2 {
            font-size: 2.5rem;
        }

        .footer-grid {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .menu-list {
            display: none;
        }
    }