html,
body {
    height: 100%;
    width: 100%;
}
body {
    font-family: "Nunito", sans-serif;
}
.content {
    height: 100%;
    width: 100%;
}
header {
    background-image: url("../img/header-bg.webp?1");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 50vh;
    position: relative;
}
header .title {
    position: absolute;
    bottom: 60px;
    left: 0;
    padding: 20px;
    color: #00acc8;
    text-align: center;
    font-weight: 900;
    font-size: 22px;
}
header .title .orange {
    color: #f7941d;
}
header .title .green {
    color: #39b54a;
}
main {
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: url("../img/body-bg.webp");
    background-size: cover;
    height: 60vh;
    position: absolute;
}
main .title {
    margin-top: 100px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
}
p {
    margin-bottom: 8px;
}
.btn-tratamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(90deg, #5fe070 0%, #39b54a 100%);
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-tratamento.style1 {
    background: linear-gradient(90deg, #2cb9cf 0%, #00acc8 100%);
}
.btn-tratamento.style2 {
    background: linear-gradient(90deg, #ffad48 0%, #f7941d 100%);
}
.btn-tratamento .arrow {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.btn-tratamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #39b54a 0%, #5fe070 100%);
}
.btn-tratamento.style1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #314aac 0%, #5971d4 100%);
}
.btn-tratamento.style2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #f7941d 0%, #ffad48 100%);
}
@media (max-width: 592px) {
    .btn-tratamento {
        width: 100%;
    }
}
@media (min-width: 768px) {
    body {
        position: relative;
        background-color: #f5f5f5;
    }
    .content {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 1050px;
        width: 650px;
        border: 1px solid #ccc;
    }
    header {
        height: 600px;
        position: relative;
    }
    main {
        position: relative;
        height: 600px;
        bottom: 100px;
    }
    header .title {
        bottom: 70px;
    }
    main .title {
        margin-top: 170px;
    }
}

@media (max-width: 592px) and (max-height: 850px) and (orientation: portrait) {
    .content {
        height: 100%;
        width: 100%;
    }
    header {
        height: 45vh;
    }
    main {
        height: 60vh;
    }
    main .title {
        margin-top: 120px; 
        font-size: 15px;
    }
    .btn-tratamento {
        padding: 6px 32px;
        font-size: 15px;
    }
}

@media (max-width: 592px) and (max-height: 700px) and (orientation: portrait) {
    .content {
        height: 950px;
    }
    header {
        height: 350px;
        position: relative;
    }
    main {
        position: relative;
        bottom: 50px;
        height: 700px;
    }
    main .title {
        margin-top: 170px;
        font-size: 15px;
    }
    .btn-tratamento {
        padding: 6px 32px;
        font-size: 15px;
    }
}
