   /* SEU CSS COMPLETO AQUI (COPIAR EXATAMENTE COMO VOCÊ ENVIOU) */
        @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

        * { box-sizing: border-box; margin: 0; padding: 0; }

        .gm-wrap {
          font-family: 'Barlow', sans-serif;
          color: #1a2533;
          background: #f4f6fa;
          overflow-x: hidden;
        }

        .gm-logo {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 22px;
          font-weight: 800;
          color: #fff;
          letter-spacing: 1px;
        }
        .gm-logo span { color: #3a9de8; }

        /* Botões globais */
        .btn-primary {
          background: #1e6fcf;
          color: #fff;
          border: none;
          padding: 14px 28px;
          border-radius: 4px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          letter-spacing: 0.3px;
          transition: background 0.2s, transform 0.1s;
        }
        .btn-primary:hover { background: #1558a8; transform: translateY(-1px); }
        .btn-outline {
          background: transparent;
          color: #7ec8f5;
          border: 1px solid rgba(58,157,232,0.5);
          padding: 14px 28px;
          border-radius: 4px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.2s;
        }
        .btn-outline:hover { background: rgba(30,111,207,0.15); }

        /* Sections genéricas */
        .gm-section {
          padding: 72px 2rem;
          max-width: 960px;
          margin: 0 auto;
        }
        .gm-section-label {
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 2.5px;
          text-transform: uppercase;
          color: #1e6fcf;
          margin-bottom: 10px;
        }
        .gm-section h2 {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 38px;
          font-weight: 700;
          color: #0a1628;
          line-height: 1.1;
          margin-bottom: 40px;
        }

        /* Cards genéricos (reutilizáveis) */
        .gm-card {
          background: #fff;
          border: 1px solid #d8e4f0;
          border-radius: 8px;
          padding: 24px 20px;
          transition: border-color 0.2s, box-shadow 0.2s;
        }
        .gm-card:hover {
          border-color: #1e6fcf;
          box-shadow: 0 4px 16px rgba(30,111,207,0.1);
        }
        .gm-card-icon {
          width: 40px;
          height: 40px;
          background: #e8f0fb;
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 14px;
        }
        .gm-card-icon svg { width: 20px; height: 20px; }
        .gm-card h3 {
          font-size: 15px;
          font-weight: 600;
          color: #0a1628;
          margin-bottom: 6px;
        }
        .gm-card p {
          font-size: 13px;
          color: #607080;
          line-height: 1.6;
        }

        /* Footer */
        .gm-footer {
          background: #060e1a;
          padding: 28px 2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 12px;
        }
        .gm-footer-logo {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 18px;
          font-weight: 700;
          color: #fff;
        }
        .gm-footer-logo span { color: #3a9de8; }
        .gm-footer p {
          font-size: 12px;
          color: #3a4a5a;
        }

        .gm-footer-credit {
            width: 100%;
            text-align: center;
            padding-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        /* Responsivo geral */
        @media (max-width: 640px) {
          .gm-nav-links { display: none; }
        }

        /* HERO - específico da home */
        .gm-hero {
          background: linear-gradient(135deg, #0a1628 0%, #0d2244 60%, #0f3060 100%);
          padding: 80px 2rem 80px;
          position: relative;
          overflow: hidden;
        }
        .gm-hero::before {
          content: '';
          position: absolute;
          top: -60px; right: -60px;
          width: 400px; height: 400px;
          border-radius: 50%;
          border: 60px solid rgba(30,111,207,0.12);
          pointer-events: none;
        }
        .gm-hero::after {
          content: '';
          position: absolute;
          bottom: -80px; left: 30%;
          width: 280px; height: 280px;
          border-radius: 50%;
          border: 40px solid rgba(58,157,232,0.08);
          pointer-events: none;
        }
        .gm-hero-inner {
          max-width: 860px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
        }
        .gm-badge {
          display: inline-block;
          background: rgba(30,111,207,0.3);
          border: 1px solid rgba(58,157,232,0.5);
          color: #7ec8f5;
          font-size: 11px;
          font-weight: 600;
          letter-spacing: 2px;
          text-transform: uppercase;
          padding: 5px 14px;
          border-radius: 20px;
          margin-bottom: 20px;
        }
        .gm-hero h1 {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 54px;
          font-weight: 800;
          color: #fff;
          line-height: 1.05;
          margin-bottom: 16px;
          letter-spacing: -0.5px;
        }
        .gm-hero h1 em {
          font-style: normal;
          color: #3a9de8;
        }
        .gm-hero p {
          font-size: 17px;
          color: #8faec8;
          line-height: 1.7;
          max-width: 600px;
          margin-bottom: 36px;
          font-weight: 300;
        }
        .gm-hero-btns {
          display: flex;
          gap: 12px;
          flex-wrap: wrap;
        }
        .gm-hero-stats {
          display: flex;
          gap: 40px;
          margin-top: 48px;
          padding-top: 32px;
          border-top: 1px solid rgba(255,255,255,0.08);
          flex-wrap: wrap;
        }
        .gm-stat-num {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 36px;
          font-weight: 700;
          color: #3a9de8;
          line-height: 1;
        }
        .gm-stat-label {
          font-size: 12px;
          color: #5a7a9a;
          letter-spacing: 0.5px;
          margin-top: 4px;
        }

        /* Diferenciais grid (específico da home) */
        .gm-diferenciais {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 16px;
        }

        /* Seção Sobre (home) */
        .gm-sobre-wrap {
          background: #fff;
          padding: 72px 2rem;
        }
        .gm-sobre {
          max-width: 960px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 60px;
          align-items: center;
        }
        .gm-sobre-text .gm-section-label { margin-bottom: 10px; }
        .gm-sobre-text h2 {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 38px;
          font-weight: 700;
          color: #0a1628;
          margin-bottom: 18px;
          line-height: 1.1;
        }
        .gm-sobre-text p {
          font-size: 15px;
          color: #4a5a6a;
          line-height: 1.8;
          margin-bottom: 14px;
        }
        .gm-sobre-visual {
          background: linear-gradient(135deg, #0a1628, #0d2850);
          border-radius: 12px;
          padding: 36px 28px;
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
        .gm-sobre-item {
          display: flex;
          align-items: flex-start;
          gap: 14px;
        }
        .gm-sobre-dot {
          width: 10px;
          height: 10px;
          min-width: 10px;
          background: #3a9de8;
          border-radius: 50%;
          margin-top: 5px;
        }
        .gm-sobre-item-title {
          font-size: 14px;
          font-weight: 600;
          color: #fff;
          margin-bottom: 3px;
        }
        .gm-sobre-item-desc {
          font-size: 12px;
          color: #6a8aa8;
          line-height: 1.5;
        }

        /* Seção MVV (home) */
        .gm-mvv-wrap {
          background: #0a1628;
          padding: 72px 2rem;
        }
        .gm-mvv {
          max-width: 960px;
          margin: 0 auto;
        }
        .gm-mvv .gm-section-label { color: #3a9de8; }
        .gm-mvv h2 {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 38px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 40px;
        }
        .gm-mvv-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap: 16px;
        }
        .gm-mvv-card {
          background: rgba(255,255,255,0.04);
          border: 1px solid rgba(58,157,232,0.2);
          border-radius: 8px;
          padding: 28px 22px;
          transition: border-color 0.2s;
        }
        .gm-mvv-card:hover { border-color: rgba(58,157,232,0.6); }
        .gm-mvv-tag {
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: #3a9de8;
          border: 1px solid rgba(58,157,232,0.4);
          display: inline-block;
          padding: 3px 10px;
          border-radius: 12px;
          margin-bottom: 14px;
        }
        .gm-mvv-card h3 {
          font-size: 17px;
          font-weight: 600;
          color: #fff;
          margin-bottom: 10px;
        }
        .gm-mvv-card p {
          font-size: 13px;
          color: #6a8aa8;
          line-height: 1.7;
        }
        .gm-mvv-valores {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin-top: 12px;
        }
        .gm-valor-pill {
          background: rgba(30,111,207,0.2);
          color: #7ec8f5;
          border: 1px solid rgba(58,157,232,0.3);
          font-size: 12px;
          font-weight: 500;
          padding: 5px 12px;
          border-radius: 20px;
        }

        /* Seção Serviços (home) */
        .gm-servicos-wrap {
          background: #f4f6fa;
          padding: 72px 2rem;
        }
        .gm-servicos {
          max-width: 960px;
          margin: 0 auto;
        }
        .gm-servicos-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
          gap: 12px;
        }
        .gm-servico-card {
          background: #fff;
          border: 1px solid #d8e4f0;
          border-left: 3px solid #1e6fcf;
          border-radius: 6px;
          padding: 18px 16px;
          font-size: 13px;
          font-weight: 500;
          color: #2a3a4a;
          line-height: 1.4;
        }

        /* Seção CTA (home) */
        .gm-cta-wrap {
          background: linear-gradient(135deg, #0d2244, #0a1628);
          padding: 72px 2rem;
          text-align: center;
        }
        .gm-cta {
          max-width: 600px;
          margin: 0 auto;
        }
        .gm-cta h2 {
          font-family: 'Barlow Condensed', sans-serif;
          font-size: 42px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 14px;
        }
        .gm-cta p {
          font-size: 15px;
          color: #6a8aa8;
          margin-bottom: 32px;
          line-height: 1.7;
        }
        .gm-cta-btns {
          display: flex;
          gap: 12px;
          justify-content: center;
          flex-wrap: wrap;
        }

        /* Responsivo específico da home */
        @media (max-width: 640px) {
          .gm-hero h1 { font-size: 36px; }
          .gm-sobre { grid-template-columns: 1fr; gap: 32px; }
        }

        /* NAV - Componente de navegação */
        .gm-nav {
          font-family: 'Barlow', sans-serif;
          background: #ffffff;
          padding: 0 2rem;
          display: flex;
          align-items: center;
          justify-content: space-between;
          height: 64px;
          position: sticky !important;
          top: 0 !important;
          z-index: 100;
          border-bottom: 2px solid #1e6fcf;
        }

        .gm-nav-links {
          display: flex;
          gap: 2rem;
          list-style: none;
        }
        .gm-nav-links a {
          color: #0a1628;
          text-decoration: none;
          font-size: 13px;
          font-weight: 500;
          letter-spacing: 0.5px;
          transition: color 0.2s;
          cursor: pointer;
        }
        .gm-nav-links a:hover { color: #3a9de8; }

        .gm-nav-cta {
          background: transparent;
          color: #fff;
          border: none;
          padding: 8px 20px;
          border-radius: 4px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          letter-spacing: 0.5px;
          transition: background 0.2s;
        }


        /* ========== NOVAS SEÇÕES ADICIONADAS ========== */
        
        /* GALERIA DE FOTOS */
        .gm-galeria-wrap {
            background: #f4f6fa;
            padding: 72px 2rem;
        }
        .gm-galeria {
            max-width: 960px;
            margin: 0 auto;
        }
        .gm-galeria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .gm-galeria-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gm-galeria-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .gm-galeria-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .gm-galeria-item:hover img {
            transform: scale(1.05);
        }
        .gm-galeria-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gm-galeria-item:hover .gm-galeria-overlay {
            opacity: 1;
        }
        .gm-galeria-overlay span {
            color: #fff;
            font-size: 12px;
            font-weight: 500;
        }
        
        /* VÍDEOS */
        .gm-videos-wrap {
            background: #f4f6fa;
            padding: 72px 2rem;
        }
        .gm-videos {
            max-width: 960px;
            margin: 0 auto;
        }
        .gm-videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .gm-video-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .gm-video-card:hover {
            transform: translateY(-3px);
        }
        .gm-video-thumb {
            position: relative;
            background: #0a1628;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gm-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }
        .gm-play-btn {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #1e6fcf;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .gm-play-btn:hover {
            transform: scale(1.1);
            background: #1558a8;
        }
        .gm-play-btn svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        .gm-video-card p {
            padding: 12px;
            font-size: 13px;
            font-weight: 500;
            color: #2a3a4a;
            text-align: center;
        }
        
        /* FORMULÁRIO DE CONTATO */
        .gm-contato-wrap {
            background: #fff;
            padding: 72px 2rem;
        }
        .gm-contato {
            max-width: 960px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .gm-contato-info h3, .gm-contato-form h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 16px;
        }
        .gm-contato-info p {
            color: #4a5a6a;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .gm-contato-detalhe {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .gm-contato-detalhe svg {
            width: 20px;
            height: 20px;
            stroke: #1e6fcf;
        }
        .gm-contato-detalhe span {
            color: #2a3a4a;
            font-size: 14px;
        }
        .gm-contato-detalhe a {
            color: #2a3a4a;
            text-decoration: none;
        }
        .gm-contato-detalhe a:hover {
            color: #1e6fcf;
        }
        
        .gm-form-group {
            margin-bottom: 20px;
        }
        .gm-form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 6px;
        }
        .gm-form-group input,
        .gm-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d8e4f0;
            border-radius: 6px;
            font-family: 'Barlow', sans-serif;
            font-size: 14px;
            transition: border-color 0.2s;
        }
        .gm-form-group input:focus,
        .gm-form-group textarea:focus {
            outline: none;
            border-color: #1e6fcf;
        }
        .gm-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .gm-form-btn {
            background: #1e6fcf;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
        }
        .gm-form-btn:hover {
            background: #1558a8;
        }
        
        .gm-alert {
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        .gm-alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .gm-alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* BOTÃO WHATSAPP FLUTUANTE */
        .gm-whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 999;
        }
        .gm-whatsapp-float:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }
        .gm-whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }
        
        /* RESPONSIVO DAS NOVAS SEÇÕES */
        @media (max-width: 768px) {
            .gm-contato {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .gm-whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .gm-whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }

        /* MODAL LIGHTBOX */
.gm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.gm-modal.active {
    display: flex;
}
.gm-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}
.gm-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.gm-modal-close:hover {
    color: #1e6fcf;
}


        /* HEADER DO PORTFÓLIO */
        .gm-portfolio-header {
            background: linear-gradient(135deg, #0a1628 0%, #0d2244 60%, #0f3060 100%);
            padding: 60px 2rem;
            text-align: center;
        }
        .gm-portfolio-header h1 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .gm-portfolio-header p {
            font-size: 17px;
            color: #8faec8;
            max-width: 600px;
            margin: 0 auto;
        }
        .gm-portfolio-header .gm-voltar {
            display: inline-block;
            margin-top: 24px;
            color: #3a9de8;
            text-decoration: none;
            font-size: 14px;
        }
        .gm-portfolio-header .gm-voltar:hover {
            text-decoration: underline;
        }

        /* GALERIA GRID */
        .gm-portfolio-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 2rem;
        }
        .gm-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .gm-portfolio-item {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .gm-portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        }
        .gm-portfolio-item img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }
        .gm-portfolio-item:hover img {
            transform: scale(1.03);
        }
        .gm-portfolio-info {
            padding: 12px 16px;
            border-top: 1px solid #e8eef4;
        }
        .gm-portfolio-info span {
            font-size: 12px;
            color: #1e6fcf;
            font-weight: 500;
        }

        /* PAGINAÇÃO */
        .gm-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .gm-pagination a, .gm-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            background: #fff;
            border: 1px solid #d8e4f0;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: #2a3a4a;
            transition: all 0.2s;
        }
        .gm-pagination a:hover {
            background: #1e6fcf;
            border-color: #1e6fcf;
            color: #fff;
        }
        .gm-pagination .active {
            background: #1e6fcf;
            border-color: #1e6fcf;
            color: #fff;
        }
        .gm-pagination .disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* CONTADOR DE FOTOS */
        .gm-contador {
            text-align: center;
            margin-bottom: 32px;
            font-size: 14px;
            color: #607080;
        }
        .gm-contador strong {
            color: #1e6fcf;
        }

        /* FOOTER */
        .gm-footer p {
            font-size: 12px;
            color: #3a4a5a;
        }

        /* MODAL LIGHTBOX */
        .gm-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .gm-modal.active {
            display: flex;
        }
        .gm-modal img {
            max-width: 90%;
            max-height: 85%;
            object-fit: contain;
            border-radius: 8px;
        }
        .gm-modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        .gm-modal-close:hover {
            color: #1e6fcf;
        }
        .gm-modal-counter {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: #fff;
            font-size: 14px;
            background: rgba(0,0,0,0.7);
            padding: 8px;
            width: fit-content;
            margin: 0 auto;
            border-radius: 20px;
        }
        .gm-modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }
        .gm-modal-nav button {
            background: rgba(255,255,255,0.2);
            border: none;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            padding: 12px 18px;
            border-radius: 50%;
            pointer-events: auto;
            transition: background 0.2s;
        }
        .gm-modal-nav button:hover {
            background: #1e6fcf;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .gm-nav-links { display: none; }
            .gm-portfolio-header h1 { font-size: 32px; }
            .gm-portfolio-grid { gap: 16px; }
            .gm-modal-nav button { font-size: 24px; padding: 8px 12px; }
        }

        /* BOTÃO HAMBÚRGUER (só aparece no mobile) */
.gm-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
}
.gm-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0a1628;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.gm-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.gm-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.gm-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MENU MOBILE (drawer lateral) */
.gm-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 200;
    transition: right 0.3s ease;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gm-mobile-menu.active {
    right: 0;
}
.gm-mobile-menu a {
    color: #0a1628;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e8eef4;
    transition: color 0.2s;
    cursor: pointer;
}
.gm-mobile-menu a:hover {
    color: #1e6fcf;
}
.gm-mobile-menu .gm-mobile-cta {
    background: #2195F2;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}
.gm-mobile-menu .gm-mobile-cta:hover {
    background: #1558a8;
}

/* OVERLAY (fundo escuro quando menu aberto) */
.gm-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.gm-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .gm-nav-links {
        display: none;
    }
    .gm-menu-toggle {
        display: flex;
    }
    .gm-nav-cta {
        display: none;
    }
}

/* =============================================
   SERVIÇOS EM DESTAQUE — FLIP CARDS
   ============================================= */
.gm-srvdet-wrap {
    background: #fff;
    padding: 72px 2rem;
}
.gm-srvdet {
    max-width: 960px;
    margin: 0 auto;
}
.gm-srvdet .gm-section-label { margin-bottom: 10px; }
.gm-srvdet h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.1;
    margin-bottom: 40px;
}

