        /* Reset e Estilos Gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #9b9b9b;
            --primary-dark: #6B5438;
            --secondary: #333333;
            --light: #F5F1EB;
            --accent: #C4A484;
            --text: #333333;
            --text-light: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        section {
            padding: 80px 20px;
        }

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

        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
        }

        p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff8e00;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-whatsapp {
            background-color: #25D366;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        /* Header e Navegação */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff8e00;
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
        }

        .desktop-nav li {
            margin-left: 30px;
        }

        .desktop-nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .desktop-nav a:hover {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 1001;
        }

        /* Seção Hero */
        #hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/principal.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        /* Seção Portfólio */
        #portfolio {
            background-color: var(--light);
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 20px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background-color: #ff8e00;
            color: white;
            border-color: #ff8e00;
        }

        .environments-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .environment-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

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

        .card-image {
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .environment-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            margin-bottom: 10px;
        }

        .media-count {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .media-count i {
            margin-right: 5px;
        }

        /* Seção Processo */
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            margin: 10px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary);
        }

        /* Seção Sobre */
        #about {
            background-color: var(--light);
        }

        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Seção Contato */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-detail i {
            width: 50px;
            height: 50px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

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

        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background-color 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* WhatsApp Flutuante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Modal/Galeria Personalizado */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1100;
            overflow-y: auto;
        }

        .modal-content {
            position: relative;
            background-color: white;
            margin: 40px auto;
            max-width: 1200px;
            width: 95%;
            border-radius: 8px;
            overflow: hidden;
            padding-bottom: 20px;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2.5rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-header {
            padding: 30px 30px 20px;
            background-color: var(--primary);
            color: white;
        }

        .modal-header h2 {
            color: white;
            text-align: left;
            margin-bottom: 10px;
        }

        .modal-header h2:after {
            display: none;
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Galeria Personalizada */
        .gallery-container {
            padding: 20px;
        }

        .main-gallery-view {
            position: relative;
            height: 500px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 8px;
            background-color: #000;
        }

        @media (max-width: 768px) {
            .main-gallery-view {
                height: 300px;
            }
        }

        .main-media {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-media img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .main-media iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .gallery-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            pointer-events: none;
        }

        .gallery-controls button {
            pointer-events: all;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-controls button:hover {
            background-color: var(--primary);
        }

        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        @media (max-width: 992px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .thumbnail {
            height: 100px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border-color: var(--primary);
        }

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

        .video-thumbnail::after {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .modal-description {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
        }

        /* Menu Mobile - Corrigido */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1002;
            padding: 100px 30px 30px;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin-bottom: 20px;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 15px;
            font-size: 1.2rem;
            text-decoration: none;
            color: var(--text);
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .mobile-menu a:hover {
            background-color: var(--light);
            color: var(--primary);
            transform: translateX(5px);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                position: relative;
                z-index: 1003;
            }

            .mobile-menu-btn.active i {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 15px;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .process-steps {
                flex-direction: column;
            }

            .process-step {
                margin-bottom: 30px;
            }

            .modal-content {
                margin: 20px auto;
                width: 98%;
            }

            .mobile-menu {
                width: 280px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 250px;
            }

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

        /* Logo e Header */
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

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

        .logo-img {
            height: 1.8em;
            /* Altura relativa ao tamanho da fonte */
            width: auto;
            /* Mantém a proporção da imagem */
            max-height: 60px;
            /* Altura máxima para telas grandes */
            min-height: 40px;
            /* Altura mínima para telas pequenas */
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        /* Responsividade para o logo */
        @media (max-width: 768px) {
            .logo-img {
                height: 1.6em;
                /* Um pouco menor em mobile */
                max-height: 50px;
                min-height: 35px;
            }

            .logo-text {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 1.4em;
                max-height: 45px;
                min-height: 30px;
            }

            .logo-text {
                font-size: 1.2rem;
            }
        }

        /* Se quiser que o logo some completamente em telas muito pequenas */
        @media (max-width: 360px) {
            .logo-text {
                display: none;
                /* Esconde o texto, mantém só o logo */
            }

            .logo-img {
                height: 50px;
                /* Tamanho fixo quando só tem o logo */
                width: auto;
            }
        }

        /* Logo no footer - SEM filtro branco */
.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo-img {
    mix-blend-mode: multiply;
    height: 2em;
    width: auto;
    max-height: 50px;
    min-height: 30px;
    object-fit: contain;
    /* REMOVI o filtro que deixava branco */
    transition: all 0.3s ease;
}

.footer-logo-text {
    font-size: inherit;
    color: white;
    font-weight: inherit;
}

/* Efeito hover suave */
.footer-logo-title:hover .footer-logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}