:root {
            --primary: #075255;
            --secondary: #f3d316;
            --dark: #101319;
            --light: #f8f9fa;
            --branco: #ffffff;
            --verdinho: #d1ddce;
        }
        .bg-primary {
            background-color: var(--primary) !important;
        }

         .bg-light {
            background-color: var(--light) !important;
        }

         .bg-light2 {
            background-color: var(--branco) !important;
        }

        .bg-dark {
            background-color: var(--dark) !important;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* Estilo do Título com Fundo Centralizado */
        .title-wrapper-v5 {
            position: relative;
            padding: 2rem 0;
            text-align: center; /* Centraliza o conteúdo da frente */
        }

        .background-text {
            position: absolute;
            top: 30%;
            left: 50%; /* << MUDANÇA AQUI: Posiciona no meio horizontal */
            transform: translate(-50%, -50% ); /* << MUDANÇA AQUI: Ajuste fino para centralização perfeita */
            font-family: 'Poppins', sans-serif;
            font-size: 7rem;
            font-weight: 800;
            color: #e9ecef;
            z-index: 1;
            user-select: none;
            line-height: 1;
            white-space: nowrap; /* Impede que o texto quebre a linha */
        }

        .foreground-content {
            position: relative;
            z-index: 2;
        }

        .section-title-v5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .section-subtitle-v5 {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 500px;
            margin: 0 auto; /* Garante que o subtítulo também fique centralizado */
        }
        
        /* Ajuste para telas menores */
        @media (max-width: 767px) {
            .background-text {
                font-size: 4.5rem; /* Reduz um pouco mais para caber melhor */
            }
            .section-title-v5 {
                font-size: 2.2rem;
            }
        }

        /* Navbar */
        .navbar {
            transition: all 0.3s ease;
            padding: 1rem 0;
        }
        
        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark) !important;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .navbar-toggler {
            border: none;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 122, 113, 0.8), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?auto=format&fit=crop&w=1974&q=80') no-repeat center center;
            background-size: cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero .lead {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .btn-primary-custom {
            background-color: var(--secondary);
            color: var(--dark);
            font-weight: 500;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: #e6c414;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-custom {
            border: 2px solid white;
            color: white;
            font-weight: 500;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Social Proof */
        .social-proof {
            background-color: white;
            padding: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: -2rem;
            position: relative;
            z-index: 1;
            border-radius: 10px;
        }
        
        .social-proof-item {
            text-align: center;
            padding: 0 2rem;
        }
        
        .social-proof-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* About Section */
        .about {
            padding: 6rem 0;
            background-color: var(--light);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
      .service-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(7, 82, 85, 0.08);
    position: relative;
    overflow: hidden;
  }

  .service-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00b37e, #f3d316);
    border-radius: 18px 18px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .service-card-modern:hover::before {
    opacity: 1;
  }

  .service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 179, 126, 0.15);
  }

  .service-card-modern .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b37e, #075255);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 179, 126, 0.3);
  }

  .service-card-modern:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 179, 126, 0.5);
  }

  .service-card-modern h5 {
    font-family: "Poppins", sans-serif;
    color: #075255;
  }

  .service-card-modern p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
  }


   /*
          >>> NOVO CSS PARA A LISTA DE DESTAQUES <<<
        */
        .service-checklist {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
            text-align: left;
            font-size: 0.9rem;
            color: #495057;
        }
        .service-checklist li {
            display: flex;
            align-items: center;
            gap: 0.75rem; /* Espaço entre o ícone e o texto */
            margin-bottom: 0.5rem;
        }
        .service-checklist .bi-check-circle-fill {
            color: var(--primary);
            font-size: 1.1rem;
        }

  @media (max-width: 768px) {
    .service-card-modern {
      padding: 2rem 1rem;
    }
  }



        
      
   /* Fundo moderno com gradiente suave */
  .stats-section {
    background: linear-gradient(135deg, rgba(7,82,85,0.07), rgba(243,211,22,0.07));
    position: relative;
    overflow: hidden;
  }

  /* Efeito de brilho decorativo */
  .stats-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(0,179,126,0.25), transparent 70%);
    filter: blur(50px);
    animation: floatGlow 6s ease-in-out infinite alternate;
  }

  .stats-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, rgba(243,211,22,0.25), transparent 70%);
    filter: blur(60px);
    animation: floatGlow 8s ease-in-out infinite alternate-reverse;
  }

  @keyframes floatGlow {
    0% { transform: translateY(0); opacity: 0.9; }
    100% { transform: translateY(-15px); opacity: 0.6; }
  }

  /* Cartões */
  .stat-card {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 2.5rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(7,82,85,0.1);
    position: relative;
  }

  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,179,126,0.15);
  }

  /* Ícones */
  .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b37e, #075255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 179, 126, 0.3);
    transition: all 0.3s ease;
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 179, 126, 0.5);
  }

  /* Números e textos */
  .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
  }

  .stat-text {
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
  }

  /* Responsividade */
  @media (max-width: 768px) {
    .stat-card {
      padding: 2rem 1rem;
    }
    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }
    .stat-number {
      font-size: 2.2rem;
    }
  }

        
        /* Portfolio Section */
        .portfolio {
            padding: 6rem 0;
            background-color: var(--light);
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-img {
            transition: all 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem;
            color: white;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 0;
        }
        
        .contact-form {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        
        .contact-info {
            padding-left: 3rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 1rem;
            margin-top: 0.3rem;
        }


/* ================================================== */
/*    ESTILOS DOS CARDS DE CONTATO (COM CORES DA MARCA)   */
/* ================================================== */

/* Define um fundo sutil para a seção */
.contact-section-colored {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
}

.contact-card {
    /* Usa a cor --branco para o fundo do card */
    background-color: var(--branco); 
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Usa a cor --secondary para a borda no hover */
    border-color: var(--secondary); 
}

.contact-card-icon {
    font-size: 2rem;
    /* Usa a cor --primary para o ícone */
    color: var(--primary); 
}

.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    /* Usa a cor --dark para o título */
    color: var(--dark); 
    margin-bottom: 0.25rem;
}

.contact-card-info {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Estilos das Redes Sociais */
.social-icon-link {
    font-size: 1.5rem;
    color: #6c757d;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
    /* Usa a cor --primary para o hover do ícone social */
    color: var(--primary); 
    transform: scale(1.1);
}



        
 .footer {
    background-color: #101319;
  }

  .footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .footer a:hover {
    color: var(--secondary, #f3d316);
  }

  .footer h5 {
    font-family: "Poppins", sans-serif;
    color: #f3d316;
  }

  .footer .social-icons a {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .footer .social-icons a:hover {
    color: var(--secondary, #f3d316);
    transform: translateY(-3px);
  }

  .footer ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .footer-bottom {
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.75);
  }

  .footer-bottom a {
    color: var(--secondary, #f3d316);
  }

  /* Centralização no Mobile */
  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }

    .footer ul.d-flex {
      justify-content: center;
      text-align: center;
    }

    .footer .social-icons {
      justify-content: center !important;
    }

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


        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.25rem;
            }
            
            .contact-info {
                padding-left: 0;
                margin-top: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 6rem 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .social-proof-item {
                margin-bottom: 1.5rem;
            }
        }
        
        /* ... */
        
        .has-fixed-navbar {
            padding-top: var(--navbar-height-mobile);
            scroll-padding-top: var(--navbar-height-mobile);
        }
        
        @media (min-width: 992px) {
            .has-fixed-navbar {
                padding-top: var(--navbar-height-desktop);
                scroll-padding-top: var(--navbar-height-desktop);
            }
        }
        
        .navbar .navbar-brand img {
            height: 44px;
            width: auto;
            display: block;
        }
        
        /* Ritmo visual consistente entre sections */
        section {
            padding: 4rem 0;
        }
        
        section.hero {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

                /* Estilo dos Cards - Opção 3 */
        .proof-card-v3 {
             background-color: var(--light);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border: 1px solid transparent;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            height: 100%;
        }
        .proof-card-v3:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(7, 82, 85, 0.1);
            border-color: var(--primary);
        }
        .proof-card-v3 .icon-container {
            flex-shrink: 0;
            font-size: 2.5rem;
            color: var(--primary);
        }
        .proof-card-v3 h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: #343a40;
            margin-bottom: 0.5rem;
        }
        .proof-card-v3 p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 0;
        }


 .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }

  .feature-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b37e, #075255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 6px 15px rgba(0, 179, 126, 0.3);
    transition: all 0.3s ease;
  }

  .feature-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 179, 126, 0.5);
  }

  .feature-item h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
  }

  .feature-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Responsividade */
  @media (max-width: 768px) {
    .feature-item {
      padding: 2rem 1.2rem;
    }
    .feature-item .icon {
      width: 60px;
      height: 60px;
      font-size: 1.6rem;
    }
  }


   /* CTA Base */
  .cta-section {
    background: linear-gradient(135deg, #075255, #075255);
    color: white;
    text-align: center;
    position: relative;
  }

  .cta-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2rem;
  }

  .cta-section .highlight {
    color: var(--secondary);
  }

  .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
  }

  /* Botão CTA */
  .btn-cta {
    background: linear-gradient(90deg, var(--secondary), #00b37e);
    border: none;
    color: var(--primary);
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .btn-cta:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #00b37e, var(--secondary));
    box-shadow: 0 10px 35px rgba(0, 179, 126, 0.4);
    color: #fff;
  }

  /* Fundo com efeitos */
  .cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(243, 211, 22, 0.15), transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(0, 179, 126, 0.15), transparent 70%);
    z-index: 1;
  }

  .cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite alternate;
  }

  .cta-shape-1 {
    background: rgba(243, 211, 22, 0.4);
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 10%;
  }

  .cta-shape-2 {
    background: rgba(0, 179, 126, 0.4);
    width: 250px;
    height: 250px;
    top: -80px;
    right: 8%;
    animation-delay: 2s;
  }

  @keyframes float {
    0% { transform: translateY(0); opacity: 0.6; }
    100% { transform: translateY(-20px); opacity: 0.9; }
  }

  /* Responsividade */
  @media (max-width: 768px) {
    .cta-section h2 {
      font-size: 1.6rem;
    }

    .btn-cta {
      padding: 0.8rem 1.8rem;
      font-size: 1rem;
    }
  }



    /* --- Estilos da Seção do Título (Ajustado) --- */