.gm-srvdet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* FLIP CARD */
.gm-flip-card {
    perspective: 1200px;
    height: 480px;
    cursor: pointer;
}
.gm-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}
.gm-flip-card:hover .gm-flip-inner {
    transform: rotateY(180deg);
}

/* FRENTE e VERSO — base */
.gm-flip-front,
.gm-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    overflow: hidden;
}
.gm-flip-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
}

/* FRENTE AMARELA (Manutenção) */
.gm-flip-front--yellow {
    background: linear-gradient(160deg, #f5c518 0%, #e8b000 100%);
    box-shadow: 0 8px 32px rgba(232,176,0,0.3);
}
.gm-flip-front--yellow h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 1px;
    margin: 16px 0 8px;
}

/* FRENTE ESCURA (Medições) */
.gm-flip-front--dark {
    background: linear-gradient(160deg, #0d2244 0%, #0a1628 100%);
    box-shadow: 0 8px 32px rgba(10,22,40,0.5);
}
.gm-flip-front--dark h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    margin: 16px 0 8px;
}

/* Ícone na frente */
.gm-flip-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gm-flip-icon svg { width: 64px; height: 64px; }

/* Hint de interação */
.gm-flip-hint {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.6;
    color: #333;
    margin-top: 4px;
}
.gm-flip-front--dark .gm-flip-hint { color: #8faec8; }

/* Badge de norma */
.gm-flip-norm-badge {
    margin-top: 20px;
    background: rgba(0,0,0,0.15);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}
.gm-flip-norm-badge--green {
    background: rgba(46,204,113,0.15);
    color: #2ecc71;
}

/* VERSO AMARELO */
.gm-flip-back--yellow {
    background: linear-gradient(160deg, #1a1200 0%, #2a1e00 100%);
    border: 1px solid rgba(232,176,0,0.2);
}
.gm-flip-back--yellow .gm-flip-back-tag {
    background: rgba(232,176,0,0.15);
    color: #f5c518;
    border: 1px solid rgba(232,176,0,0.3);
}
.gm-flip-back--yellow p { color: #a89060; }

/* VERSO ESCURO */
.gm-flip-back--dark {
    background: linear-gradient(160deg, #060e1a 0%, #0a1628 100%);
    border: 1px solid rgba(46,204,113,0.15);
}
.gm-flip-back-tag--green {
    background: rgba(46,204,113,0.12) !important;
    color: #2ecc71 !important;
    border: 1px solid rgba(46,204,113,0.25) !important;
}
.gm-flip-back--dark p { color: #6a8aa8; }

/* Cabeçalho do verso */
.gm-flip-back-header {
    margin-bottom: 20px;
    width: 100%;
}
.gm-flip-back-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.gm-flip-back-header p {
    font-size: 13px;
    line-height: 1.6;
}

/* CHECKLIST */
.gm-checklist {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gm-checklist li {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.gm-checklist li::before {
    content: '';
    display: inline-block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 3px;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 1px;
}
.gm-checklist--red li { color: #e8b000; }
.gm-checklist--red li::before {
    background-color: rgba(232,176,0,0.15);
    border: 1.5px solid #c0392b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c0392b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.gm-checklist--green li { color: #7ec8a0; }
.gm-checklist--green li::before {
    background-color: rgba(46,204,113,0.1);
    border: 1.5px solid #2ecc71;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232ecc71' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Touch / Mobile: tap em vez de hover */
@media (max-width: 768px) {
    .gm-flip-card { height: auto; min-height: 480px; }
    .gm-flip-inner { transition: transform 0.6s ease; }
    .gm-flip-hint { display: block; }
    .gm-flip-card.flipped .gm-flip-inner { transform: rotateY(180deg); }
}

/* =============================================
   SEÇÃO EXPERIÊNCIA CONTA — RESPONSIVO
   ============================================= */

.gm-exp-wrap {
    position: relative;
    background: linear-gradient(135deg, #060e1a 0%, #0a1628 50%, #0d2244 100%);
    padding: 96px 2rem;
    overflow: hidden;
}

/* Raios de luz de fundo */
.gm-exp-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.gm-exp-ray {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: gm-ray-pulse 4s ease-in-out infinite;
}
.gm-exp-ray--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,111,207,0.35) 0%, transparent 70%);
    top: -200px; left: -100px;
    animation-delay: 0s;
}
.gm-exp-ray--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(58,157,232,0.25) 0%, transparent 70%);
    bottom: -150px; right: 10%;
    animation-delay: 1.5s;
}
.gm-exp-ray--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
    top: 30%; left: 40%;
    animation-delay: 3s;
}
@keyframes gm-ray-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

/* Partículas JS */
.gm-exp-particles {
    position: absolute;
    inset: 0;
}
.gm-exp-particle {
    position: absolute;
    border-radius: 50%;
    background: #3a9de8;
    animation: gm-particle-float linear infinite;
    opacity: 0;
}
@keyframes gm-particle-float {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

/* Layout interno */
.gm-exp-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

/* Texto */
.gm-exp-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(30,111,207,0.5);
}
.gm-exp-white  { color: #ffffff; }
.gm-exp-yellow { color: #f5c518; text-shadow: 0 0 30px rgba(245,197,24,0.6); }
.gm-exp-thin   { font-weight: 400; font-size: 52px; }

.gm-exp-desc {
    font-size: 16px;
    color: #7a9ab8;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}
.gm-exp-desc strong { color: #3a9de8; }

/* Números */
.gm-exp-nums {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(58,157,232,0.15);
    border-radius: 10px;
    padding: 20px 28px;
    width: fit-content;
}
.gm-exp-num-item { text-align: center; padding: 0 24px; }
.gm-exp-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.gm-exp-num span {
    color: #3a9de8;
    font-size: 28px;
}
.gm-exp-num-label {
    font-size: 11px;
    color: #4a6a8a;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-transform: uppercase;
}
.gm-exp-num-divider {
    width: 1px;
    height: 50px;
    background: rgba(58,157,232,0.2);
    flex-shrink: 0;
}

.gm-exp-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visual — badge circular */
.gm-exp-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gm-exp-badge-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gm-exp-badge-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(58,157,232,0.25);
    animation: gm-ring-spin linear infinite;
}
.gm-exp-badge-ring--outer {
    width: 220px; height: 220px;
    border-top-color: rgba(30,111,207,0.6);
    border-right-color: rgba(58,157,232,0.4);
    animation-duration: 12s;
}
.gm-exp-badge-ring--mid {
    width: 168px; height: 168px;
    border-bottom-color: rgba(245,197,24,0.4);
    border-left-color: rgba(245,197,24,0.2);
    animation-duration: 8s;
    animation-direction: reverse;
}
@keyframes gm-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.gm-exp-badge-core {
    position: relative;
    z-index: 2;
    width: 120px; height: 120px;
    background: radial-gradient(circle at 40% 35%, #1e6fcf, #0a1628);
    border-radius: 50%;
    border: 2px solid rgba(58,157,232,0.5);
    box-shadow:
        0 0 30px rgba(30,111,207,0.5),
        0 0 60px rgba(30,111,207,0.2),
        inset 0 0 20px rgba(58,157,232,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.gm-exp-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.gm-exp-badge-plus {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #3a9de8;
    line-height: 1;
    margin-top: -4px;
}
.gm-exp-badge-label {
    font-size: 13px;
    font-weight: 600;
    color: #7ec8f5;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gm-exp-badge-sub {
    font-size: 10px;
    color: #4a6a8a;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ─── Tablet (≤ 900px) ─── */
@media (max-width: 900px) {
    .gm-exp-inner {
        gap: 40px;
    }
    .gm-exp-title { font-size: 56px; }
    .gm-exp-thin  { font-size: 44px; }
    .gm-exp-nums  { padding: 16px 20px; }
    .gm-exp-num-item { padding: 0 16px; }
    .gm-exp-num { font-size: 36px; }
}

/* ─── Mobile largo (≤ 768px): coluna única ─── */
@media (max-width: 768px) {
    .gm-exp-wrap { padding: 72px 1.5rem; }

    .gm-exp-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    /* badge sobe para depois do texto e fica centralizado */
    .gm-exp-visual { order: -1; }

    .gm-exp-title { font-size: 48px; }
    .gm-exp-thin  { font-size: 36px; }

    .gm-exp-desc {
        margin: 0 auto 32px;
        max-width: 100%;
    }

    /* números: ocupa a largura toda e distribui igualmente */
    .gm-exp-nums {
        width: 100%;
        justify-content: space-between;
        padding: 16px 12px;
        margin: 0 auto 32px;
        box-sizing: border-box;
    }
    .gm-exp-num-item { padding: 0 8px; flex: 1; }

    .gm-exp-btns  { justify-content: center; }
}

/* ─── Mobile estreito (≤ 480px) ─── */
@media (max-width: 480px) {
    .gm-exp-wrap  { padding: 56px 1rem; }

    .gm-exp-title { font-size: 40px; letter-spacing: -0.5px; }
    .gm-exp-thin  { font-size: 30px; }

    .gm-exp-desc  { font-size: 15px; }

    /* números em coluna quando não cabe na linha */
    .gm-exp-nums {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        width: 100%;
    }
    .gm-exp-num-item {
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 12px;
    }
    .gm-exp-num-label {
        flex: 1;
        text-align: left;
        font-size: 12px;
    }

    /* divisor vira linha horizontal */
    .gm-exp-num-divider {
        width: 100%;
        height: 1px;
    }

    /* badge menor */
    .gm-exp-badge-wrap          { width: 180px; height: 180px; }
    .gm-exp-badge-ring--outer   { width: 180px; height: 180px; }
    .gm-exp-badge-ring--mid     { width: 136px; height: 136px; }
    .gm-exp-badge-core          { width: 100px; height: 100px; }
    .gm-exp-badge-num           { font-size: 32px; }
    .gm-exp-badge-plus          { font-size: 18px; }
    .gm-exp-badge-label         { font-size: 11px; }

    /* botões empilhados */
    .gm-exp-btns {
        flex-direction: column;
        align-items: center;
    }
    .gm-exp-btns .btn-primary,
    .gm-exp-btns .btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* ─── Mobile muito pequeno (≤ 360px) ─── */
@media (max-width: 360px) {
    .gm-exp-title { font-size: 34px; }
    .gm-exp-thin  { font-size: 26px; }
    .gm-exp-badge-wrap          { width: 150px; height: 150px; }
    .gm-exp-badge-ring--outer   { width: 150px; height: 150px; }
    .gm-exp-badge-ring--mid     { width: 114px; height: 114px; }
    .gm-exp-badge-core          { width: 84px;  height: 84px;  }
    .gm-exp-badge-num           { font-size: 26px; }
}