 :root {
     --color-primary: #84d424;
     --color-primary-dark: #6ab01c;
     --color-dark: #1d1e20;
     --color-gray: #56585e;
     --color-light: #ffffff;
     --color-overlay: rgba(0, 0, 0, 0.4);

     --font-primary: 'Montserrat', sans-serif;
     --font-secondary: 'Inter', sans-serif;

     --transition: all 0.3s ease;
     --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     --radius: 12px;

     --first-line-height: 36px;
 }

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




 body {
     font-family: 'Inter', sans-serif;
     color: #222;
     overflow-x: hidden;
 }



 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     line-height: 1.3;
 }

 /* Barra superior NIC.br / CGI.br */
 .first-line {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1100;
 }

 /* Header */
 .header {
     position: fixed;
     top: var(--first-line-height, 36px);
     width: 100%;
     background: var(--color-light);
     z-index: 1000;
     padding: 1rem 0;
 }

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

 .nav {
     display: flex;
     gap: 2rem;
     list-style: none;
 }

 .nav a {
     text-decoration: none;
     color: var(--color-dark);
     font-weight: 500;
     transition: var(--transition);
 }

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

 .mobile-menu {
     display: none;
     background: none;
     border: none;
     border-radius: 8px;
     color: var(--color-dark);
     cursor: pointer;
     height: 44px;
     width: 44px;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
 }

 .mobile-menu:hover,
 .mobile-menu:focus-visible,
 .mobile-menu[aria-expanded="true"] {
     background: #f2f5ee;
     color: var(--color-primary-dark);
 }

 /* Hero Section */
 .hero {
     min-height: 100vh;
     background: center/cover fixed no-repeat;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--color-light);
     padding: 6rem 1.5rem 2rem;
 }

 .hero-content h1 {
     font-size: clamp(2.5rem, 8vw, 4rem);
     margin-bottom: 1rem;
     animation: fadeInUp 0.8s ease;
 }

 .hero-content p {
     font-size: clamp(1rem, 3vw, 1.5rem);
     margin-bottom: 2rem;
     opacity: 0.95;
     animation: fadeInUp 0.8s ease 0.2s both;
 }

 @media (max-width: 768px) {
     .hero {
         min-height: 82vh;
         min-height: 82svh;
         background-attachment: scroll;
         background-position: center 58%;
         background-size: cover;
         padding-top: calc(var(--first-line-height, 36px) + 5.5rem);
     }
 }

 .btn {
     display: inline-block;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-family: var(--font-secondary);
 }

 .btn-primary {
     background: var(--color-primary) !important;
     color: var(--color-dark);
 }

 .btn-primary:hover {
     background: var(--color-primary-dark);
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(132, 212, 36, 0.3);
 }

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

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

 /* Sections */
 section {
     padding: 5rem 1.5rem;
 }

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

 .section-title {
     text-align: center;
     font-size: clamp(1.8rem, 5vw, 2.5rem);
     margin-bottom: 3rem;
     color: var(--color-dark);
 }

 /* Intro Section */
 .intro {
     background: #f7f8f5;
 }

 .intro-text {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
     font-size: 1.1rem;
     line-height: 1.8;
     color: var(--color-gray);
 }

 .intro-text p {
     margin-bottom: 1.5rem;
 }

 .intro-layout {
     display: grid;
     grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
     gap: 72px;
     align-items: start;
 }

 .intro-heading {
     position: sticky;
     top: 170px;
 }

 .intro-kicker {
     display: block;
     margin-bottom: 14px;
     color: var(--color-primary-dark);
     font-size: 0.82rem;
     font-weight: 700;
     text-transform: uppercase;
 }

 .intro-heading h2 {
     max-width: 520px;
     color: var(--color-dark);
     font-size: 4rem;
     line-height: 1.02;
     font-weight: 700;
 }

 .intro-content {
     max-width: 720px;
     padding-top: 10px;
 }

 .intro-content p {
     color: var(--color-gray);
     font-size: 1.02rem;
     line-height: 1.7;
 }

 .intro-lead {
     margin-bottom: 18px;
     color: var(--color-dark) !important;
     font-size: 1.7rem !important;
     line-height: 1.3 !important;
     font-weight: 600;
 }

 .intro-highlights {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1px;
     margin: 34px 0 26px;
     padding: 0;
     overflow: hidden;
     border: 1px solid #dfe3d8;
     border-radius: 8px;
     background: #dfe3d8;
     list-style: none;
 }

 .intro-highlights li {
     min-height: 128px;
     padding: 20px;
     background: var(--color-light);
 }

 .intro-highlights strong {
     display: block;
     margin-bottom: 8px;
     color: var(--color-dark);
     font-size: 1rem;
     line-height: 1.25;
 }

 .intro-highlights span {
     display: block;
     color: var(--color-gray);
     font-size: 0.88rem;
     line-height: 1.45;
 }

 .intro-sectors {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 12px;
     margin-bottom: 30px;
 }

 .intro-sectors span {
     display: flex;
     align-items: center;
     min-height: 48px;
     padding: 12px 0;
     border-top: 2px solid var(--color-primary);
     color: var(--color-dark);
     font-size: 0.92rem;
     font-weight: 700;
     line-height: 1.3;
 }

 .intro-summary {
     margin: 0 0 18px;
     color: var(--color-gray);
     font-size: 1rem;
     line-height: 1.65;
 }

 .intro-outcome {
     margin: 0;
     padding: 20px 0 0;
     border-top: 1px solid #dfe3d8;
 }

 .intro-outcome strong {
     color: var(--color-dark);
     font-size: 1.08rem;
     line-height: 1.5;
 }

 @media (max-width: 900px) {
     .intro-layout {
         grid-template-columns: 1fr;
         gap: 34px;
     }

     .intro-heading {
         position: static;
     }

     .intro-heading h2 {
         max-width: 680px;
         font-size: 3rem;
     }

     .intro-content {
         max-width: 100%;
         padding-top: 0;
     }

     .intro-highlights {
         grid-template-columns: 1fr;
     }

     .intro-highlights li {
         min-height: auto;
     }

     .intro-sectors {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 560px) {
     .intro {
         padding: 4rem 1.25rem;
     }

     .intro-layout {
         gap: 28px;
     }

     .intro-kicker {
         margin-bottom: 10px;
     }

     .intro-heading h2 {
         font-size: 2.3rem;
     }

     .intro-lead {
         margin-bottom: 14px;
         font-size: 1.28rem !important;
     }

     .intro-highlights {
         margin: 28px 0 22px;
     }

     .intro-highlights li {
         padding: 16px;
     }

     .intro-sectors {
         grid-template-columns: 1fr;
         gap: 8px;
     }

     .intro-sectors span {
         min-height: 0;
         padding: 10px 0;
     }
 }

 /* Image Section */
 .image-section {
     padding: 0;
     height: 60vh;
     overflow: hidden;
 }

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

 /* How to Play */
 .how-to-play {
     background: var(--color-light);
 }

 .play-content {
     display: grid;
     grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
     gap: 3rem;
     align-items: center;
 }

 .play-text h3 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
 }

 .play-text p {
     color: var(--color-gray);
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 .play-video {
     position: relative;
     overflow: hidden;
     width: 100%;
     aspect-ratio: 16 / 9;
     border-radius: 8px;
     background: #111;
     box-shadow: var(--shadow);
 }

 .play-video iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: 0;
 }

 @media (max-width: 900px) {
     .play-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }

 /* Gallery */
 .gallery {
     background: #f8f9fa;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .gallery-item {
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .gallery-item:hover {
     transform: translateY(-5px);
 }

 .gallery-item img {
     width: 100%;
     height: 300px;
     object-fit: cover;
 }

 /* Testimonials */
 .testimonials {
     background: #f8f9fa;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .testimonial-card {
     background: var(--color-light);
     border-radius: var(--radius);
     padding: 2rem;
     box-shadow: var(--shadow);
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
     transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.3), box-shadow 0.35s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
 }

 .testimonial-card .stars {
     font-size: 1.1rem;
     color: var(--color-primary-dark);
     letter-spacing: 2px;
 }

 .testimonial-card .testimonial-text {
     font-size: 1rem;
     line-height: 1.7;
     color: var(--color-gray);
     font-style: italic;
     flex: 1;
 }

 .testimonial-card .testimonial-author {
     display: flex;
     align-items: center;
     gap: 0.85rem;
     border-top: 1px solid #eee;
     padding-top: 1.2rem;
 }

 .testimonial-card .author-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     object-fit: cover;
     flex-shrink: 0;
 }

 .author-info {
     display: flex;
     flex-direction: column;
     gap: 0.15rem;
 }

 .author-name {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--color-dark);
 }

 .author-role {
     font-size: 0.82rem;
     color: var(--color-gray);
 }

 @media (max-width: 900px) {
     .testimonials-grid {
         grid-template-columns: 1fr;
         max-width: 500px;
         margin: 0 auto;
     }
 }

 /* Footer */
 .footer {
     background: var(--color-gray);
     color: var(--color-light);
     padding: 4rem 1.5rem 2rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer h5 {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     color: var(--color-light);
 }

 .footer p,
 .footer a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     line-height: 1.8;
     transition: var(--transition);
 }

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

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

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

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

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .footer-logo {
     height: 40px;
 }

 /* Form */
 .form-group {
     margin-bottom: 1rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
 }

 .form-group input {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid rgba(255, 255, 255, 0.2);
     background: rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     color: var(--color-light);
     font-family: var(--font-secondary);
 }

 .form-group input::placeholder {
     color: rgba(255, 255, 255, 0.5);
 }

 /* =====================
    ANIMATIONS
 ===================== */

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.88);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes floatUpDown {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 @keyframes shimmer {
     0% {
         background-position: -200% center;
     }

     100% {
         background-position: 200% center;
     }
 }

 /* --- Scroll reveal base --- */
 .reveal {
     opacity: 0;
     transform: translateY(36px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.from-left {
     opacity: 0;
     transform: translateX(-40px);
 }

 .reveal.from-right {
     opacity: 0;
     transform: translateX(40px);
 }

 .reveal.from-scale {
     opacity: 0;
     transform: scale(0.88);
 }

 .reveal.visible {
     opacity: 1;
     transform: none;
 }

 /* Stagger delay para filhos */
 .reveal-group .reveal:nth-child(1) {
     transition-delay: 0s;
 }

 .reveal-group .reveal:nth-child(2) {
     transition-delay: 0.12s;
 }

 .reveal-group .reveal:nth-child(3) {
     transition-delay: 0.24s;
 }

 .reveal-group .reveal:nth-child(4) {
     transition-delay: 0.36s;
 }

 /* --- Image Section parallax --- */
 .image-section {
     will-change: transform;
 }

 .image-section img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation: fadeInScale 1.2s ease both;
     transition: transform 0.1s linear, filter 0.4s ease;
 }

 .image-section:hover img {
     filter: brightness(1.05) saturate(1.1);
 }

 /* --- Imagem grande do o-jogo flutua (só após reveal terminar) --- */
 .image.reveal.visible img {
     animation: floatUpDown 4s ease-in-out infinite;
     will-change: transform;
 }

 /* --- Thumbs: hover tilt + entrada --- */
 .thumbs img {
     transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.4), box-shadow 0.35s ease;
     cursor: pointer;
 }

 .thumbs img:hover {
     transform: scale(1.07) rotate(-1.5deg);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
     z-index: 2;
     position: relative;
 }

 /* --- Gallery items: hover com zoom e brilho --- */
 .gallery-item {
     position: relative;
     overflow: hidden;
 }

 .gallery-item img {
     transition: transform 0.5s cubic-bezier(.22, .68, 0, 1.2), filter 0.4s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.08);
     filter: brightness(1.08) saturate(1.15);
 }

 .gallery-item::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
     background-size: 200% 100%;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .gallery-item:hover::after {
     opacity: 1;
     animation: shimmer 0.6s ease forwards;
 }

 /* --- Imagem de facilitação: hover sutil --- */
 .image-wrap img {
     transition: transform 0.5s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.4s ease;
 }

 .image-wrap img:hover {
     transform: scale(1.03) rotate(0.5deg);
     box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .nav {
         display: none;
         position: absolute;
         top: calc(100% + 0.75rem);
         left: 1rem;
         right: 1rem;
         z-index: 1001;
         flex-direction: column;
         gap: 0;
         padding: 0.5rem;
         border: 1px solid #dfe3d8;
         border-radius: 8px;
         background: var(--color-light);
         box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
     }

     .nav.is-open {
         display: flex;
     }

     .nav a {
         display: block;
         padding: 0.85rem 1rem;
         border-radius: 6px;
     }

     .nav a:hover,
     .nav a:focus-visible {
         background: #f2f5ee;
     }

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

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

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

 @media (max-width: 480px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }
 }

 .transition-with-bg {
     transition: background-color .3s ease-in-out, height 1ms linear 999s
 }

 .image[data-v-91603bbf]:before {
     content: "";
     position: absolute;
     inset: 0;
     background: var(--3f7a1ffa);
     z-index: 1;
 }

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

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

 .first-line .logos-top {
     padding: 10px 0 10px;
 }

 .section {
     margin-bottom: 100px;
 }

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

 .text h2 {
     font-size: 28px;
     font-weight: 600;
     margin-bottom: 16px;
     line-height: 1.3;
 }

 .text p {
     font-size: 14px;
     color: #555;
     margin-bottom: 12px;
 }

 .btn {
     margin-top: 10px;
     padding: 10px 18px;
     border-radius: 999px;
     border: 1px solid #222;
     background: transparent;
     cursor: pointer;
     font-size: 13px;
 }

 .image img {
     width: 100%;
     border-radius: 12px;
 }

 /* PARTE DE BAIXO */

 .bottom {
     margin-top: 40px;
 }

 .thumbs {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
 }

 .thumbs img {
     width: 100%;
     border-radius: 10px;
 }

 .list h3 {
     font-size: 20px;
     margin-bottom: 12px;
 }

 .list ul {
     padding-left: 18px;
 }

 .list li {
     font-size: 14px;
     margin-bottom: 6px;
     color: #444;
 }

 /* RESPONSIVO */

 @media (max-width: 768px) {
     .grid-2 {
         grid-template-columns: 1fr;
     }
 }

 .logo img {
     width: 100%;
     height: 100%;
     vertical-align: middle;
     object-fit: contain;
 }

 .logo {
     display: flex;
     width: 132px;
     height: 99px;
     cursor: pointer;
     margin-top: 1rem;
 }


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

 .page {
     width: 100%;
 }

 .facilitacao {
     max-width: 1280px;
     margin: 0 auto;
     padding: 70px 40px 80px;
 }

 .hero-text-jogo {
     margin-bottom: 56px;
     margin-top: 10rem;
 }

 .hero-text-jogo h2 {
     font-size: 2.5rem;
     line-height: 1.1;
     margin-bottom: 22px;
 }

 .hero-text {
     text-align: center;
     margin-bottom: 56px;
     margin-top: 10rem;
 }

 .hero-text h1 {
     font-size: 4rem;
     line-height: 1.1;
     font-weight: 700;
     margin-bottom: 22px;
 }

 .hero-text p {
     max-width: 760px;
     margin: 0 auto;
     font-size: 1rem;
     line-height: 1.5;
     color: #2f2f2f;
 }

 .content-grid {
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 72px;
     align-items: center;
     margin-bottom: 64px;
 }

 .image-wrap img {
     width: 100%;
     display: block;
     border-radius: 22px;
     object-fit: cover;
     min-height: 570px;
 }

 .text-wrap {
     display: flex;
     flex-direction: column;
     gap: 34px;
 }

 .text-block h2 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 14px;
 }

 .text-block p {
     font-size: 0.98rem;
     line-height: 1.65;
     color: #2b2b2b;
     margin-bottom: 18px;
 }

 .text-block p:last-child {
     margin-bottom: 0;
 }

 .facilitadores-block {
     margin: 0 0 56px;
     padding-top: 38px;
     border-top: 1px solid #e1e4dc;
 }

 .facilitadores-header {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
     gap: 32px;
     align-items: end;
     margin-bottom: 24px;
 }

 .facilitadores-kicker {
     display: block;
     margin-bottom: 10px;
     color: var(--color-primary-dark);
     font-size: 0.82rem;
     font-weight: 700;
 }

 .facilitadores-block h2 {
     margin: 0;
     color: var(--color-dark);
     font-size: 2.4rem;
     line-height: 1.1;
     font-weight: 700;
 }

 .facilitadores-description {
     margin: 0;
     color: var(--color-gray);
     font-size: 0.98rem;
     line-height: 1.55;
 }

 .facilitadores-list {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1px;
     margin: 0;
     padding: 0;
     list-style: none;
     overflow: hidden;
     border: 1px solid #e1e4dc;
     border-radius: 8px;
     background: #e1e4dc;
 }

 .facilitadores-list li {
     display: flex;
     align-items: center;
     min-height: 54px;
     padding: 14px 18px;
     background: var(--color-light);
     color: var(--color-dark);
     font-size: 0.98rem;
     font-weight: 600;
     line-height: 1.35;
 }

 .facilitadores-list li::before {
     content: "";
     width: 7px;
     height: 7px;
     margin-right: 12px;
     border-radius: 50%;
     background: var(--color-primary);
     flex: 0 0 auto;
 }

 .facilitadores-list span {
     min-width: 0;
     overflow-wrap: anywhere;
 }

 .cta-wrap {
     display: flex;
     justify-content: center;
 }

 .cta-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 470px;
     min-height: 48px;
     padding: 0 28px;
     border: 1.5px solid #2a2a2a;
     border-radius: 999px;
     text-decoration: none;
     color: #1f1f1f;
     font-size: 0.98rem;
     font-weight: 500;
     background: transparent;
     transition: 0.2s ease;
 }

 .cta-button:hover {
     background: #e7e7e7;
 }

 @media (max-width: 1024px) {
     .hero-text h1 {
         font-size: 3rem;
     }

     .content-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .image-wrap img {
         min-height: auto;
         max-height: 600px;
     }

     .facilitadores-header {
         grid-template-columns: 1fr;
         gap: 12px;
         align-items: start;
     }

     .facilitadores-list {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .facilitacao {
         padding: 48px 20px 56px;
     }

     .hero-text {
         margin-bottom: 40px;
     }

     .hero-text h1 {
         font-size: 2.3rem;
     }

     .hero-text p {
         font-size: 0.95rem;
     }

     .text-block p {
         font-size: 0.95rem;
     }

     .facilitadores-block {
         margin-bottom: 42px;
         padding-top: 30px;
     }

     .facilitadores-block h2 {
         font-size: 2rem;
     }

     .facilitadores-description {
         font-size: 0.95rem;
     }

     .facilitadores-list {
         grid-template-columns: 1fr;
     }

     .facilitadores-list li {
         min-height: auto;
         padding: 13px 14px;
         font-size: 0.95rem;
     }

     .cta-button {
         min-width: 100%;
         text-align: center;
         padding: 12px 20px;
     }
 }

 .grid-2.bottom {
     display: grid;
     grid-template-columns: 400px 1fr;
     gap: 90px;
     align-items: start;
     margin-top: 48px;
 }

 .thumbs {
     display: grid;
     grid-template-columns: repeat(2, 194px);
     gap: 22px;
     align-content: start;
 }

 .thumbs img {
     width: 194px;
     height: 194px;
     object-fit: cover;
     display: block;
     border-radius: 22px;
     background: #d9d9d9;
 }

 .list {
     max-width: 700px;
     padding-top: 8px;
 }

 .list h3 {
     margin: 0 0 26px;
     font-size: 3.25rem;
     line-height: 1.05;
     font-weight: 700;
     letter-spacing: -0.03em;
     color: #1f1f1f;
 }

 .list p,
 .list li {
     color: #2f2f2f;
 }

 .list ul {
     margin: 0;
     padding-left: 28px;
 }

 .list li {
     font-size: 1rem;
     line-height: 1.45;
     margin-bottom: 6px;
 }

 .list li::marker {
     color: #1f1f1f;
 }

 @media (max-width: 1024px) {
     .grid-2.bottom {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .thumbs {
         grid-template-columns: repeat(2, minmax(140px, 1fr));
     }

     .thumbs img {
         width: 100%;
         height: 190px;
     }

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

     .list h3 {
         font-size: 2.4rem;
         margin-bottom: 20px;
     }
 }

 @media (max-width: 640px) {
     .thumbs {
         gap: 14px;
     }

     .thumbs img {
         height: 150px;
         border-radius: 16px;
     }

     .list h3 {
         font-size: 2rem;
     }

     .list li {
         font-size: 0.95rem;
     }
 }

 .faq-section {
     background: #efefef;
     padding: 72px 24px 100px;
 }

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

 .faq-title {
     margin: 0 0 42px;
     font-size: 4rem;
     line-height: 1.05;
     font-weight: 700;
     letter-spacing: -0.03em;
     color: #000;
 }

 .faq-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     column-gap: 90px;
     row-gap: 42px;
 }

 .faq-item h3 {
     margin: 0 0 12px;
     font-size: 1.05rem;
     line-height: 1.35;
     font-weight: 700;
     color: #2a2a2a;
 }

 .faq-item p {
     margin: 0 0 10px;
     font-size: 0.98rem;
     line-height: 1.5;
     font-weight: 400;
     color: #555;
 }

 .faq-item p:last-child {
     margin-bottom: 0;
 }

 @media (max-width: 900px) {
     .faq-title {
         font-size: 2.8rem;
         margin-bottom: 32px;
     }

     .faq-grid {
         grid-template-columns: 1fr;
         gap: 28px;
     }
 }

 @media (max-width: 640px) {
     .faq-section {
         padding: 48px 20px 64px;
     }

     .faq-title {
         font-size: 2.2rem;
     }

     .faq-item h3 {
         font-size: 1rem;
     }

     .faq-item p {
         font-size: 0.95rem;
     }
 }

 .logos-footer {
     width: 100%;
     background: #d9dde2;
     padding: 56px 44px 22px;
     color: #2f3133;
     font-family: "Inter", Arial, sans-serif;
     border-bottom-left-radius: 10px;
     border-bottom-right-radius: 10px;
 }

 .logos-footer a {
     color: #2f3133;
     text-decoration: none;
 }

 .logos-footer a:hover {
     opacity: 0.8;
 }

 .logos-footer .social-icons,
 .logos-footer .infos-footer {
     width: 100%;
     max-width: 1960px;
     margin: 0 auto;
 }

 .logos-footer .social-icons {
     border-top: 1px solid rgba(47, 49, 51, 0.14);
     border-bottom: 1px solid rgba(47, 49, 51, 0.14);
     padding: 18px 0 8px;
 }

 .logos-footer .infos-footer {
     padding-top: 20px;
 }

 .logos-footer .flex {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
 }

 .logos-footer .lg\:w-1\/5 {
     width: 20%;
 }

 .logos-footer .lg\:w-2\/5 {
     width: 40%;
 }

 .logos-footer .lg\:w-3\/5 {
     width: 60%;
 }

 .logos-footer .w-full {
     width: 100%;
 }

 .logos-footer .text-right {
     text-align: right;
 }

 .logos-footer .pr-5 {
     padding-right: 20px;
 }

 .logos-footer .lg\:float-right {
     float: right;
 }

 .text-siga {
     display: inline-block;
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: #3b3d40;
 }

 .text-contato {
     font-size: 14px;
     font-weight: 400;
     color: #3b3d40;
 }

 .social-icons ul,
 .infos-footer ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .social-icons ul {
     display: flex;
     align-items: center;
     gap: 14px;
     justify-content: flex-start;
 }

 .social-icons li {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding-left: 0 !important;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     line-height: 1;
     color: #2e3133;
 }

 .social-icons svg {
     width: 14px;
     height: 14px;
     display: block;
     fill: currentColor;
 }

 .nic-cnpj {
     display: inline-block;
     font-size: 13px;
     line-height: 1.65;
     color: #3b3d40;
 }

 .infos-footer ul {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 42px;
 }

 .infos-footer li a {
     font-size: 13px;
     line-height: 1.4;
     color: #3b3d40;
 }

 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
 }

 /* responsivo */
 @media (max-width: 1024px) {
     .logos-footer {
         padding: 36px 24px 20px;
     }

     .logos-footer .lg\:w-1\/5,
     .logos-footer .lg\:w-2\/5,
     .logos-footer .lg\:w-3\/5 {
         width: 100%;
     }

     .logos-footer .text-right {
         text-align: left;
     }

     .logos-footer .pr-5 {
         padding-right: 0;
     }

     .logos-footer .social-icons {
         padding: 16px 0 14px;
     }

     .logos-footer .social-icons .flex,
     .logos-footer .infos-footer .flex {
         gap: 16px;
     }

     .social-icons ul {
         gap: 12px;
         flex-wrap: wrap;
     }

     .infos-footer ul {
         justify-content: flex-start;
         gap: 20px;
         flex-wrap: wrap;
     }

     .logos-footer .lg\:float-right {
         float: none;
     }
 }

 @media (max-width: 640px) {
     .text-siga {
         font-size: 11px;
         letter-spacing: 0.12em;
     }

     .text-contato,
     .infos-footer li a,
     .nic-cnpj {
         font-size: 12px;
     }

     .social-icons a,
     .social-icons svg {
         width: 13px;
         height: 13px;
     }
 }

 .text-on-foreground{
    margin-bottom: 1rem;
 }
