@import url("./styles/header.css");
@import url("./styles/hero.css");
@import url("./styles/sobre.css");

 /* ===== RESET E VARIÁVEIS ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --azul-escuro: #0A1628;
            --azul-medio: #1a2942;
            --dourado: #C9A961;
            --dourado-claro: #d4b876;
            --branco: #FFFFFF;
            --cinza-claro: #F5F5F5;
            --cinza-medio: #E0E0E0;
            --texto-escuro: #333333;
            --texto-medio: #666666;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--texto-escuro);
            overflow-x: hidden;
        }
        
        /* ===== UTILITÁRIOS ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--azul-escuro);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--texto-medio);
            margin: 0 auto;
            margin-bottom: 3rem;
            max-width: 800px;

        }
        
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
            color: var(--azul-escuro);
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
        }
        
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--branco);
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--branco);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--branco);
            color: var(--azul-escuro);
        }


        
    

        
   
        /* ===== MISSÃO, VISÃO E VALORES ===== */
        .mvv {
            padding: 100px 0;
            background: var(--azul-escuro);
            color: var(--branco);
            position: relative;
            overflow: hidden;
        }
        
        .mvv::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(201, 169, 97, 0.05));
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
        }
        
        .mvv-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .mvv-header .section-title {
            color: var(--branco);
        }
        
        .mvv-header .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .mvv-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(201, 169, 97, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .mvv-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--dourado);
        }
        
        .mvv-icon {
            font-size: 3rem;
            color: var(--dourado);
            margin-bottom: 20px;
        }
        
        .mvv-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dourado);
        }
        
        .mvv-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--cinza-claro);
        }
        
        .mvv-card ul {
            list-style: none;
            margin-top: 20px;
        }
        
        .mvv-card ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .mvv-card ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--dourado);
        }
        
        /* ===== SERVIÇOS ===== */
        .servicos {
            padding: 100px 0;
            background: var(--cinza-claro);
        }
        
        .servicos-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .servico-card {
            background: var(--branco);
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 2px solid transparent;
        }
        
        .servico-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--dourado);
        }
        
        .servico-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--dourado);
            transition: all 0.3s ease;
        }
        
        .servico-card:hover .servico-icon {
            background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
            color: var(--azul-escuro);
            transform: scale(1.1);
        }
        
        .servico-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--azul-escuro);
            margin-bottom: 15px;
        }
        
        .servico-card p {
            font-size: 0.95rem;
            color: var(--texto-medio);
            line-height: 1.6;
        }
        
        /* ===== ESTRUTURA ===== */
        .estrutura {
            padding: 100px 0;
            background: var(--branco);
        }
        
        .estrutura-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .estrutura-info h2 {
            margin-bottom: 25px;
        }
        
        .estrutura-info p {
            font-size: 1.05rem;
            color: var(--texto-medio);
            margin-bottom: 20px;
            line-height: 1.9;
        }
        
        .estrutura-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .estrutura-stat {
            background: var(--cinza-claro);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--dourado);
        }
        
        .estrutura-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--azul-escuro);
            display: block;
            margin-bottom: 5px;
        }
        
        .estrutura-stat-label {
            font-size: 0.9rem;
            color: var(--texto-medio);
        }
        
        .estrutura-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .estrutura-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .estrutura-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .estrutura-image:hover img {
            transform: scale(1.1);
        }
        
        .estrutura-image:first-child {
            grid-column: span 2;
        }
        
        .estrutura-image:first-child img {
            height: 350px;
        }
        
        /* ===== PARCEIROS ===== */
        .parceiros {
            padding: 100px 0;
            background: var(--cinza-claro);
        }
        
        .parceiros-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .parceiros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            align-items: center;
        }
        
        .parceiro-card {
            background: var(--branco);
            padding: 40px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .parceiro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .parceiro-card img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .parceiro-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* ===== CONTATO ===== */
        .contato {
            padding: 100px 0;
            background: var(--azul-escuro);
            color: var(--branco);
            position: relative;
            overflow: hidden;
        }
        
        .contato::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), transparent);
            clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
        }
        
        .contato-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contato-header .section-title {
            color: var(--branco);
        }
        
        .contato-header .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contato-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 1;
        }
        
        .contato-info h3 {
            font-size: 1.8rem;
            color: var(--dourado);
            margin-bottom: 30px;
        }
        
        .contato-comercial {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 1px solid rgba(201, 169, 97, 0.2);
            transition: all 0.3s ease;
        }
        
        .contato-comercial:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--dourado);
        }
        
        .contato-comercial h4 {
            font-size: 1.3rem;
            color: var(--dourado);
            margin-bottom: 15px;
        }
        
        .contato-comercial p {
            font-size: 1rem;
            margin: 8px 0;
            color: var(--cinza-claro);
        }
        
        .contato-comercial i {
            color: var(--dourado);
            margin-right: 10px;
            width: 20px;
        }

        .contato-telefone {
            color: var(--cinza-claro);
            text-decoration: none;
        }

        .contato-telefone:hover {
            color: var(--dourado);
        }

        .contato-endereco-link {
            color: var(--cinza-claro);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contato-endereco-link:hover {
            color: var(--dourado);
        }

        .contato-mapa {
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 97, 0.2);
        }

        .contato-mapa iframe {
            display: block;
        }
        
        .contato-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .contato-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .contato-item-icon {
            width: 50px;
            height: 50px;
            background: var(--dourado);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--azul-escuro);
            flex-shrink: 0;
        }
        
        .contato-item-text h4 {
            font-size: 0.9rem;
            color: var(--dourado);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .contato-item-text p {
            font-size: 1rem;
            color: var(--cinza-claro);
        }
        
        .contato-item-text a {
            color: var(--cinza-claro);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contato-item-text a:hover {
            color: var(--dourado);
        }
        
        .contato-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(201, 169, 97, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .contato-form h3 {
            font-size: 1.5rem;
            color: var(--dourado);
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--cinza-claro);
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            font-size: 1rem;
            color: var(--branco);
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--dourado);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: var(--azul-medio);
            color: var(--cinza-claro);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-sobre h3 {
            font-size: 1.8rem;
            color: var(--branco);
            margin-bottom: 20px;
        }
        
        .footer-sobre h3 span {
            color: var(--dourado);
        }
        
        .footer-sobre p {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(201, 169, 97, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dourado);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid var(--dourado);
        }
        
        .footer-social a:hover {
            background: var(--dourado);
            color: var(--azul-escuro);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            color: var(--branco);
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: var(--cinza-claro);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links ul li a:hover {
            color: var(--dourado);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .footer-bottom p {
            color: var(--cinza-medio);
        }
        
        .footer-bottom a {
            color: var(--dourado);
            text-decoration: none;
        }
        
        /* ===== WHATSAPP FLUTUANTE ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--branco);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
            }
        }
        
        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .sobre-content,
            .estrutura-content,
            .contato-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--azul-escuro);
                flex-direction: column;
                justify-content: center;
                transition: left 0.3s ease;
                gap: 30px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hero {
                min-height: 90vh;
                padding-top: 100px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-tagline {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .mvv-grid,
            .servicos-grid {
                grid-template-columns: 1fr;
            }
            
            .estrutura-images {
                grid-template-columns: 1fr;
            }
            
            .estrutura-image:first-child {
                grid-column: span 1;
            }
            
            .parceiros-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .estrutura-stats {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .btn-primary {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .parceiros-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.7rem;
            }
        }

        /* ================================================
           ENHANCEMENTS — Executivo & Tecnológico
           ================================================ */

        /* --- Barra de progresso de scroll --- */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--dourado), var(--dourado-claro), var(--dourado));
            background-size: 200% 100%;
            animation: progressShimmer 2s linear infinite;
            box-shadow: 0 0 8px rgba(201, 169, 97, 0.8), 0 0 16px rgba(201, 169, 97, 0.4);
            z-index: 9999;
            transition: width 0.1s linear;
        }

        @keyframes progressShimmer {
            0%   { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        /* --- Canvas de partículas do hero --- */
        #hero-canvas {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        /* --- Entrada animada dos filhos do hero-content --- */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-content > *:nth-child(1) { opacity: 0; animation: heroFadeUp 0.7s ease 0.25s forwards; }
        .hero-content > *:nth-child(2) { opacity: 0; animation: heroFadeUp 0.7s ease 0.45s forwards; }
        .hero-content > *:nth-child(3) { opacity: 0; animation: heroFadeUp 0.7s ease 0.65s forwards; }
        .hero-content > *:nth-child(4) { opacity: 0; animation: heroFadeUp 0.7s ease 0.85s forwards; }
        .hero-content > *:nth-child(5) { opacity: 0; animation: heroFadeUp 0.7s ease 1.05s forwards; }

        /* --- Cursor piscante do typewriter --- */
        .hero-tagline.typing::after {
            content: '|';
            color: var(--dourado);
            font-weight: 300;
            animation: cursorBlink 0.8s step-end infinite;
        }

        @keyframes cursorBlink {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0; }
        }

        /* --- Linha scanline animada no hero --- */
        .hero::after {
            content: '';
            position: absolute;
            top: -30%;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(201, 169, 97, 0.04) 50%,
                transparent 100%
            );
            animation: scanline 5s linear infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes scanline {
            0%   { top: -30%; }
            100% { top: 100%; }
        }

        /* --- Gradiente animado nos números de estatística --- */
        .stat-number {
            background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 50%, var(--dourado) 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: goldShimmer 3s linear infinite;
        }

        @keyframes goldShimmer {
            0%   { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        /* --- Link de nav ativo --- */
        .nav-active {
            color: var(--dourado) !important;
        }

        .nav-active::after {
            width: 100% !important;
        }

        /* --- Elementos com reveal no scroll --- */
        .reveal-el {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .reveal-el.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Fundo de pontos dourados (MVV e Contato) --- */
        .mvv {
            background-image: radial-gradient(rgba(201, 169, 97, 0.07) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .contato {
            background-image: radial-gradient(rgba(201, 169, 97, 0.07) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        /* --- Glow dourado nos cards ao hover --- */
        .servico-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 22px rgba(201, 169, 97, 0.18);
        }

        .mvv-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(201, 169, 97, 0.18);
        }

        /* --- Efeito shine no botão primário --- */
        .btn-primary {
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transform: skewX(-20deg);
            transition: left 0.5s ease;
            pointer-events: none;
        }

        .btn-primary:hover::after {
            left: 150%;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6), 0 0 22px rgba(201, 169, 97, 0.3);
        }

        /* --- Linha decorativa dourada no topo das seções --- */
        .sobre,
        .servicos,
        .estrutura,
        .parceiros {
            position: relative;
        }

        .sobre::before,
        .servicos::before,
        .estrutura::before,
        .parceiros::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
            border-radius: 2px;
        }

        /* --- Drop-shadow dourado na logo após scroll --- */
        .header.scrolled .logo-img {
            filter: drop-shadow(0 0 6px rgba(201, 169, 97, 0.5));
            transition: filter 0.3s ease;
        }

        /* --- Borda animada no formulário de contato --- */
        .contato-form {
            position: relative;
        }

        .contato-form::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 15px;
            padding: 1px;
            background: linear-gradient(
                135deg,
                rgba(201, 169, 97, 0.15) 0%,
                rgba(201, 169, 97, 0.65) 30%,
                rgba(201, 169, 97, 0.15) 60%,
                rgba(201, 169, 97, 0.65) 100%
            );
            background-size: 300% 300%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: formGlow 4s ease infinite;
            pointer-events: none;
        }

        @keyframes formGlow {
            0%   { background-position: 0% 0%; }
            50%  { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }

        /* --- Bounce no ícone do card de serviço ao hover --- */
        @keyframes iconBounce {
            0%   { transform: scale(1.1) translateY(0); }
            30%  { transform: scale(1.1) translateY(-6px); }
            60%  { transform: scale(1.1) translateY(-3px); }
            100% { transform: scale(1.1) translateY(0); }
        }

        .servico-card:hover .servico-icon {
            animation: iconBounce 0.6s ease forwards;
        }

        /* --- Separador superior nas hero-stats --- */
        .hero-stats {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
        }