.carousel {
    flex-direction: column-reverse;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 2rem auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.box {
    margin: 1rem;
    width: 500px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.carousel-buttons {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.carousel-buttons button {
    background-color: rgba(194, 12, 131, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-buttons button:hover {
    background-color: rgba(194, 12, 131, 1);
    transform: scale(1.1);
}

/* Responsividade: Empilhar as imagens uma embaixo da outra */
@media (max-width: 768px) {
    .carousel-track {
        flex-direction: column;  /* Empilha as imagens em coluna */
    }

    .carousel-slide {
        flex-direction: column;  /* Torna os slides verticais */
        padding: 1rem;  /* Remove o padding lateral */
        justify-content: center;
        align-items: center;
    }

    .box {
        width: 90%;
        margin: 0.5rem auto;
    }

    .carousel-buttons {
        top: 20%;  /* Ajusta a posição dos botões para um local mais acessível */
    }
    .carousel-buttons {
        display: none;
    }

    .video-container {
        padding: 15px;
    }
}

.video-container {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 (altura/largura) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

iframe:hover {
    transform: scale(1.05);
}

        /* Estilos do Footer */
        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
        }

        .footer .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer .social-icons {
            margin-top: 15px;
        }

        .footer .social-icon {
            font-size: 24px;
            margin: 0 10px;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer .social-icon:hover {
            color: #00aaff; /* Cor para o hover */
            transform: scale(1.1);
        }

        .footer .social-icon.instagram:hover {
            color: #E4405F; /* Cor do Instagram */
        }

        .footer .social-icon.youtube:hover {
            color: #FF0000; /* Cor do YouTube */
        }

        .footer .social-icon.kwai:hover {
            color: #00D4B6; /* Cor do Kwai */
        }

        .footer .social-icon.linkedin:hover {
            color: #0A66C2; /* Cor do LinkedIn */
        }

        @media (max-width: 768px) {
            .footer .social-icons {
                margin-top: 10px;
            }

            .footer .social-icon {
                font-size: 20px;
                margin: 0 8px;
            }
        }

        /* Estilo do Banner de Política de Privacidade */
        .privacy-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #d6d6d6;
            color: rgb(214, 214, 214);
            padding: 15px;
            text-align: center;
            font-size: 14px;
            z-index: 1000;
        }

        .privacy-banner p {
            margin: 0;
            display: inline-block;
            max-width: 80%;
            text-align: left;
        }

        .privacy-banner button {
            background-color: #4CAF50;
            color: white;
            padding: 8px 16px;
            margin-left: 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .privacy-banner button:hover {
            background-color: #45a049;
        }

        .content {
            padding: 20px;
            text-align: center;
        }

        .content h1 {
            font-size: 28px;
        }        