body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100vh;
    margin: 0px;
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F5;
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
span {
    margin: 0px;
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    padding-bottom: 32px !important;
    padding-left: 0px !important;
    background-color: #003366;
}

header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

a {
    text-decoration: none;
}

header h1 {
    font-size: clamp(18px, 5vw, 38px);
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

header img {
    max-width: 150px;
    width: 100%;
    min-width: 100px;
    border-radius: 0px 12px 12px 0px;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #F5F5F5;
}

.we-services {
    padding: 16px;
    display: flex;
    justify-content: center;
}

.we-services h1 {
    text-align: center;
    font-size: clamp(18px, 5vw, 32px);
    font-weight: 700px;
    color: #003366;
    font-family: 'Poppins', sans-serif;
}

.card-prices {
    margin-top: 30px;
    padding: 0px 20px;
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 1007px) {
    body {
        overflow-y: scroll;
    }

    .card-prices {
        flex-direction: column;
        align-items: center;
    }

    .price {
        width: 80% !important;
    }
}

@media screen and (max-width: 760px) {
    header .row {
        flex-direction: column;
        gap: 8px;
    }

    .request-button a {
        padding: 12px 16px;
    }

    .more-infos {
        padding-top: 20px;
        flex-direction: column;
        align-items: center !important;
        width: 100% !important;
    }

    .contact {
        align-items: center;
    }
}

@media screen and (max-width: 620px) {
    
}

.price {
    width: 33%;
    background-color: #FFF;
    padding: 20px;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05);
}

.price-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
}

.circle-icon {
    background-color: #E69999;
    padding: 5px;
    border-radius: 7px;
}

.circle-icon img {
    width: 20px;
}

.circle-icon h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

#primary-text {
    font-size: 14px;
    font-weight: 400;
    color: #6a6c78;
    padding-bottom: 20px;
}

.price span {
    font-family: 'Mulish', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f63dc;
}

#price-text {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1f63dc;
}

.benefits {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit img {
    width: 18px;
}

.benefit p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    padding: 12px 32px;
    width: 100%;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    background-color: #CC3333;
    cursor: pointer;

    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s, opacity 0.3s;
}

button:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-info {
    padding: 40px 20px;
    background-color: #272C49;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info img {
    width: 200px;
}

.footer-info p {
    margin: 0px;
    text-align: center;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    color: #FFF;
}

.footer-info a {
    margin: 0px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    color: #188bf6;
    transition: text-decoration 0.3s ease;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Estilo da barra de rolagem */
::-webkit-scrollbar {
    width: 12px;
    /* Largura da scroll bar */
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track {
    background: #FFEBEC;
    /* Cor do fundo da barra */
    border-radius: 10px;
    /* Bordas arredondadas */
}

/* Estilo da "thumb" (parte móvel da barra de rolagem) */
::-webkit-scrollbar-thumb {
    background-color: #FFD6D8;
    /* Cor da parte móvel */
    border-radius: 10px;
    /* Bordas arredondadas */
    border: 2px solid #FFD6D8;
    /* Espaço ao redor da parte móvel */
}

/* Estilo ao passar o mouse sobre a "thumb" */
::-webkit-scrollbar-thumb:hover {
    background-color: #CC3333;
    /* Muda a cor quando o mouse passa por cima */
}

footer {
    padding: 16px;
    background-color: #003366;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.infos-residencia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.infos-residencia h2 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

.infos-residencia p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
}

.more-infos {
    display: flex;
    align-items: flex-start;
    width: 80%;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact h2 {
    font-size: 16px;
    font-weight: 500;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
}

.wpp-button {
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;

    font-size: 16px;
    font-weight: 600;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
}

.wpp-button:hover {
    border: none;
    color: #003366 !important;
    background-color: #F5F5F5 !important;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15), 0 4px 8px rgba(0, 0, 0, 0.5);
}