.swiper-slide {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}
.swiper-slide .area-text {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.swiper-slide .area-text h1 {
    color: var(--azul);
    font-size: 1.8rem;
    font-weight: 500;
    max-width:700px;
    text-align: center;
}
.swiper-slide .area-text h1 span {
    font-weight: 600;
}
.swiper-slide .area-text a {
    color: var(--azul);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid var(--azul);
    transition: all .3s ease;
}
.swiper-slide .area-text a svg {
    width: 20px;
    height: 20px;
    fill: var(--azul);
    transition: all .3s ease;
}
.swiper-slide .area-text a:hover {
    background-color: var(--azul);
    color: var(--bege);
}
.swiper-slide .area-text a:hover svg {
    fill: var(--bege);
}
main {
    background-color: #fbf5e5;
    color: var(--azul);
    padding: 3rem 1rem;
    scroll-margin-top: 85px;
}
h1.title-default {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--azul);
    padding: 1rem 0;
    position: relative;
}
h1.title-default::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100px;
    background-color: var(--bege-dark-secondary);
}
.botoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.conteudo .right {
    width: 50%;
}
a.item-btn {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1rem;
    width: 100%;
    max-width: max-content;
    padding: 10px 1rem;
    border: 3px solid var(--bege-dark-secondary);
    color: var(--azul);
    font-size: 1.25rem;
    font-weight: 600;
}
a.item-btn.delay:nth-child(2) {
    transition-delay: .3s;
}
a.item-btn.delay:nth-child(3) {
    transition-delay: .6s;
}
a.item-btn.delay:nth-child(4) {
    transition-delay: .9s;
}
a.item-btn.delay:nth-child(5) {
    transition-delay: 1s;
}
a.item-btn svg {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    object-fit: contain;
    fill: var(--azul);
    transition: all .3s ease;
}
a.item-btn:hover {
    transition: all .3s ease;
    background-color: var(--azul);
    color: var(--bege);
    border-color: var(--azul);
}
a.item-btn:hover svg {
    transition: all .3s ease;
    fill: var(--bege);
}
a.item-btn.local p {
    font-weight: 600;
}
a.item-btn.local span {
    font-size: 1rem;
}
a.item-btn.local .texto {
    line-height: 1;
}
.conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}
.conteudo .left {
    width: 100%;
    max-width: 550px;
}
form.form-contato {
    display: grid;
    gap: 1rem;
}
form.form-contato .item label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-roxo);
}
form.form-contato input[type="text"],
form.form-contato textarea {
    width: 100%;
    height: 35px;
    padding: 5px 10px;
    border: none;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid transparent;
    background-color: var(--bege-secondary);
    color: var(--azul);
}
form.form-contato input[type="text"]::placeholder,
form.form-contato input[type="email"]::placeholder {
    font-size: 0.8rem;
    color: #979797;
}
form.form-contato textarea {
    height: auto;
}
form.form-contato input[type="text"]:focus,
form.form-contato textarea:focus {
    border-color: var(--bege);
}
.area-termos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    text-align: center;
    color: var(--azul);
    font-size: 14px;
    font-weight: 400;
}
.area-termos input,
.area-termos label {
    cursor: pointer;
    text-align: left;
}
.area-termos a {
    color: var(--bege-dark-secondary);
    border-bottom: 1px solid var(--bege-dark-secondary);
}
.area-termos a:hover {
    transition: .3s;
    font-weight: 600;
}
form.form-contato button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    height: 40px;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--bege-dark-secondary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
}
form.form-contato button:hover {
    background-color: var(--azul);
    color: var(--bege);
    transition: .3s;
}

@media (min-width: 1000px) {
    a.item-btn {
        min-width: 540px;
    }
}

@media (max-width: 1000px) {
    .conteudo {
        flex-direction: column;
    }
    .conteudo .left,
    .conteudo .right {
        width: 100%;
        max-width: 100%;
    }
    a.item-btn {
        max-width: 100%;
        justify-content: left;
    }
}
@media (max-width: 600px) {
    .swiper-slide .area-text h1 {
        font-size: 1.5rem;
    }
    a.item-btn {
        font-size: 1rem;
        padding: 10px;
        gap: 5px;
        flex-direction: column;
        max-width: 100%;
    }
}
@media (max-width: 360px) {
    a.item-btn {
        font-size: 0.9rem;
    }
}