body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Helvetica', sans-serif;
        }

        .bg-cover {
            background: url('../assets/bg-man.jpg') no-repeat center center/cover;
            height: 100vh;
            position: relative;
            animation: shrink 20s infinite alternate;

        }
        
        @keyframes shrink {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 120% 120%;
  }
}

        .overlay-diagonal {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
            z-index: 1;
        }

        .content {
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 10%;
            color: white;
            text-align: left;
            z-index: 2;
        }

        .text-white-70 {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsividade para dispositivos móveis */
        @media (max-width: 768px) {
            .overlay-diagonal {
                width: 100%;
                clip-path: none;
            }

            .content {
                width: 100%;
                align-items: center;
                text-align: center;
                padding-left: 5%;
                padding-right: 5%;
            }
        }