    /* ============================================
    VARIÁVEIS GLOBAIS
    ============================================ */

    :root {
        --cor-marinho: #1b2a4d;
        /* Azul marinho principal — usado em títulos, footer, seção orçamento */
        --cor-dourado: #c9a84c;
        /* Dourado — usado em destaques, botões, bordas e subtítulos */
        --cor-creme: #faf6ef;
        /* Fundo creme suave — reservado para uso pontual */
    }


    /* ============================================
    RESET E CONFIGURAÇÕES GERAIS
    ============================================ */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        list-style: none;
        font-family: 'Lato', sans-serif;
    }

    h1,
    h2,
    h3 {
        font-family: 'Playfair Display', serif;
        /* Fonte serifada para títulos — elegância e hierarquia */
    }

    html {
        scroll-behavior: smooth;
        /* Scroll animado ao clicar nos links do menu */
    }

    a {
        text-decoration: none;
        color: inherit;
        /* Links herdam a cor do elemento pai — evita o azul padrão do browser */
    }

    img {
        max-width: 100%;
        display: block;
        /* Remove espaço extra abaixo das imagens (inline gap) */
    }

    body {
        overflow-x: hidden;
        /* Evita scroll horizontal indesejado */
        background-color: #e8eef6;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Botão dourado reutilizável (Sobre, Hero, etc.) */
    .btn {
        background-color: var(--cor-dourado);
        color: var(--cor-marinho);
        padding: 14px 35px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #b8960a;
        /* Dourado levemente mais escuro no hover */
    }


    /* ============================================
    HEADER E MENU (DESKTOP)
    ============================================ */

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
        padding: 0 40px;
        position: fixed;
        /* Fica fixo no topo ao rolar */
        top: 0;
        width: 100%;
        z-index: 100;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
        transition: background-color 0.10s ease, padding 0.10s ease, box-shadow 0.10s ease;
    }

    /* Estado após scroll — header fica branco com blur */
    header.scrolled {
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(10px);
        height: 70px;
        padding: 0 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .logo {
        color: var(--cor-dourado);
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .logo img {
        height: 85px;
        margin-top: 0;
    }

    header.scrolled .logo img {
        height: 85px;
        margin-top: 0;
        filter: none;
    }

    /* Menu desktop */
    nav {
        position: relative;
        right: auto;
        top: auto;
    }

    nav ul {
        display: flex;
        gap: 30px;
    }

    nav ul li a {
        color: #fff;
        font-size: 0.92rem;
        font-weight: 400;
        letter-spacing: 1.4px;
        text-transform: none;
        transition: 0.3s;
    }

    nav ul li a:hover {
        color: #29abe2;
    }

    header.scrolled nav ul li a {
        color: var(--cor-marinho);
    }

    header.scrolled nav ul li a:hover {
        color: #29abe2;
    }

    /* Botão "Solicite um orçamento" no menu */
    .btn-orcamento {
        font-family: 'Lato', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        border: 2px solid #fff;
        padding: 10px 14px;
        color: #fff !important;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .btn-orcamento:hover {
        background-color: #fff;
        color: #1a1a1a !important;
    }

    header.scrolled .btn-orcamento {
        border: 2px solid var(--cor-marinho);
        color: var(--cor-marinho) !important;
    }

    header.scrolled .btn-orcamento:hover {
        background-color: #d4a843;
        color: #fff !important;
    }


    /* ============================================
    MENU HAMBÚRGUER (BOTÃO)
    ============================================ */

    .menu-toggle {
        display: none;
        /* Oculto no desktop — aparece só no mobile via media query */
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 200;
    }

    .menu-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: #fff;
        /* Linhas do hambúrguer brancas sobre o hero */
        border-radius: 2px;
        transition: 0.3s;
    }

    header.scrolled .menu-toggle span {
        background-color: var(--cor-marinho);
        /* Muda para marinho quando header fica branco */
    }


    /* ============================================
    HERO
    ============================================ */

    #hero {
        position: relative;
        height: 100vh;
    }

    .hero-swiper {
        width: 100%;
        height: 100%;
    }

    /* Controla visibilidade dos slides — evita flash entre transições */
    .hero-swiper .swiper-slide {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hero-swiper .swiper-slide-active {
        opacity: 1;
    }

    .hero-slide {
        background-size: cover;
        height: 100vh;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* Overlay escuro sobre a imagem do hero */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        /* Fica acima do overlay */
        text-align: center;
        color: #fff;
        padding: 0 40px;
        margin-top: 200px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: #ccc;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    /* Animação de entrada — JS adiciona a classe .animar */
    .hero-content h1,
    .hero-content p {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1.2s ease, transform 1.2s ease;
    }

    .hero-content h1.animar,
    .hero-content p.animar {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-subtitulo {
        display: block;
        font-size: 0.85rem;
        letter-spacing: 4px;
        color: var(--cor-dourado);
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Tags de serviço no hero (CAFÉ DA MANHÃ / COFFEE BREAK / EVENTOS) */
    .hero-tags {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 15px;
    }

    .hero-tags span,
    .hero-tags a {
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .hero-tags span:hover,
    .hero-tags a:hover {
        color: var(--cor-dourado);
    }

    .hero-tags span.animar,
    .hero-tags a.animar {
        opacity: 1;
        transform: translateX(0);
    }

    /* Paginação do carrossel hero (bolinhas) */
    .hero-pagination {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }


    /* ============================================
    SOBRE NÓS
    ============================================ */

    #sobre {
        padding: 80px 40px;
        background-color: #fff;
    }

    #sobre h2 {
        font-size: 2rem;
        color: var(--cor-marinho);
        margin-bottom: 20px;
    }

    .sobre-container {
        display: flex;
        align-items: flex-start;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .sobre-imagem {
        flex: 1;
        align-self: stretch;
    }

    .sobre-imagem img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        object-position: center top;
        border-radius: 4px;
    }

    .sobre-texto {
        flex: 1;
    }

    .sobre-subtitulo {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--cor-dourado);
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    /* Espaço extra para o header fixo não sobrepor o conteúdo ao usar âncora */
    #sobre-texto-ancora {
        scroll-margin-top: 110px;
    }

    .sobre-texto h2 {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        letter-spacing: 3px;
        font-size: 2rem;
        color: var(--cor-marinho);
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 3px solid var(--cor-dourado);
        /* Linha dourada abaixo do título */
    }

    .sobre-texto p {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Botão da seção Sobre — estilo outline com animação de underline */
    .sobre-texto .btn {
        position: relative;
        display: inline-block;
        margin-top: 28px;
        background-color: transparent;
        color: var(--cor-marinho);
        padding: 14px 36px;
        border-radius: 0;
        border: 2px solid var(--cor-marinho);
        font-weight: 400;
        font-size: 1.2rem;
        text-transform: none;
        letter-spacing: 0.3px;
        transition: color 0.3s ease;
        line-height: 1;
        overflow: hidden;
    }

    /* Linha decorativa base (sempre visível) */
    .sobre-texto .btn::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: rgba(184, 139, 101, 0.35);
    }

    /* Linha que expande no hover */
    .sobre-texto .btn::after {
        content: "";
        transition: none;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background-color: var(--cor-marinho);
    }

    .sobre-texto .btn:hover {
        background-color: transparent;
        color: var(--cor-marinho);
        border-color: transparent;
    }

    .sobre-texto .btn:hover::after {
        width: 100%;
        transition: width 0.35s ease;
        /* Underline desliza da esquerda para direita */
    }


    /* ============================================
    LIGHTBOX DA GALERIA
    ============================================ */

    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.92);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        touch-action: pinch-zoom;
        /* Permite zoom com dois dedos no mobile */
    }

    .lightbox.ativo {
        display: flex;
    }

    .lightbox-imagem {
        max-width: 90%;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 4px;
    }

    .lightbox-fechar {
        position: absolute;
        top: 24px;
        right: 36px;
        font-size: 2.5rem;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        transition: color 0.3s;
    }

    .lightbox-fechar:hover {
        color: var(--cor-dourado);
    }

    .lightbox-seta {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        color: #fff;
        cursor: pointer;
        padding: 10px 18px;
        user-select: none;
        transition: color 0.3s;
    }

    .lightbox-seta:hover {
        opacity: 0.7;
    }

    .lightbox-anterior {
        left: 10px;
    }

    .lightbox-proxima {
        right: 10px;
    }


    /* ============================================
    SERVIÇOS
    ============================================ */

    #servicos {
        padding: 80px;
        background-color: #f9f9f9;
        text-align: center;
        scroll-margin-top: 80px;
    }

    #servicos h2 {
        font-family: 'Lato', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--cor-marinho);
        text-transform: uppercase;
        letter-spacing: 3px;
        line-height: 1.3;
        margin-bottom: 50px;
    }

    .secao-subtitulo {
        font-size: 1.1rem;
        letter-spacing: 1.2px;
        color: var(--cor-dourado);
        font-weight: 700;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 900px;
        margin: 0 auto;
    }

    .card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-top: 4px solid var(--cor-dourado);
        /* Borda dourada no topo de cada card */
        padding: 34px 28px;
        min-height: 240px;
        border-radius: 4px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(41, 171, 226, 0.35);
    }

    .card h3 {
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 18px;
        line-height: 1.35;
    }

    .card p {
        font-family: 'Lato', sans-serif;
        font-size: 0.95rem;
        font-weight: 400;
        color: #555;
        line-height: 1.6;
    }


    /* ============================================
    GALERIA
    ============================================ */

    #galeria {
        padding: 80px 40px;
        text-align: center;
        background-color: #f9f9f9;
    }

    #galeria h2 {
        font-size: 2rem;
        color: var(--cor-marinho);
        margin-bottom: 50px;
    }

    .galeria-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .galeria-item img {
        width: 100%;
        height: 290px;
        object-fit: cover;
        display: block;
        cursor: pointer;
    }

    /* Animações de revelar ao rolar — JS adiciona .visivel via IntersectionObserver */
    .revelar-esquerda {
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .revelar-direita {
        opacity: 0;
        transform: translateX(60px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .revelar-baixo {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .visivel {
        opacity: 1;
        transform: translate(0);
        /* Reseta qualquer translateX/Y */
    }


    /* ============================================
    CLIENTES (CARROSSEL DE LOGOS)
    ============================================ */

    #clientes {
        padding: 50px 0;
        background-color: #fff;
        text-align: center;
        overflow: hidden;
    }

    .clientes-titulo {
        font-size: 0.8rem;
        letter-spacing: 3px;
        color: var(--cor-marinho);
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .carrossel-empresas {
        overflow: hidden;
        width: 100%;
    }

    /* Faixa de logos duplicada para animação infinita sem salto */
    .logos-deslizantes {
        display: flex;
        align-items: center;
        gap: 60px;
        width: max-content;
        animation: deslizar 20s linear infinite;
    }

    .logos-deslizantes img {
        width: 150px;
        height: 75px;
        object-fit: contain;
        transition: opacity 0.3s, filter 0.3s;
    }

    /* Move a faixa 50% (equivalente à primeira metade, que é idêntica à segunda) */
    @keyframes deslizar {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }


    /* ============================================
    DIFERENCIAIS
    ============================================ */

    #diferenciais {
        position: relative;
        background-image: url('images/servico-bar-drinks-evento.jpg');
        background-size: cover;
        background-position: center 40%;
        background-attachment: fixed;
        /* Parallax nativo — desabilitado no mobile via JS */
        padding: 100px 40px;
    }

    .diferenciais-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.78);
        /* Overlay escuro para legibilidade do texto */
    }

    .diferenciais-conteudo {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .diferenciais-subtitulo {
        display: block;
        font-size: 0.85rem;
        letter-spacing: 3px;
        color: var(--cor-dourado);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .diferenciais-conteudo h2 {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 60px;
    }

    .diferenciais-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 colunas no desktop */
        gap: 40px;
    }

    .diferencial-item {
        color: #fff;
    }

    .diferencial-icone {
        display: block;
        font-size: 2rem;
        color: var(--cor-dourado);
        margin-bottom: 15px;
    }

    .diferencial-item h3 {
        font-size: 1.5rem;
        font-family: 'Cormorant Garamond', serif;
        /* Fonte elegante para os títulos dos diferenciais */
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--cor-dourado);
        margin-bottom: 10px;
    }

    .diferencial-item p {
        font-size: 0.95rem;
        color: #ccc;
        line-height: 1.7;
    }


    /* ============================================
    DEPOIMENTOS
    ============================================ */

    #depoimentos {
        padding: 80px 60px;
        background-color: #f5f0e8;
        text-align: center;
    }

    .depoimentos-subtitulo {
        display: block;
        font-size: 0.85rem;
        letter-spacing: 3px;
        color: var(--cor-dourado);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    #depoimentos h2 {
        font-family: 'Lato', sans-serif;
        font-size: 2.5rem;
        color: var(--cor-marinho);
        text-transform: uppercase;
        letter-spacing: 5px;
        margin-bottom: 60px;
    }

    /* Carrossel Swiper */
    .carrossel-depoimentos {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 0;
        overflow: hidden;
    }

    .carrossel-depoimentos .swiper-wrapper {
        align-items: stretch;
        height: auto !important;
    }

    .carrossel-depoimentos .swiper-slide {
        height: 320px !important;
        display: flex !important;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* Slide ativo — levemente maior com borda dourada */
    .carrossel-depoimentos .swiper-slide-active {
        transform: scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
        border: 1px solid var(--cor-dourado);
        z-index: 2;
    }

    /* Card individual */
    .cartao-depoimento {
        background-color: #fff;
        padding: 40px 40px 34px;
        border-radius: 2px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        text-align: center;
        position: relative;
        height: 320px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box;
        overflow: visible;
    }

    .texto-depoimento {
        font-size: 18px;
        line-height: 28px;
        font-style: italic;
        text-align: center;
        color: #555;
    }

    /* Aspas decorativas via CSS pseudo-elementos */
    .texto-depoimento::before,
    .texto-depoimento::after {
        color: #b79675;
        font-size: 42px;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        vertical-align: -9px;
    }

    .texto-depoimento::before {
        content: "\201C";
        /* Abre aspas */
        margin-right: 15px;
    }

    .texto-depoimento::after {
        content: "\201D";
        /* Fecha aspas */
        margin-left: 15px;
    }

    .nome-cliente {
        display: block;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--cor-dourado);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: auto !important;
        padding-top: 34px;
        margin-bottom: 20px;
    }

    .controles-depoimentos {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 22px;
    }

    /* Bolinhas de paginação */
    .paginacao-depoimentos {
        position: static !important;
        transform: none !important;
        margin-top: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .paginacao-depoimentos .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #ccc;
        opacity: 1;
    }

    .paginacao-depoimentos .swiper-pagination-bullet-active {
        background-color: var(--cor-dourado);
    }

    /* Setas manuais */
    .seta-anterior,
    .seta-proxima {
        width: 36px;
        height: 36px;
        border: 1px solid #b88b65;
        color: #b88b65;
        background: transparent;
        cursor: pointer;
        font-size: 1.7rem;
        position: static;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding-bottom: 3px;
    }

    .seta-anterior:hover,
    .seta-proxima:hover {
        background-color: #b88b65;
        color: rgba(255, 255, 255, 0.8);
        border-color: #b88b65;
    }


    /* ============================================
    ORÇAMENTO (CTA)
    ============================================ */

    #orcamento-destaque {
        background-color: #e8eef6;
        padding: 120px 20px;
        position: relative;
    }

    .orcamento-box {
        max-width: 700px;
        margin: 0 auto;
        background-color: #fff;
        padding: 60px;
        text-align: center;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .orcamento-subtitulo {
        display: block;
        color: #b88b65;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .orcamento-box h2 {
        font-family: 'Lato', sans-serif;
        font-size: 2.6rem;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--cor-marinho);
        margin-bottom: 15px;
    }

    .orcamento-box p {
        color: #777;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .btn-orcamento-box {
        display: inline-block;
        border: 1px solid #b88b65;
        color: #b88b65;
        padding: 12px 30px;
        transition: 0.3s;
    }

    .btn-orcamento-box:hover {
        background-color: #b88b65;
        color: #fff;
    }

    /* ============================================
   FORMULÁRIO DE ORÇAMENTO
   ============================================ */

    .orcamento-divisor {
        display: flex;
        align-items: center;
        text-align: center;
        color: #999;
        font-size: 0.85rem;
        margin: 30px 0 20px;
    }

    .orcamento-divisor::before,
    .orcamento-divisor::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ddd;
    }

    .orcamento-divisor span {
        padding: 0 15px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        text-align: left;
        margin-bottom: 24px;
    }



    .form-campo {
        min-width: 0;
    }

    .form-campo-largo {
        grid-column: span 2;
    }

    .form-campo label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--cor-marinho);
        margin-bottom: 6px;
    }

    .form-campo input,
    .form-campo select,
    .form-campo textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid transparent;
        background-color: #e8eef6;
        border-radius: 4px;
        font-family: 'Lato', sans-serif;
        font-size: 0.95rem;
        cursor: text;
        color: #333;
        transition: border-color 0.3s;
    }

    .form-campo input:focus,
    .form-campo select:focus,
    .form-campo textarea:focus {
        outline: none;
        border-color: var(--cor-dourado);
        background-color: #fff;
    }

    .obrigatorio {
        color: var(--cor-dourado);
        font-size: 1.1rem;
    }

    .form-campo textarea {
        resize: vertical;
    }

    .erro-campo {
        display: block;
        color: #c0392b;
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .form-erro-aviso {
        color: #7a5c00;
        background-color: #fdf3d1;
        border: 1px solid #e8c547;
        border-radius: 4px;
        padding: 10px 14px;
    }

    .btn-form-enviar {
        width: 100%;
        background-color: var(--cor-marinho);
        color: #fff;
        padding: 14px 30px;
        border: none;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .btn-form-enviar:hover {
        background-color: #24365e;
    }

    .form-erro {
        display: none;
        color: #c0392b;
        font-size: 0.85rem;
        text-align: center;
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .form-sucesso {
        display: none;
        text-align: center;
        padding: 30px 10px;
    }

    .form-sucesso.ativo {
        display: block;
    }

    .form-sucesso-icone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: var(--cor-dourado);
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .form-sucesso h3 {
        font-family: 'Lato', sans-serif;
        font-size: 1.4rem;
        color: var(--cor-marinho);
        margin-bottom: 10px;
    }

    .form-sucesso p {
        color: #777;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ============================================
    FOOTER
    ============================================ */

    footer {
        background-color: var(--cor-marinho);
        /* Azul marinho — alinhado à identidade da marca */
        color: #b0bfd4;
        /* Texto claro azulado para boa leitura sobre o fundo */
        position: relative;
        overflow: hidden;
    }

    /* Vídeo de fumaça em loop no fundo do footer */
    .footer-video-fundo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.35;
        /* Sutil — mais discreto sobre o azul marinho */
        z-index: 0;
    }

    /* Garante que o conteúdo fique acima do vídeo */
    .footer-topo,
    .footer-colunas,
    .footer-rodape {
        position: relative;
        z-index: 1;
    }

    /* Bloco da logo no topo do footer */
    .footer-topo {
        text-align: left;
        max-width: 500px;
        margin: 0;
        padding: 20px 24px 0px;
    }

    .footer-topo .footer-logo {
        margin: 0 0 18px;
    }

    .footer-logo {
        height: 70px;
        width: auto;
        margin-bottom: 0;
    }

    /* Três colunas: Contato / Endereço / Redes Sociais */
    .footer-colunas {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 24px 20px;
        text-align: left;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .footer-titulo-col {
        font-family: 'Lato', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 22px;
    }

    /* Coluna Contato */
    .footer-contato-lista {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .footer-contato-lista li {
        font-size: 0.9rem;
        color: #b0bfd4;
        /* Azul acinzentado claro — legível sobre o marinho */
        display: flex;
        gap: 8px;
        justify-content: flex-start;
    }

    .footer-contato-lista a {
        color: #b0bfd4;
        transition: color 0.3s;
    }

    .footer-contato-lista a:hover {
        color: var(--cor-dourado);
        /* Dourado no hover — consistente com a identidade */
    }

    .footer-horario-titulo {
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin-top: 28px;
        margin-bottom: 10px;
    }

    .footer-horario {
        font-size: 1rem;
        font-weight: 500;
        color: #c8a98a;
        /* Tom dourado suave para o horário */
        line-height: 1.6;
    }

    /* Coluna Endereço */
    .footer-endereco {
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.8;
    }

    /* Coluna Redes Sociais */
    .footer-redes {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .footer-rede {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: fit-content;
        height: auto;
        border: none;
        border-radius: 0;
        color: #b0bfd4;
        transition: color 0.3s;
    }

    .footer-rede:hover {
        color: var(--cor-dourado);
    }

    .footer-rede svg {
        width: 26px;
        height: 26px;
    }

    .footer-rede img {
        width: 26px;
        height: 26px;
    }

    .footer-rede-insta img {
        width: 40px;
        height: 40px;
        filter: brightness(0) invert(1);
        /* Logo do Instagram branca */
        transition: opacity 0.3s;
    }

    .footer-rede-insta:hover img {
        filter: brightness(0) saturate(100%) invert(75%) sepia(53%) saturate(429%) hue-rotate(0deg) brightness(95%) contrast(92%);
    }

    /* Linha divisória e copyright */
    .footer-rodape {
        border-top: 1px solid #2e4070;
        /* Azul um pouco mais claro que o fundo — divisória sutil */
        text-align: center;
        padding: 16px 24px;
        font-size: 0.82rem;
        color: #7a90b0;
        /* Tom intermediário — discreto mas legível */
    }


    /* ============================================
    BOTÃO WHATSAPP FLUTUANTE
    ============================================ */

    .whatsapp-flutuante {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        /* Verde WhatsApp oficial */
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transition: transform 0.3s;
    }

    .whatsapp-flutuante:hover {
        transform: scale(1.05);
    }

    .whatsapp-flutuante img {
        width: 35px;
        height: 35px;
        max-width: none;
    }

    /* Tooltip "Fale agora" que aparece no hover */
    .wpp-tooltip {
        position: absolute;
        right: 75px;
        background-color: #fff;
        color: #333;
        padding: 12px 20px;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s;
    }

    /* ============================================
    MENU DE OPÇÕES DO WHATSAPP (2 NÚMEROS)
    ============================================ */

    .wpp-opcoes {
        display: none;
        position: absolute;
        bottom: 75px;
        right: 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        padding: 10px;
        min-width: 220px;
        flex-direction: column;
        gap: 6px;
    }

    .wpp-opcoes.ativo {
        display: flex;
    }

    .wpp-opcoes a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        color: #333;
        font-weight: 600;
        font-size: 0.95rem;
        transition: background-color 0.2s;
    }

    .wpp-opcoes a:hover {
        background-color: #f0f0f0;
    }

    .wpp-opcoes a img {
        width: 22px;
        height: 22px;
    }

    .whatsapp-flutuante:hover .wpp-tooltip {
        opacity: 1;
    }


    /* ============================================
    RESPONSIVIDADE MOBILE (até 900px)
    ============================================ */

    @media (max-width: 900px) {

        /* Header */
        header {
            padding: 0 16px;
        }

        header.scrolled {
            padding: 0 16px;
        }

        .logo {
            margin-right: auto;
        }

        /* Ativa o botão hambúrguer */
        .menu-toggle {
            display: flex;
        }

        /* Menu ocupa a tela inteira e desliza para baixo */
        nav {
            position: fixed;
            top: 90px;
            left: 0;
            width: 100%;
            height: 0;
            /* Fechado por padrão */
            overflow: hidden;
            background-color: #fff;
            transition: height 0.3s ease;
        }

        nav.active {
            height: calc(100vh - 90px);
            /* Abre até o fim da tela */
        }

        nav ul {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            padding: 30px 0;
        }

        nav ul li {
            width: 100%;
            text-align: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        nav ul li a {
            font-size: 1rem;
            color: var(--cor-dourado);
        }

        nav ul li a:hover {
            color: #9f7c2e;
        }

        header.scrolled nav ul li a {
            color: var(--cor-dourado);
        }

        header.scrolled nav ul li a:hover {
            color: #9f7c2e;
        }

        nav ul li .btn-orcamento {
            display: inline-block;
            border: 2px solid var(--cor-marinho);
            color: var(--cor-marinho) !important;
            background-color: transparent;
        }

        nav ul li .btn-orcamento:hover {
            background-color: var(--cor-dourado);
            color: #fff !important;
        }

        /* Hero */
        #hero {
            width: 100%;
        }

        .hero-swiper,
        .hero-slide {
            width: 100%;
        }

        .hero-content {
            margin-top: 200px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-tags {
            gap: 10px;
            flex-wrap: wrap;
        }

        .hero-tags span,
        .hero-tags a {
            font-size: 0.75rem;
        }

        /* Sobre */
        #sobre {
            padding: 60px 24px;
        }

        .sobre-container {
            flex-direction: column;
            /* Empilha imagem e texto verticalmente */
            gap: 32px;
        }

        .sobre-imagem img {
            height: 280px;
        }

        .sobre-texto h2 {
            font-size: 1.6rem;
        }

        .sobre-texto p {
            font-size: 0.95rem;
        }

        /* Serviços */
        #servicos {
            padding: 60px 24px;
            scroll-margin-top: 70px;
        }

        #servicos h2 {
            font-size: 1.3rem;
            margin-top: 8px;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
        }

        /* Card ativo no mobile — efeito de destaque ao centralizar no scroll */
        #servicos .card {
            opacity: 0.75;
            transform: scale(0.96);
            transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
        }

        #servicos .card.card-ativo {
            opacity: 1;
            transform: scale(1.03);
            box-shadow: 0 14px 35px rgba(41, 171, 226, 0.35);
            border-color: var(--cor-dourado);
        }

        .secao-subtitulo {
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .cards {
            grid-template-columns: 1fr;
        }

        .card {
            width: 100%;
            max-width: 360px;
        }

        /* Galeria — 2 colunas no mobile */
        .galeria-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        /* Última foto ocupa as 2 colunas */
        .galeria-item-larga {
            grid-column: span 2;
        }

        .galeria-item-larga img {
            height: 200px;
        }

        /* Lightbox mobile */
        .lightbox-fechar {
            top: 16px;
            right: 20px;
            font-size: 2rem;
        }

        .lightbox-seta {
            font-size: 3rem;
            padding: 16px 20px;
            color: #fff;
        }

        .lightbox-anterior {
            left: 4px;
        }

        .lightbox-proxima {
            right: 4px;
        }

        .lightbox-imagem {
            max-width: 95%;
        }

        /* Diferenciais — parallax desabilitado no mobile */
        #diferenciais {
            padding: 70px 24px;
            background-attachment: scroll;
            /* fixed não funciona bem em iOS */
            background-position: center;
        }

        .diferenciais-grid {
            grid-template-columns: 1fr;
            /* Uma coluna no mobile */
            gap: 36px;
        }

        .diferencial-item h3 {
            font-size: 1.3rem;
        }

        .diferencial-item p {
            font-size: 0.85rem;
        }

        /* Depoimentos */
        #depoimentos {
            padding: 60px 16px;
        }

        #depoimentos h2 {
            font-size: 1.8rem;
            letter-spacing: 2px;
        }

        .carrossel-depoimentos {
            overflow: hidden;
        }

        .carrossel-depoimentos .swiper-slide {
            height: auto !important;
        }

        .cartao-depoimento {
            padding: 28px 20px;
            height: auto !important;
            min-height: 280px;
        }

        .texto-depoimento {
            font-size: 15px;
            line-height: 24px;
        }

        /* Orçamento */
        .orcamento-box {
            padding: 40px 24px;
        }

        .orcamento-box h2 {
            font-size: 1.6rem;
            letter-spacing: 2px;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .form-campo-largo {
            grid-column: span 1;
        }

        /* WhatsApp flutuante — esconde tooltip no mobile */
        .wpp-tooltip {
            display: none;
        }

        /* Footer — empilha as colunas */
        .footer-colunas {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-video-fundo {
            opacity: 0.35;
            /* Ainda mais sutil no mobile */
        }

        /* Geral */
        .container {
            overflow-x: hidden;
            width: 100%;
        }
    }