/* Services */
.services {
    display: flex;
}

.services-head {
    display: flex;
    flex-direction: column;
}

.services-head p {
    margin-bottom: 24px;
}

.services-head h4 {
    font-size: 32px;
    margin-bottom: 24px;
}

.services .services-head a {
    align-self: start;
}

.services-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services-options a.redirect {
    display: flex;
}

.option {
    display: flex;
    cursor: pointer;
}

.option h6,
.option p {
    font-size: 16px;
}

.option h6 {
    margin-bottom: 8px;
}

.option p {
    margin-bottom: 0;
}

.option-text {
    padding: 20px 24px;
    background-color: var(--color-background-light-gray);
}

.option-button {
    display: flex;
    align-items: center;
}

.option-button {
    background-color: var(--color-primary);
}

.services .button {
    width: 48px;
    height: 100%;
}

.option:hover h6 {
    color: var(--color-orange);
    transition: 0.5s;
}

.option:hover .option-button {
    background-color: var(--color-orange);
    transition: 0.5s;
}

@media screen and (min-width: 1080px) {
    .only-mac {
        display: none !important;
    }

    .service-element .service {
        flex-direction: row;
    }

    .services {
        gap: 32px;
    }

    .services-head {
        width: 50%;
    }

    .services-options {
        width: 50%;
    }
}

@media screen and (max-width: 1079px) {
    .hide-mac {
        display: none !important;
    }

    .services .services-options {
        margin-top: 24px;
    }

    .services {
        flex-direction: column;
    }
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
    .services .services-head a {
        align-self: center;
    }
}

@media screen and (max-width: 767px) {
    .services .services-head h4 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .services .services-head a.button-link.solid {
        width: 100%;
    }

    .option-text {
        padding: 16px 20px;
    }

    .services .button {
        width: 32px;
    }
}

.mt-50 {
    margin-top: 50px;
}

/* Responsividade para o iframe do vídeo dentro de .services-head */
.services-head iframe {
    width: 100%;
    max-width: 560px;
    height: 240px;
    border-radius: 12px;
    border: none;
    display: block;
    background: #fff;
    box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.10), 0 1.5px 6px 0 rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.services-head iframe:hover {
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.15), 0 3px 12px 0 rgba(0, 0, 0, 0.10);
}

@media (max-width: 1080px) {
    .services-head iframe {
        max-width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-head iframe {
        max-width: 100%;
        height: 300px;
        margin: 16px 0;
    }
}

@media (max-width: 600px) {
    .services-head iframe {
        height: 250px;
        margin: 8px 0;
    }
}