.services {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
}

.services__image {
    max-width: 100%;
    align-self: center;
    border-radius: 8px;
}

.services__title {
    margin-top: 1.5rem;
}

.services__content {
    margin-top: 1.5rem;
}

.services__item {
    display: flex;
    align-items: flex-start;
    margin-top: 3rem;
}

.services__info {
    margin-left: 1.5rem;
    border-radius: 8px;
}

.services__item-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.services__item-content {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .services {
        margin-top: 8rem;
    }
}

@media (min-width: 900px) {
    .services {
        margin-top: 10rem;
        flex-direction: row;
        justify-content: space-between;
        height: 60rem;
    }
    .services__image {
        width: 42%;
        align-self: flex-start;
    }

    .services__description-container {
        width: 50%;
    }
}
.plans__container video {
    width: 100%; /* Ocupa 100% da largura do container */
    height: auto; /* Mantém a proporção do vídeo */
    max-width: 350px; /* Define um tamanho máximo para o vídeo */
    display: block; /* Remove espaços indesejados abaixo do vídeo */
    margin: 0 auto; /* Centraliza o vídeo */
    border-radius: 8px; /* Bordas arredondadas */
}

@media (max-width: 768px) {
    .plans__container {
        max-width: 100%;
        padding: 0.5rem;
    }

    .plans__container video {
        border-radius: 0;
    }
}
.plans__container iframe {
    border: 5px solid #5f5f5f;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plans__container iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

        /* Ajustes para celulares */
        @media (max-width: 768px) {
            .plans__container {
                padding: 10px;
                border-radius: 10px;
            }

            .plans__container iframe {
                border-width: 3px;
                border-radius: 10px;
            }
        }