:root {
            --black: #1a1a1a;
            --white: #ffffff;
            --gray-light: #f9f9f9;
            --gray-medium: #e0e0e0;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- NAVEGAÇÃO --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--gray-medium);
            transition: var(--transition);
        }

        nav.scrolled {
            padding: 10px 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* --- LOGO HORIZONTAL CSS --- */
        .logo-horizontal {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--black);
            transition: var(--transition);
            z-index: 1001;
            /* Fica acima do menu mobile */
        }

        .logo-horizontal:hover {
            opacity: 0.8;
        }

        .logo-jp {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -2px;
            margin-right: 10px;
            color: #333;
        }

        .logo-text-group {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 4px;
        }

        .logo-rainbow {
            height: 5px;
            width: 100%;
            margin-bottom: 4px;
            background: linear-gradient(to right,
                    #393688 0%, #393688 11.1%,
                    #8FDCF5 11.1%, #8FDCF5 22.2%,
                    #5EB4BC 22.2%, #5EB4BC 33.3%,
                    #00A651 33.3%, #00A651 44.4%,
                    #A7D037 44.4%, #A7D037 55.5%,
                    #FFF200 55.5%, #FFF200 66.6%,
                    #FFC20E 66.6%, #FFC20E 77.7%,
                    #F37021 77.7%, #F37021 88.8%,
                    #ED1C24 88.8%, #ED1C24 100%);
        }

        .logo-adesivos {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 2px;
            line-height: 1;
            color: #333;
        }

        /* --- LINKS DO MENU --- */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--black);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
            transition: var(--transition);
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        .btn-budget {
            border: 1px solid var(--black);
            padding: 10px 20px;
            font-weight: 600;
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-budget:hover {
            background: var(--black);
            color: var(--white);
        }

        .mobile-only {
            display: none;
        }

        /* --- MENU HAMBÚRGUER --- */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
            /* Sempre acima do menu mobile */
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: var(--black);
            transition: 0.4s ease;
        }

        /* --- HERO SLIDER --- */
        .hero-slider {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-content {
            padding: 2rem 1rem;
            position: relative;
            z-index: 3;
            color: var(--black);
            max-width: 900px;
            background-color: rgba(255, 255, 255, .9);
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1rem, 5vw, 1.5rem);
            font-weight: 400;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            width: 100%;
            text-align: center;
            z-index: 10;
        }

        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            margin: 0 8px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background-color: var(--white);
        }

        /* --- SEÇÃO SERVIÇOS --- */
        .section-padding {
            padding: 80px 5%;
        }

        .section-title {
            width: 100%;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .section-title div {
            width: 50px;
            height: 1px;
            background: var(--black);
            margin: 0 auto;
        }

        .grid-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        .service-card {
            text-align: center;
            overflow: hidden;
        }

        .img-container {
            width: 100%;
            overflow: hidden;
            background: var(--gray-light);
            margin-bottom: 15px;
        }

        .img-container img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .service-card:hover .img-container img {
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .service-card p {
            font-size: 0.85rem;
            color: #666;
            padding: 0 10px;
        }

        /* --- GALERIA PROMOCIONAL --- */
        .promo-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 40px;
        }

        /* --- CONTATO --- */
        .contact {
            background-color: var(--gray-light);
            text-align: center;
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            text-align: left;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            position: relative;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 1px;
            background: var(--black);
        }

        .contact-info p {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.6;
        }

        .contact-info p strong {
            color: var(--black);
            display: block;
            margin-bottom: 2px;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .contact-info a {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-info a:hover {
            opacity: 0.7;
        }

        .contact-form {
            display: grid;
            gap: 15px;
            width: 100%;
        }

        /* --- STATUS DO FORMULÁRIO (AJAX) --- */
        .form-status {
            padding: 12px 16px;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            border-radius: 2px;
            display: none;
        }

        .form-status:not(:empty) {
            display: block;
        }

        .form-status--success {
            background: #f0faf4;
            border: 1px solid #a8d5b5;
            color: #2d6a4f;
        }

        .form-status--error {
            background: #fff5f5;
            border: 1px solid #f5c6c6;
            color: #9b2226;
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        input,
        textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--gray-medium);
            font-family: 'Montserrat', sans-serif;
            background: var(--white);
            outline: none;
            transition: var(--transition);
        }

        input:focus,
        textarea:focus {
            border-color: var(--black);
        }

        .btn-submit {
            background: var(--black);
            color: var(--white);
            padding: 15px 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            margin-top: 10px;
        }

        .btn-submit:hover {
            opacity: 0.8;
        }

        /* --- BOTOES E ELEMENTOS FLUTUANTES --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1010;
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        /* --- FOOTER SEO --- */
        footer {
            padding: 60px 5% 20px;
            border-top: 1px solid var(--gray-medium);
            text-align: center;
        }

        .keywords {
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .copyright {
            font-size: 0.7rem;
            color: #ccc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- RESPONSIVIDADE & MENU MOBILE --- */
        @media (max-width: 768px) {
            .btn-budget {
                display: none;
                /* Esconde botão do topo no celular */
            }

            .hamburger {
                display: flex;
                /* Mostra menu hambúrguer */
            }

            /* Estilos do Menu Mobile Aberto */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                /* Escondido para fora da tela */
                width: 100%;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
                gap: 40px;
            }

            .nav-links.active {
                right: 0;
                /* Menu entra na tela */
            }

            .nav-links a {
                font-size: 1.2rem;
                /* Links maiores no celular */
            }

            .mobile-only {
                display: block;
                /* Mostra botão de orçamento dentro do menu mobile */
            }

            .mobile-only a {
                border: 1px solid var(--black);
                padding: 10px 30px;
                font-weight: 600;
            }

            /* Animação do ícone Hambúrguer virando um "X" */
            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            /* Ajustes gerais responsivos */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .contact-info {
                align-items: center;
            }

            .contact-info h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .promo-gallery {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .logo-jp {
                font-size: 28px;
            }

            .logo-adesivos {
                font-size: 12px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }