
      
        /* Hero Section com a imagem de fundo */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
          
            
            background-size: cover;
            padding: 80px 0;
            overflow: hidden;
        }
  
 

        /* Subtítulo superior */
        .hero-tagline {
            font-size: 1rem;
            font-weight: 600;
            color: #4a90e2;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .hero-tagline span {
            color: var(--text-muted);
        }

        /* Título Principal */
        .hero-title {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            max-width: 550px;
          color:#fff;
        }

        .hero-title .highlight {
            color: #4a90e2;
        }

        /* Texto Descritivo */
        .hero-text {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            max-width: 520px;
            margin-bottom: 2.5rem;
        }

        /* Botão de Ação Customizado */
        .btn-cta {
            background-color: var(--brand-blue);
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 32px;
            border-radius: 6px;
            border: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta:hover {
            background-color: #005ecb;
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 118, 255, 0.3);
        }

        /* Selo ENGIE com toque sutil de vidro */
        .brand-badge-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .brand-badge {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            /*background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);*/
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /*padding: 20px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);*/
            text-align: center;
            
        }

        .brand-badge img {
            width: 250px;
            height: auto;
            margin-bottom: 8px;
        }

        .brand-badge span {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            line-height: 1.2;
        }

        /* Responsividade (Mobile-First) */
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.2rem;
            }
            .hero-text {
                font-size: 1.05rem;
            }
            .brand-badge-container {
                margin-bottom: 0;
                justify-content: flex-start;
                padding-left: 15%;
            }
          
          .brand-badge{position:absolute; top:20%;left:55%;}
            
        }

        @media (min-width: 992px) {
            .brand-badge-container {
                padding-left: 0%;
            }
        }
  
  @media(max-width:768px){
     .hero-section {
           
            padding: 40px 0;

        }
    .brand-badge img {
    width: 125px;

    margin-bottom: 0px;
}
    
    .brand-badge {
    width:auto;
      height:auto;
}
    
  }