.page-title-modern {
    position: relative; /* Essencial para conter os elementos de fundo */
    overflow: hidden;   /* Essencial para cortar as formas que saem da seção */
    
    /* 
      MUDANÇA PRINCIPAL: Padding Assimétrico para um melhor equilíbrio visual.
      7rem no topo e 4rem na base.
    */
    padding: 8rem 0 4rem 0; 
    
    background-color: #075255; /* Cor de fundo base */
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Garante que o conteúdo fique na frente dos efeitos */
.page-title-modern .container {
    position: relative;
    z-index: 2;
}

/* --- Efeitos de Fundo (Copiados do CTA) --- */
.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(243, 211, 22, 0.1), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 179, 126, 0.1), transparent 40%);
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float 8s ease-in-out infinite alternate;
}

.cta-shape-1 {
    background: rgba(243, 211, 22, 0.3);
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 15%;
}

.cta-shape-2 {
    background: rgba(0, 179, 126, 0.3);
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation-delay: 2s;
}

/* Animação de flutuação */
@keyframes float {
    from {
        transform: translateY(0px) rotate(0deg);
    }
    to {
        transform: translateY(-30px) rotate(20deg);
    }
}

  /* --- Estilos da Nova Seção de Contato --- */
        #contact-section-modern {
            padding: 100px 0;
            background-color: var(--light);
        }
        .contact-panel {
            background-color: var(--primary);
            border-radius: 1.5rem; /* Bordas mais arredondadas */
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        /* Estilo do Formulário (Lado Esquerdo) */
        .form-side {
            padding: 3rem;
            background-color: var(--white);
        }
        .form-floating > .form-control,
        .form-floating > .form-select {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
        }
        .form-floating > .form-control:focus,
        .form-floating > .form-select:focus {
            background-color: #fff;
            border-color: var(--primary);
            box-shadow: none;
        }
        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .btn-submit {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            padding: 0.8rem 2rem;
            transition: all 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #d7b90f;
            border-color: #d7b90f;
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Estilo das Informações (Lado Direito) */
        .info-side {
            padding: 3rem;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .info-item .icon {
            font-size: 1.5rem;
            color: var(--secondary);
            flex-shrink: 0;
            margin-top: 5px;
        }
        .info-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.25rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .info-item p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }
        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.3s ease, color 0.3s ease;
        }
        .social-links a:hover {
            color: var(--secondary);
            opacity: 1;
        }

        /* --- Estilos da Seção de Localização --- */
        #map-section {
            padding-top: 50px;
            padding-bottom: 100px;
        }
        .map-iframe {
            border-radius: 1rem;
           
        }
        .map-iframe:hover {
            filter: none;
        }
        .info-card {
            border: 1px solid #e9ecef;
            border-top: 4px solid var(--primary);
        }
        .info-card h3, .info-card h4 {
            color: var(--primary);
        }
        .features-card {
            background: linear-gradient(135deg, var(--primary), #0a6f73);
            border: none;
        }
        .features-card h4 { color: #fff; }
        .features-card p { color: rgba(255, 255, 255, 0.8); }
        .features-card .icon { font-size: 2.5rem; color: var(--secondary); }

        /* Botões */
        .btn-secondary { background-color: var(--secondary); border-color: var(--secondary); color: var(--dark); }
        .btn-secondary:hover { background-color: #d7b90f; border-color: #d7b90f; color: var(--dark); }
        .btn-outline-primary { color: var(--primary); border-color: var(--primary); }
        .btn-outline-primary:hover { background-color: var(--primary); color: #fff; }
        .btn-success { background-color: #198754; border-color: #198754; }




        /* =================================================================== */
/*                      AJUSTES DE RESPONSIVIDADE                      */
/* =================================================================== */

/* Para tablets e celulares (telas menores que 992px) */
@media (max-width: 991.98px) {
    /* Ajusta o padding das seções para serem menos agressivos */
    .page-title-modern {
        padding: 6rem 0 3rem 0;
    }
    #contact-section-modern,
    #map-section,
    .py-6 { /* .py-6 é usado na seção FAQ */
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* --- Seção de Contato --- */
    /* Faz o painel de contato empilhar verticalmente */
    .info-side {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start; /* Alinha o conteúdo ao topo */
        text-align: center; /* Centraliza o texto no mobile */
    }
    .info-item {
        flex-direction: column; /* Empilha ícone e texto */
        align-items: center;
        gap: 0.5rem;
    }
    .social-links {
        justify-content: center; /* Centraliza os ícones sociais */
    }

    /* --- Seção de Localização --- */
    /* Transforma o card de 4 features em uma grade 2x2 */
    .features-card .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Apenas para celulares (telas menores que 768px) */
@media (max-width: 767.98px) {
    /* Reduz ainda mais o padding para telas pequenas */
    .page-title-modern {
        padding: 8rem 0 3rem 0;
    }
    #contact-section-modern,
    #map-section,
    .py-6 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* --- Título Principal --- */
    .page-title-modern h1.h2 {
        font-size: 1.8rem; /* Reduz o tamanho do título principal */
        line-height: 1.3;
    }

    /* --- Títulos de Seção (com texto de fundo) --- */
    .background-text {
        font-size: 3.5rem !important; /* Reduz drasticamente o texto de fundo */
    }
    .section-title-v5 {
        font-size: 2rem !important;
    }
    .section-subtitle-v5 {
        font-size: 1rem !important;
    }

    /* --- Seção de Contato --- */
    /* Transforma o formulário de 2 colunas para 1 coluna */
    .form-side .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .form-side, .info-side {
        padding: 2rem; /* Reduz o padding interno no mobile */
    }
    .d-flex.flex-sm-row {
        flex-direction: column !important; /* Força o botão a ficar abaixo do checkbox */
    }

    /* --- Seção de Localização --- */
    /* Transforma o card de features em 1 coluna */
    .features-card .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




       /* --- Estilos da Nova Seção "Como Trabalhamos" (Com Padding Corrigido) --- */
        #process-section {
            /* 
            AJUSTE: Aumentando o padding-bottom para 120px.
            Isso cria um espaço visual claro antes da próxima seção.
            */
            padding: 100px 0 120px 0; 
            background-color: var(--branco);
        }
        .process-timeline {
            position: relative;
            padding-top: 2rem; /* Espaço para a linha */
        }

        /* A linha da timeline */
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 42px; /* Alinha com o centro do número */
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background-color: #dee2e6;
            z-index: 1;
        }

        .process-step {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .step-number {
            width: 85px;
            height: 85px;
            margin: 0 auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light);
            border: 2px solid #dee2e6;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            background-color: var(--primary);
            color: var(--secondary);
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .step-content {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            margin-top: -42px; /* Faz o card "subir" e se sobrepor ao número */
            padding-top: 60px; /* Compensa a sobreposição */
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-content {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .step-content .icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .step-content h3 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .step-content p {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Ajustes para Responsividade */
        @media (max-width: 991.98px) {
            .process-timeline::before {
                display: none; /* Esconde a linha horizontal em telas menores */
            }
            .process-step {
                margin-bottom: 2rem; /* Adiciona espaço entre os cards empilhados */
            }
            .step-content {
                margin-top: 0;
                padding-top: 1.5rem;
            }
            .step-number {
                display: none; /* Esconde o número para um layout mais limpo no mobile */
            }
        }

   /* --- Estilos da Nova Seção "Sobre Nós" --- */
        #about-section-modern {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }

        .about-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 450px;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
        }

        /* Forma decorativa atrás da imagem */
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 80%;
            height: 80%;
            background-color: rgba(7, 82, 85, 0.07 ); /* Cor primária com opacidade */
            border-radius: 1.5rem;
            z-index: -1;
            transition: all 0.4s ease;
        }

        .about-content h2 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about-content .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: #6c757d;
            line-height: 1.7;
        }

        .pillar-card {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
            height: 100%;
        }
        
        .pillar-card .icon {
            font-size: 2rem;
            color: var(--secondary); /* Ícones com a cor de destaque */
            margin-bottom: 1rem;
        }
        
        .pillar-card h4 {
            font-size: 1.1rem;
            color: var(--primary);
        }

        /* Ajustes Responsivos */
        @media (max-width: 991.98px) {
            .about-image-wrapper {
                margin-bottom: 3rem;
            }
            .about-content h2 {
                font-size: 2rem;
            }
        }



                /* --- Estilos da Nova Seção de Benefícios --- */
        #benefits-section {
            padding: 100px 0;
            background-color: var(--verdinho);

        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1rem;
            border-radius: 0.75rem;
            transition: background-color 0.3s ease;
            background-color: var(--light);
        }
        
      

        .benefit-item .icon-wrapper {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(7, 82, 85, 0.1); /* Fundo do ícone com opacidade */
            font-size: 1.5rem;
            color: var(--primary);
        }

        .benefit-item .content h3 {
            font-size: 1.1rem;
            font-weight: 600; /* Um pouco mais leve para o título do benefício */
            font-family: 'Inter', sans-serif; /* Usando Inter para um look mais moderno */
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .benefit-item .content p {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }


                /* --- Estilos da Nova Seção de Abrangência --- */
        #coverage-section {
            padding: 100px 0;
            position: relative;
            background-color: var(--light );
        }

        .coverage-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.05; /* Deixa a imagem bem sutil no fundo */
            filter: grayscale(100%) contrast(120%);
        }

        .coverage-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .coverage-map-image {
            width: 100%;
            border-radius: 1.5rem;
            /* Filtro de cor para alinhar com a identidade visual */
            filter: grayscale(1) contrast(1) brightness(0.5) sepia(1) hue-rotate(130deg) saturate(5);
            opacity: 0.8;
        }

        .coverage-text h2 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .coverage-text p {
            color: #495057;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .audience-tags {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .audience-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(7, 82, 85, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary);
        }

        .btn-primary-custom {
            background-color: var(--primary);
            color: #fff;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block; /* Para a margem funcionar */
            margin-top: 2rem;
        }
        .btn-primary-custom:hover {
            background-color: #053b3d;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Ajustes Responsivos */
        @media (max-width: 991.98px) {
            .coverage-content-wrapper {
                grid-template-columns: 1fr; /* Transforma em 1 coluna */
            }
            .coverage-text {
                text-align: center;
            }
            .audience-tags {
                justify-content: center;
            }
        }


/* ========================= */
/*       Galeria (Grid)      */
/* ========================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  background: #f8f9fa;
}
.photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.photo-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.35));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  transition: opacity .3s ease;
}
.photo-item:hover img { transform: scale(1.05); }
.photo-item:hover .overlay { opacity: 1; }
/* Modal ajustes */
.modal-content.bg-dark { background-color: #000 !important; }


                /* --- Estilos da Nova Seção de Portfólio (Sem Imagem) --- */
        #portfolio-text-section {
            padding: 100px 0;
            background-color: var(--light);
        }

        .project-card {
            background-color: #fff;
            border: 1px solid #e9ecef;
            border-top: 4px solid var(--primary); /* Destaque superior */
            border-radius: 1rem;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(7, 82, 85, 0.1);
        }

        .project-card .card-header-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 1rem;
        }
        
        .project-card .card-category .badge {
            font-size: 0.75rem;
            font-weight: 600;
        }

        .project-card .card-location {
            font-size: 0.85rem;
            color: #6c757d;
        }

        .project-card .card-title {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .project-card .card-description {
            font-size: 0.95rem;
            color: #495057;
            line-height: 1.7;
            flex-grow: 1; /* Faz a descrição ocupar o espaço disponível */
        }

        .project-card .results-list {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .project-card .results-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }
        .project-card .results-list .bi-check-circle-fill {
            color: var(--secondary); /* Cor de destaque para os resultados */
            font-size: 1.1rem;
        }

               /* --- Estilos da Nova Seção "Atendemos" --- */
        #clients-section {
            padding: 100px 0;
            background-color: var(--branco);
        }

        .client-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 2.5rem;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(7, 82, 85, 0.1);
        }

        .client-card .icon-wrapper {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            /* Gradiente sutil no ícone */
            background: linear-gradient(45deg, var(--primary), #0a6f73);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .client-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .client-card p {
            color: #495057;
            font-size: 1rem;
            line-height: 1.7;
        }