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;
}

/* 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 */
}

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%;
}

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;
}


.welcome {
    display: flex;
    padding: 16px;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

.welcome img {
    max-width: 400px;
    min-width: 200px;
    width: 100%;
    border-radius: 0px 20px 20px 0px;
}

.welcome .texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-text {
    display: flex;
    flex-direction: column;
}

.welcome-text p {
    font-size: clamp(16px, 3vw, 32px);
    font-weight: 500;
    color: #003366;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.welcome-text span {
    font-size: 38px;
    font-weight: 700;
    color: #CC3333;
    font-family: 'Poppins', sans-serif;
}

.resume-text p {
    font-size: clamp(14px, 3vw, 18px);
    text-align: center;
    font-weight: 400;
    color: #003366;
    font-family: 'Inter', sans-serif;
}

.request-button {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.request-button a {
    padding: 12px 32px;
    width: fit-content;
    text-decoration: none;
    border-radius: 20px;
    background-color: #CC3333;
    cursor: pointer;

    font-size: clamp(14px, 3vw, 16px);
    text-align: center;
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s, opacity 0.3s;
}

.request-button a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.introduction {
    display: flex;
    flex-direction: column;
}

.introduction .container {
    width: fit-content;
    background-color: #CC3333;
    padding: 16px 32px;
}

.left {
    border-radius: 0px 30px 30px 0px;
    margin-right: 16px;
}

.left p {
    font-size: 22px;
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

.introduction .row {
    display: flex;
    justify-content: flex-end;
}

.right {
    margin-left: 16px;
    margin-top: 10px;
    border-radius: 30px 0px 0px 30px;
}

.right p {
    font-size: 18px;
    font-weight: 500;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

.benefits {
    display: flex;
    flex-direction: column;
    margin: 16px;
    padding: 32px 16px;
    background-color: #F5F5F5;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(184, 197, 210, 0.4),
        0px 2px 4px rgba(0, 0, 0, 0.1);

}

.benefits h1 {
    font-size: 26px;
    font-weight: 700;
    color: #003366;
    font-family: 'Poppins', sans-serif;
}

.benefits p {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
    font-family: 'Inter', sans-serif;
}

.texts {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    display: flex;
    gap: 10px;
    align-items: center;
}

.number {
    min-width: 60px;
    max-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003366;
    border-radius: 50%;
}

.number p {
    font-size: 26px;
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

.info-benefit {
    display: flex;
    flex-direction: column;
}

#title-benefit {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
    font-family: 'Inter', sans-serif;
}

#description-benefit {
    font-size: 14px;
    font-weight: 400;
    color: #7B94AE;
    font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 760px) {
    header .row {
        flex-direction: column;
        gap: 8px;
    }

    .request-button a {
        padding: 12px 16px;
    }

    .benefits .texts {
        gap: 20px !important;
    }

    .benefit {
        border: 1px solid #003366;
        border-radius: 8px;
        padding: 16px;
        align-items: flex-start;
    }

    .process-info {
        align-items: center;
        padding: 0px !important;
    }

    .process .container {
        padding: 12px 16px !important;
    }

    #text-details {
        text-align: center;
    }

    .steps {
        padding-left: 0px !important;
        margin-right: 0px !important;
    }

    .more-infos {
        padding-top: 20px;
        flex-direction: column;
        align-items: center !important;
        width: 100% !important;
    }

    .contact {
        align-items: center;
    }
}

@media screen and (max-width: 1090px) {
    .process {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .process .left {
        border-radius: 20px 20px 0px 0px !important;
        margin: 0px !important;
    }

    .process .container {
        background-color: #003366 !important;
    }

    #text-details {
        color: #003366 !important;
    }

    .step h3 {
        background-color: #CC3333 !important;
    }

    .process h1 {
        text-align: center;
    }
}

@media screen and (max-width: 955px) {
    .welcome {
        flex-direction: column;
    }

    .welcome img {
        margin-top: 10px;
        border-radius: 20px 20px 0px 0px;
    }
}

.process {
    margin-top: 32px;
    ;
    display: flex;
    padding: 16px;
    justify-content: center;
}

.process img {
    max-width: 600px;
    width: 100%;
    min-width: 200px;
}

.process-info {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.process-info .container {
    width: fit-content;
    background-color: #CC3333;
    padding: 16px 32px;
}

.left {
    border-radius: 0px 40px 40px 0px;
    margin-right: 16px;
}

.container h1 {
    font-size: clamp(16px, 3vw, 26px);
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

#text-details {
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 500;
    color: #CC3333;
    font-family: 'Poppins', sans-serif;
}

.steps {
    padding-top: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 16px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step h3 {
    font-size: 14px;
    font-weight: 700;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    background-color: #003366;
    border-radius: 0px 20px 20px 0px;
    padding: 5px 10px;
}

.step p {
    font-size: 14px;
    font-weight: 400;
    color: #7B94AE;
    font-family: 'Inter', sans-serif;
}

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);
}