﻿
        :root {
            --primary: #30a3da;
            --secondary: #990a0f;
            --dark: #1e3a5f;
            --dark-deep: #0e1a2b;
            --gray: #666;
            --light-gray: #f5f5f5;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 200; /* Extra Light */
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav a, .btn {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        /* HEADER */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 5px solid #d9d9d9;
            transition: var(--transition);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 66px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

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

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #1ebe57;
            transform: translateY(-2px);
        }

        /* HERO SLIDER */
        .hero-slider {
            height: 85vh;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-top: -80px; /* Subir títulos */
        }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 30%, transparent 60%);
        }

        /* SLIDER NAV */
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 13%;
            z-index: 20;
            display: flex;
            gap: 20px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--dark);
            transition: var(--transition);
            background: transparent;
        }

        .nav-btn:hover {
            background: var(--dark);
            color: white;
        }

        .nav-btn svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .slide-content {
            position: relative;
            z-index: 10;
            text-align: left;
            color: white;
            width: 100%;
            max-width: 1400px;
            padding: 0 5%;
            margin-top: -80px;
        }

        .slide-content h1, 
        .slide-content p, 
        .hero-btns {
            max-width: 700px;
        }

        .slide-content h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
            text-shadow: 0 2px 10px rgba(255,255,255,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            color: #333;
            letter-spacing: 1px;
            font-weight: 400;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: flex-start;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 14px;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }

        .btn:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(48, 163, 218, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--dark);
            color: var(--dark);
        }

        .btn-outline:hover {
            background: var(--dark);
            color: white;
        }

        /* SECTION COMMON */
        section {
            padding: 100px 5%;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 13px;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            font-weight: 800;
        }

        /* ABOUT SECTION */
        #quem-somos {
            padding: 100px 0;
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-img {
            position: relative;
            height: 550px;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }

        .about-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.1rem;
        }

        /* SERVICES FLIP CARDS */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* Força 5 colunas em uma linha */
            gap: 15px;
            max-width: 1450px;
            margin: 0 auto;
        }

        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 340px; /* Reduzido para caber melhor na linha */
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.04);
        }

        .flip-card-front {
            background-color: #f1f5f9; /* Cinza suave (aproximadamente 25% de preto/escuro) */
            color: var(--dark);
            border: 1px solid #e2e8f0;
        }

        .flip-card-back {
            background-color: var(--dark);
            color: white;
            transform: rotateY(180deg);
        }

        .flip-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .flip-card-front img.card-symbol {
            height: 45px; /* Tamanho delicado */
            width: auto;
            margin-bottom: 25px;
            transition: var(--transition);
            filter: grayscale(1) opacity(0.8); /* Efeito mais sóbrio inicial */
        }

        .flip-card:hover .flip-card-front img.card-symbol {
            transform: scale(1.1);
            filter: grayscale(0) opacity(1);
        }

        .flip-card-back p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 20px;
        }

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

        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
            .flip-card { height: 220px; }
        }

        .flip-card-back .btn {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            padding: 10px 25px;
            font-size: 13px;
        }

        .flip-card-back .btn:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        /* PARALLAX SECTION */
        .parallax-section {
            height: 60vh;
            background-image: url('https://www.protesiart.com.br/wp-content/uploads/2026/06/69fa46c205e7f_parallax.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 13%;
            overflow: hidden;
            max-width: none !important; /* Override global constraint */
            width: 100%;
            margin: 0 !important;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 26, 43, 0.4);
        }

        .typewriter h2 {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
        }

        .typewriter.active h2 {
            animation: typing 3s steps(40, end) forwards;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        /* LOGISTICS AND PERIODS (DIFFERENTIALS) */
        .differentials {
            background: #f5f5f5;
            padding: 100px 0;
            max-width: none !important;
            width: 100%;
        }

        .differentials .section-header h2 {
            color: var(--dark);
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .diff-pill {
            display: flex;
            align-items: center;
            gap: 25px;
            background: white;
            padding: 30px 45px;
            border-radius: 100px;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            text-align: left;
        }

        .diff-pill:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            background: var(--dark);
            color: white;
            border-color: var(--dark);
        }

        .diff-icon {
            min-width: 70px;
            height: 70px;
            background: #f8fafc;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: var(--transition);
        }

        .diff-pill:hover .diff-icon {
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .diff-text h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: inherit;
        }

        .diff-text p {
            font-size: 1rem;
            opacity: 0.8;
            margin: 0;
        }

        /* --- UNIFIED FOOTER & CONTACT SECTION --- */
        .footer-unified {
            background: #f8fafc; /* Premium light gray/blue background */
            color: var(--dark);
            padding: 80px 0 0;
            border-top: 1px solid #e2e8f0;
            position: relative;
        }

        .footer-unified-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.5fr;
            gap: 50px;
            align-items: start;
            margin-bottom: 60px;
        }

        .footer-unified-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo img {
            height: 70px;
            width: auto;
            margin-bottom: 20px;
            display: inline-block;
        }

        .brand-desc {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .footer-sub-title,
        .footer-unified-col h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-sub-title::after,
        .footer-unified-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .footer-sub-title {
            margin-top: 15px;
            font-size: 1rem;
        }

        .footer-nav-links {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .footer-nav-links li a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-nav-links li a:hover {
            color: var(--primary);
            padding-left: 3px;
        }

        .unified-contact-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .unified-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--dark);
            font-weight: 500;
        }

        .unified-contact-item i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .unified-contact-item a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .unified-contact-item a:hover {
            color: var(--primary);
        }

        .unified-form-box {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 15px 45px rgba(14, 26, 43, 0.04);
            border: 1px solid #e2e8f0;
        }

        .unified-form-box h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-family: 'Roboto', sans-serif;
            font-size: 0.95rem;
            background: #f8fafc;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 4px 12px rgba(48, 163, 218, 0.08);
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 15px rgba(48, 163, 218, 0.15);
        }

        .btn-submit:hover {
            background: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
        }

        /* Bottom Copyright Bar */
        .copyright-bar {
            background: var(--dark); /* Official dark blue color band */
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            width: 100%;
            max-width: none !important;
        }

        .copyright-bar p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin: 0;
        }

        .copyright-bar a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .copyright-bar a:hover {
            color: var(--primary);
        }

        @media (max-width: 992px) {
            .footer-unified-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .footer-unified-col {
                align-items: center;
                text-align: center;
            }
            .footer-sub-title::after,
            .footer-unified-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .unified-contact-item {
                justify-content: center;
            }
            .footer-nav-links {
                justify-content: center;
            }
            .unified-form-box {
                padding: 30px;
            }
        }

        /* GALLERY (From servicos) */
        .gallery-section {
            padding: 100px 0;
            background: #fff;
        }

        .gallery-header { text-align: center; margin-bottom: 50px; }
        .gallery-header h2 { font-size: 2.5rem; color: var(--dark); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0; /* Grudadas */
            padding: 0;
            width: 100%;
        }

        .gallery-item {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            background: var(--dark-deep);
        }

        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: var(--transition);
            filter: brightness(0.6) saturate(0.5); /* Escurecidas por padrão */
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(48, 163, 218, 0.4); /* Overlay Azul */
            z-index: 1;
            transition: var(--transition);
        }

        .gallery-item:hover img { 
            transform: scale(1.05); 
            filter: brightness(1) saturate(1); /* Clareia no hover */
        }

        .gallery-item:hover::before {
            background: rgba(48, 163, 218, 0); /* Remove azul no hover */
        }

        /* LIGHTBOX REFINED */
        .lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(14, 26, 43, 0.98);
            z-index: 2000;
            display: none;
            align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lightbox.active { display: flex; }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox img { 
            max-width: 100%; 
            max-height: 80vh; 
            border-radius: 5px;
            box-shadow: 0 30px 100px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
        }
        
        .lightbox-close { 
            position: absolute; top: -50px; right: 0; 
            color: white; font-size: 2.5rem; cursor: pointer; 
            opacity: 0.7; transition: 0.3s;
        }
        .lightbox-close:hover { opacity: 1; }

        .lb-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            color: white;
            width: 60px; height: 60px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 1.2rem;
            transition: 0.3s;
            z-index: 10;
        }

        .lb-arrow:hover { background: var(--primary); border-color: var(--primary); }
        .lb-prev { left: -80px; }
        .lb-next { right: -80px; }

