 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Panton", serif;
            box-sizing: border-box;
            scroll-padding-top: 120px; /* Add padding for smooth scrolling under fixed header */
            scroll-behavior: smooth;
              
        }
       
        html {
            scroll-padding-top: 120px;
          }
        

        .zap{
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 150px;
        }
            
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
       
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cores da marca */
        :root {
            --primary: black;
            --secondary: #dbb725;
            --dark: #1A365D;
            --light: #F7FAFC;
            --accent: #4FD1C5;
            --prime: #525252;
        }
        
        /* Botões */
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .whatsapp-button {
            display: inline-block;
            background-color: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            height: 85px;
            border-radius: 20px;
           

        }
        .d-block img {
            width: 300px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
       
        /* Hero Section */
        .hero {
            background-size: cover;
            color: white;
            padding: 250px 0 100px;
            text-align: center;
            position: relative;
            background-image: url('img2.jpg'); /* Coloque aqui o caminho da imagem */
            background-size: cover;
            background-position: center;
            height: 600px; /* ou ajuste a altura que quiser */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 30px;

        }

          .hero-content {
            position: relative;
            z-index: 2;
            color: white;
          }
          
          .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente para destacar o texto */
            z-index: 1;
          }
          
          #texto h1, #texto p {
            font-weight:500;
            color: white;
            
          }
          
          .whatsapp-button {
            margin-top: 20px;
            display: inline-block;
            background-color: #25D366;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            z-index: 2;
            position: relative;
          }
          
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Seções */
        section {
            padding: 80px 0;
            
        }
       
    
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            
            
        }
        .espaco{
            height: 100px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Cards de Benefícios */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            
        }
        #benefits{

            padding: 35px
        }
        
        #services{
            padding: 35px;
        }
        #team{
            padding: 35px;
        }
        #testimonials{
            padding: 35px;
        }

        .benefit-card {
            background-color: rgb(214, 209, 209);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
           
        }
        .benefit-card p{
            font-weight: 700;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            background-color: var(--light);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 24px;
        }
        
        .benefit-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Cases de Sucesso */
        .cases-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            
        }
        
        .case-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .case-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .case-content {
            padding: 25px;
            
        }
        
        .case-content h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        .case-content p{
            font-weight: 600;
            color: var(--primary);
        }
        
        .case-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        /* Serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color:  rgb(214, 209, 209);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
           
        }
        .service-card p{
            font-weight: 600;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            background-color: var(--light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 24px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Depoimentos */
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-card p::before {
            content: '"';
            font-size: 50px;
            position: absolute;
            left: -15px;
            top: -20px;
            color: var(--light);
            z-index: -1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .client-name {
            font-weight: 700;
            color: var(--dark);
        }
        
        .client-role {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Equipe */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            
        }
        
        .team-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .team-content {
            padding: 20px;
            

        }
        
        .team-content h3 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .team-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            
        }
        
        .team-skills {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            
        }
        
        /* Contato */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }
        
        .contact-info {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 20px;
            width: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--primary);
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        /* Blog CTA */
        .blog-cta {
            background-color: var(--light);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 50px;
        }
        
        .blog-cta h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-cta p {
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        #code{
            color: orange;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about img {
            height: 60px;
            margin-bottom: 20px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-links h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .footer-bottom a {
            color: white;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary);
        }
        .footer-logo{
            border-radius: 10px;
            
            
        }
        
        /* Responsivo */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                
            }
            
            nav ul li {
                margin: 10px;
                padding-right: 10px;
                
            }
            
            .mobile-menu {
                display: block;
                margin-top: 20px;
            }
            
            #mainNav {
                display: none;
                
            }
            
            #mainNav.active {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
                margin-top: 100px;
            }
            
            .hero h1 {
                font-size: 2rem;
                
                
            }
            
            section {
                padding: 60px 0;
            }
            .logo{
                padding-bottom: 5px;
            }
            h2{
                padding: 12px;
            }
            .services-grid{
                padding-top: 21px;
            }

           .testimonial-slider{
            padding-top: 27px;
           }
           .cta-button{
            justify-content: center;
            align-items: center;
           }
           .cta-button{
            display: none;
           }

          h2{
            padding-top: 60px;
           }
         


        }
