#home {
    h3 {
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 2px;
        font-size: 1.3rem;
        color: var(--ar-green);
    }
    
    section:not(.full) {
        padding: 4rem;
    }
    section.hero {
        margin-top: 80px;
        padding: 8rem 4rem;
        position: relative;
        width: 100%;
        overflow-y: hidden;
        background-image: linear-gradient(0deg, rgba(47, 166, 83, 0.7), rgba(47, 166, 83, 0.5));
        text-align: center;
        color: white;

        h2 {
            font-size: clamp(1rem, 4rem, 8rem);
            margin-bottom: 0;
            line-height: clamp(1rem, 4rem, 8rem);
            text-transform: uppercase;
            font-weight: 700;
        }
        h3 {
            font-size: clamp(.8rem, 1.5rem, 2rem);
            color: white;
            text-transform: none;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        p {
            max-width: 100%;
        }
        video {
          position: absolute;
          top: 60%;
          left: 50%;
          transform: translate(-50%, -50%);
          min-width: 100%; /* Garante que o vídeo cobre horizontalmente */
          min-height: 100vh; /* Garante que o vídeo cobre verticalmente */
          z-index: -1; /* Faz o vídeo ficar atrás do conteúdo */
          object-fit: cover; /* Ajusta o vídeo para cobrir todo o contêiner */
        }
    }

    #o-problema {
        display: flex;
        gap: 50px;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        .video-content {
            width: 300px; /* Define o tamanho do vídeo */
            height: 300px;
            clip-path: circle(50%); /* Máscara circular */
            overflow: hidden; /* Garante que apenas a parte dentro do círculo apareça */
            
            video {
              width: 100%; /* O vídeo se ajusta ao tamanho do contêiner */
              height: 100%;
              object-fit: cover; /* Garante que o vídeo preencha o círculo sem deformar */
            }
        }
      
    }

    #nossa-solucao {
        background-color: ghostwhite;
        display: flex;
        gap: 50px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;

        .video-content {
            width: 300px; /* Define o tamanho do vídeo */
            height: 300px;
            clip-path: circle(50%); /* Máscara circular */
            overflow: hidden; /* Garante que apenas a parte dentro do círculo apareça */
            
            video {
              width: 100%; /* O vídeo se ajusta ao tamanho do contêiner */
              height: 100%;
              object-fit: cover; /* Garante que o vídeo preencha o círculo sem deformar */
            }
        }
        p.desc {
            margin-bottom: 30px;
        }
        .beneficios {
            margin-top: 20px;
            div {
                background-color: white;
                padding: 10px 20px;
                border-radius: 5px;
                color: var(--ar-green);
                font-size: .8rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-top: 10px;
                font-weight: 500;
            }
        }
    }

    #quem-somos {
        text-align: center;
        p {
            margin: 0 auto;
        }
    }
    
    .pre-cta {
        padding: 2rem .5rem;
        text-align: center;

        h4 {
            font-size: 2.5rem;
        }
    }

    
    /* Responsividade: telas menores (por exemplo, abaixo de 768px) */
    @media (max-width: 768px) {

        section.hero {
            video {
                top: 40%;
            }
        }
        
        #o-problema {
            flex-direction: column-reverse;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        #nossa-solucao {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: ghostwhite;
            text-align: center;
            
            .beneficios {
                flex-direction: column;
            }
        }
    }
}