section.container.politicas {
padding: 30px 5%;30px:;}

section.container.politicas h1 {
font-weight: 700;
padding: 0 0 30px;
}

section.container.politicas ul {
padding: 15px 35px 20px;
}

        @media (max-width: 1200px) {
            .lb-prev { left: 20px; }
            .lb-next { right: 20px; }
            .lightbox-close { top: 20px; right: 20px; }
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            #quem-somos, .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links {
                display: none;
            }
        }
    
/* Solucoes */

        :root {
            --primary: #30a3da;
            --secondary: #990a0f;
            --dark: #1e3a5f;
            --dark-deep: #0e1a2b;
            --gray: #666;
            --light-gray: #f8fafc;
            --white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
            padding-top: 86px; /* Space for fixed header */
        }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* HEADER (From Index) */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 5px solid #d9d9d9;
            transition: var(--transition);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 66px; width: auto; display: block; }

        .nav-links { display: flex; gap: 35px; }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

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

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        /* PAGE HERO */
        .page-hero {
            background: var(--dark-deep);
            color: white;
            padding: 120px 0 100px;
            text-align: center;
            background-image: url('https://www.protesiart.com.br/wp-content/uploads/2026/06/69fa46c205e7f_parallax.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(14, 26, 43, 0.8);
        }

        .page-hero-content { position: relative; z-index: 2; }
        .page-hero h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 600; }
        .page-hero p { font-size: 1.2rem; opacity: 0.8; letter-spacing: 1px; }

        /* BOLD SPLIT LAYOUT */
        .services-section { padding: 100px 0; }

        .split-box {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            margin-bottom: 60px;
            border: 1px solid #f0f0f0;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .split-box:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

        .split-info {
            background: var(--dark);
            color: white;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-info span { color: var(--primary); font-weight: 700; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 15px; }
        .split-info h3 { font-size: 2.8rem; font-weight: 200; line-height: 1.1; margin-bottom: 15px; }
        .split-info p { font-size: 1.1rem; opacity: 0.7; }

        .split-content { padding: 80px 60px; background: #f1f5f9; display: flex; flex-direction: column; justify-content: center; }

        .split-item { margin-bottom: 40px; }
        .split-item:last-child { margin-bottom: 0; }
        .split-item b { display: block; font-family: 'Inter', sans-serif; color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; font-weight: 600; }
        .split-item p { color: var(--gray); font-size: 1rem; line-height: 1.6; }

        /* GALLERY (From ideiapg) */
        .gallery-section {
            padding: 100px 0;
            background: #fff;
        }

        .gallery-header { text-align: center; margin-bottom: 50px; }
        .gallery-header h2 { font-size: 2.5rem; color: var(--dark); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0; /* Grudadas */
            padding: 0;
            width: 100%;
        }

        .gallery-item {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            background: var(--dark-deep);
        }

        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: var(--transition);
            filter: brightness(0.6) saturate(0.5); /* Escurecidas por padrão */
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(48, 163, 218, 0.4); /* Overlay Azul */
            z-index: 1;
            transition: var(--transition);
        }

        .gallery-item:hover img { 
            transform: scale(1.05); 
            filter: brightness(1) saturate(1); /* Clareia no hover */
        }

        .gallery-item:hover::before {
            background: rgba(48, 163, 218, 0); /* Remove azul no hover */
        }

        /* LIGHTBOX REFINED */
        .lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(14, 26, 43, 0.98);
            z-index: 2000;
            display: none;
            align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lightbox.active { display: flex; }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox img { 
            max-width: 100%; 
            max-height: 80vh; 
            border-radius: 5px;
            box-shadow: 0 30px 100px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
        }
        
        .lightbox-close { 
            position: absolute; top: -50px; right: 0; 
            color: white; font-size: 2.5rem; cursor: pointer; 
            opacity: 0.7; transition: 0.3s;
        }
        .lightbox-close:hover { opacity: 1; }

        .lb-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            color: white;
            width: 60px; height: 60px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 1.2rem;
            transition: 0.3s;
            z-index: 10;
        }

        .lb-arrow:hover { background: var(--primary); border-color: var(--primary); }
        .lb-prev { left: -80px; }
        .lb-next { right: -80px; }

        @media (max-width: 1200px) {
            .lb-prev { left: 20px; top: 115%; }
            .lb-next { right: 20px; top: 115%; }
            .lightbox-close { top: -55px; right: 0px; }
        }

        /* --- UNIFIED FOOTER & CONTACT SECTION --- */
        .footer-unified {
            background: #f8fafc; /* Premium light gray/blue background */
            color: var(--dark);
            padding: 80px 0 0;
            border-top: 1px solid #e2e8f0;
            position: relative;
        }

        .footer-unified-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.5fr;
            gap: 50px;
            align-items: start;
            margin-bottom: 60px;
        }

        .footer-unified-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo img {
            height: 70px;
            width: auto;
            margin-bottom: 20px;
            display: inline-block;
        }

        .brand-desc {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .footer-sub-title,
        .footer-unified-col h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-sub-title::after,
        .footer-unified-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .footer-sub-title {
            margin-top: 15px;
            font-size: 1rem;
        }

        .footer-nav-links {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .footer-nav-links li a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-nav-links li a:hover {
            color: var(--primary);
            padding-left: 3px;
        }

        .unified-contact-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .unified-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--dark);
            font-weight: 500;
        }

        .unified-contact-item i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .unified-contact-item a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .unified-contact-item a:hover {
            color: var(--primary);
        }

        .unified-form-box {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 15px 45px rgba(14, 26, 43, 0.04);
            border: 1px solid #e2e8f0;
        }

        .unified-form-box h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-family: 'Roboto', sans-serif;
            font-size: 0.95rem;
            background: #f8fafc;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 4px 12px rgba(48, 163, 218, 0.08);
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 15px rgba(48, 163, 218, 0.15);
        }

        .btn-submit:hover {
            background: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
        }

        /* Bottom Copyright Bar */
        .copyright-bar {
            background: var(--dark); /* Official dark blue color band */
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            width: 100%;
            max-width: none !important;
        }

        .copyright-bar p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin: 0;
        }

        .copyright-bar a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .copyright-bar a:hover {
            color: var(--primary);
        }

        @media (max-width: 992px) {
            .footer-unified-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .footer-unified-col {
                align-items: center;
                text-align: center;
            }
            .footer-sub-title::after,
            .footer-unified-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .unified-contact-item {
                justify-content: center;
            }
            .footer-nav-links {
                justify-content: center;
            }
            .unified-form-box {
                padding: 30px;
            }
        }

        @media (max-width: 992px) {
            .split-box { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-links { display: none; }
        }

/* WordPress integration */
body.admin-bar header {
    top: 32px;
}

.nav-links li,
.footer-nav-links li {
    list-style: none;
}

.nav-links li {
    margin: 0;
}

html {
    scroll-padding-top: 120px;
}

.services-section .split-box[id],
#quem-somos,
#diferenciais,
#contato {
    scroll-margin-top: 120px;
}

body.admin-bar .services-section .split-box[id],
body.admin-bar #quem-somos,
body.admin-bar #diferenciais,
body.admin-bar #contato {
    scroll-margin-top: 152px;
}

.protesiart-form-placeholder {
    background: #f8fafc;
    border: 1px dashed #30a3da;
    color: #1e3a5f;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    padding: 18px;
    text-align: center;
}

.unified-form-box .forminator-ui,
.unified-form-box .forminator-custom-form {
    margin: 0 !important;
}

.unified-form-box .forminator-row {
    margin: 0 0 18px !important;
    padding: 0 !important;
}

.unified-form-box .forminator-field,
.unified-form-box .forminator-col {
    margin: 0 !important;
    padding: 0 !important;
}

.unified-form-box .forminator-label,
.unified-form-box .forminator-description {
    display: none !important;
}

.unified-form-box input:not([type="hidden"]),
.unified-form-box textarea,
.unified-form-box select,
.unified-form-box .forminator-input,
.unified-form-box .forminator-textarea,
.unified-form-box .forminator-select2 {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color: #1e3a5f !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    min-height: 50px !important;
    outline: none !important;
    padding: 15px !important;
    transition: var(--transition) !important;
    width: 100% !important;
}

.unified-form-box input:not([type="hidden"]):focus,
.unified-form-box textarea:focus,
.unified-form-box select:focus,
.unified-form-box .forminator-input:focus,
.unified-form-box .forminator-textarea:focus {
    background: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(48, 163, 218, 0.08) !important;
}

.unified-form-box input::placeholder,
.unified-form-box textarea::placeholder,
.unified-form-box .forminator-input::placeholder,
.unified-form-box .forminator-textarea::placeholder {
    color: #777 !important;
    opacity: 1 !important;
}

.unified-form-box textarea,
.unified-form-box .forminator-textarea {
    min-height: 104px !important;
    resize: vertical !important;
}

.unified-form-box button,
.unified-form-box .forminator-button-submit {
    background: var(--primary) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 15px rgba(48, 163, 218, 0.15) !important;
    box-sizing: border-box !important;
    color: #fff !important;
    cursor: pointer;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    min-height: 52px !important;
    padding: 16px !important;
    text-align: center !important;
    text-transform: none !important;
    transition: var(--transition) !important;
    width: 100% !important;
}

.unified-form-box button:hover,
.unified-form-box .forminator-button-submit:hover {
    background: var(--dark) !important;
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2) !important;
    transform: translateY(-2px);
}

.unified-form-box .forminator-response-message {
    border-radius: 10px !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.9rem !important;
    margin: 0 0 18px !important;
    padding: 12px 14px !important;
}

.forminator-module-edit-link,
.forminator-edit-module,
.forminator-ui small a[href*="forminator"] {
    display: none !important;
}

@media (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

@media (max-width: 768px) {
    #quem-somos {
        padding: 30px 0;
        overflow: hidden;
    }

    #quem-somos .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 28px;
        align-items: stretch;
    }

    .about-img {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 22px;
        box-shadow: 0 14px 32px rgba(0,0,0,0.08);
        order: 1;
        width: 100%;
    }

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

    .about-content {
        order: 2;
        width: 100%;
    }

    .about-content .section-header {
        margin-bottom: 18px !important;
        text-align: left !important;
    }

    .about-content .section-header span {
        font-size: 0.72rem;
        letter-spacing: 3px;
    }

    .about-content h2 {
        font-size: 1.85rem;
        line-height: 1.28;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .about-content p {
        font-size: 0.98rem;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .about-content .btn {
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .differentials {
        padding: 50px 0;
        overflow: hidden;
    }

    .differentials .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .differentials .section-header {
        margin-bottom: 32px;
    }

    .differentials .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.35;
        max-width: 100%;
    }

    .diff-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px;
        margin-top: 32px;
        max-width: 100%;
        width: 100%;
    }

    .diff-pill {
        align-items: center;
        border-radius: 28px;
        box-sizing: border-box;
        gap: 16px;
        min-width: 0;
        padding: 22px 20px;
        width: 100%;
    }

    .diff-pill:hover {
        transform: none;
    }

    .diff-icon {
        flex: 0 0 52px;
        height: 52px;
        min-width: 52px;
        width: 52px;
        font-size: 1.15rem;
    }

    .diff-text {
        min-width: 0;
    }

    .diff-text h3 {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .diff-text p {
        font-size: 0.82rem;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    #quem-somos .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-img {
        aspect-ratio: 1 / 1;
    }

    .about-content h2 {
        font-size: 1.15rem;
    }

    .differentials .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .diff-pill {
        padding: 18px 16px;
    }
}

.mobile-menu-toggle {
    align-items: center;
    background: var(--dark);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    flex: 0 0 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 46px;
}

.mobile-menu-toggle span {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 13px;
    position: absolute;
    transition: var(--transition);
    width: 20px;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 15px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 22px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 29px;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    nav {
        position: relative;
        box-sizing: border-box;
        width: 100%;
    }

    .logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo img {
        height: 58px;
        max-width: min(280px, calc(100vw - 118px));
        object-fit: contain;
    }

    .whatsapp-btn {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 18px 30px rgba(14, 26, 43, 0.12);
        display: flex !important;
        flex-direction: column;
        gap: 0;
        left: 0;
        opacity: 0;
        padding: 12px 5% 18px;
        pointer-events: none;
        position: fixed;
        right: 0;
        top: 84px;
        transform: translateY(-12px);
        transition: var(--transition);
        visibility: hidden;
        width: 100%;
        z-index: 999;
    }

    body.admin-bar .nav-links {
        top: 116px;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links li,
    .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-links a {
        border-bottom: 1px solid #edf2f7;
        font-size: 15px;
        padding: 14px 0;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 782px) {
    body.admin-bar .nav-links {
        top: 130px;
    }
}

@media (max-width: 420px) {
    nav {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
        justify-content: space-between;
        padding-left: 18px;
        padding-right: 18px;
    }

    .logo {
        flex: 0 1 calc(100% - 58px);
        min-width: 0;
    }

    .logo img {
        height: 52px;
        max-width: 100%;
        width: auto;
    }

    .mobile-menu-toggle {
        flex: 0 0 44px;
        height: 44px;
        margin-left: 0;
        width: 44px;
    }

    .nav-links {
        top: 73px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 88px;
    }

    .services-section .split-box[id],
    #quem-somos,
    #diferenciais,
    #contato {
        scroll-margin-top: 0px;
    }

    body.admin-bar .services-section .split-box[id],
    body.admin-bar #quem-somos,
    body.admin-bar #diferenciais,
    body.admin-bar #contato {
        scroll-margin-top: 50px;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    [data-aos],
    [data-aos^="fade"],
    [data-aos][data-aos][data-aos-duration],
    body[data-aos-easing] [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }


section {
    padding: 30px 5%;
    margin: 0 auto;
}

.section-header h2 {
font-size: 1.5rem;
line-height: 1.2;
}

.flip-card h3 br {
display: none;
}

.flip-card h3 {
font-size: 1.1rem;
}

.parallax-section {
height: 35vh;
padding: 0 20px;
background-attachment: unset;
}

.typewriter {
    max-width: 100%;
    padding: 0;
}

.typewriter h2,
.typewriter.active h2 {
    animation: none !important;
    line-height: 1.35;
    max-width: 100%;
    overflow: visible;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
    width: auto;
    word-break: normal;
    font-size: 1.1em;
}

section.gallery-section {
padding: 30px 0;
}

.gallery-header h2 {
    font-size: 1.6rem;
}

.page-hero h1 {
    font-size: 1.6rem;
}

.page-hero {
padding: 50px 0 80px;
margin-top: -20px;
}

.services-section {
padding: 30px 0;
}

.split-info {
padding: 40px 30px;
}

.split-info h3 {
font-size: 1.8rem;
}

.split-content {
padding: 40px 30px;
}

.hero-slider {
margin-top: -20px;
height: 40vh;
}

.slide-content {
margin-top: -20px;
}

.slide {
display: flex;
align-items: center;
justify-content: flex-start;
background-size: cover;
background-position: center;
}

.slide::after {
background: rgb(255 255 255 / 65%);
}

.slide-content h1 {
font-size: 1.4rem;
}

.slide-content h1 br,
.slide-content p br{
display: none;;
}

.slide-content p {
font-size: 0.9rem;
margin-bottom: 15px;
max-width: 80%;
}

.slide-content a.btn {
padding: 5px 20px;
font-size: 0.8em;
}

.slider-nav {
bottom: 10px;
left: 20px;
}

.nav-btn {
width: 30px;
height: 30px;
}

}

