/*
====================================================
RESET
====================================================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f7faff;
    color: #1E293B;

    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;
}


/*
====================================================
NAVBAR
====================================================
*/

.navbar {
    width: 100%;
    padding: 40px 10px 0;
    background: transparent;
}

.navbar-container {
    width: 90%;
    max-width: 1600px;
    height: 110px;

    margin: 0 auto;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0, 50, 120, 0.12);
}


/*
====================================================
LOGO
====================================================
*/

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 175px;
    height: auto;
    display: block;
}


/*
====================================================
MENU
====================================================
*/

.menu {
    display: flex;
    align-items: center;
    gap: 80px;
}

.menu a {
    position: relative;

    color: #0b2d63;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 570;

    transition: 0.2s ease;
}

.menu a:hover {
    color: #0057b8;
}


/*
====================================================
BOTÃO WHATSAPP NAVBAR
====================================================
*/

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    height: 48px;

    padding: 0 20px;

    border-radius: 12px;

    background: #0057b8;
    color: #ffffff;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;

    transition: 0.2s ease;
}

.btn-whatsapp:hover {
    background: #003D82;
    transform: translateY(-1px);
}

.btn-whatsapp img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
}


/*
====================================================
HERO
====================================================
*/

.page-background {
    width: 100%;
    min-height: 850px;

    background-image: url("../imagens/bannerherov2.png");
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 1600px;

    margin: 100px auto 0;
    padding: 0 48px;
}

.hero-title {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: 80px;
    line-height: 78px;

    color: #003D82;
}

.hero-descr {
    margin-top: 10px;

    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 28px;

    letter-spacing: 0.5px;

    color: #475569;
}


/*
====================================================
BOTÕES HERO
====================================================
*/

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 37px;

    margin-top: 62px;

    position: relative;
    z-index: 10;
}

.hero-btn,
.hero-link {
    width: 320px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 12px;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;

    transition: 0.25s ease;
}

.hero-btn {
    gap: 0;

    background: #0057B8;
    color: #ffffff;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-btn img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    pointer-events: none;
}

.hero-btn:hover {
    background: #003D82;
    transform: translateY(-2px);
}

.hero-link {
    border: 1px solid #0057B8;

    background: #ffffff;
    color: #0057B8;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);

    font-family: "Poppins", sans-serif;
}

.hero-link:hover {
    background: #E8F2FF;
    border-color: #003D82;
    color: #003D82;

    transform: translateY(-2px);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.frete-gratis {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 24px;
    padding: 10px 20px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;

    color: #003D82;
}


/*
====================================================
CATEGORIAS
====================================================
*/

.categories {
    width: 100%;

    padding: 55px 40px 30px;

    background: #f7faff;
}

.categories-header {
    text-align: center;
    margin-bottom: 35px;
}

.categories-header h2 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 700;

    color: #003D82;
}

.categories-header p {
    margin-top: 2px;

    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 400;

    color: #64748B;
}

.categories-list {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.category-card {
    width: 205px;
    height: 175px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 50, 120, 0.08);

    transition: all 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 8px 20px rgba(0, 50, 120, 0.15);
}

.category-card img {
    width: 70px;
    height: 70px;

    object-fit: contain;

    margin-bottom: 15px;
}

.category-card span {
    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 500;

    color: #1E293B;

    text-align: center;
}


/*
====================================================
WHY SHALLOM
====================================================
*/

.why-shallom {
    width: 100%;

    padding: 55px 40px 40px;

    background: #f7faff;
}

.features-box {
    width: 100%;
    max-width: 1600px;

    height: 420px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background: #0057B8;
}

.features-text {
    position: absolute;

    top: 130px;
    left: 0;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 0 25px;

    z-index: 3;
}

.features-text h2 {
    margin: 0 0 20px;

    font-family: "Poppins", sans-serif;

    font-size: 42px;
    line-height: 46px;
    font-weight: 700;

    color: #ffffff;
}

.features-text p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    line-height: 24px;
    font-weight: 300;

    word-spacing: 1px;

    color: #ffffff;
}

.features-image {
    position: absolute;

    width: 280px;
    height: auto;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    z-index: 2;

    object-fit: contain;
}


/*
====================================================
PROCESS
====================================================
*/

.process {
    width: 100%;

    padding: 55px 40px 30px;

    background: #f7faff;
}

.process-header {
    text-align: center;
    margin-bottom: 25px;
}

.process-header h2 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 700;

    color: #003D82;
}

.process-header p {
    margin-top: 2px;

    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 400;

    color: #64748B;
}

.process-steps {
    width: 100%;
    max-width: 1630px;

    margin: 50px auto 0;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 40px;
}

.step-number {
    width: 56px;
    height: 56px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0057B8;
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.process-step h3 {
    margin-top: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 26px;
    line-height: 20px;
    font-weight: 700;

    color: #000000;

    text-align: center;
}

.process-step p {
    margin-top: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    line-height: 17px;
    font-weight: 400;

    color: #000000;

    text-align: center;
}

.process-arrow {
    width: 70px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Inter", sans-serif;

    font-size: 42px;
    font-weight: 400;

    color: #0057B8;
}


/*
====================================================
CTA
====================================================
*/

.cta {
    width: 100%;

    padding: 55px 40px 40px;

    background: #f7faff;
}

.cta-box {
    width: 100%;
    max-width: 1600px;

    height: 360px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    border-radius: 30px;
}

.cta-box > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.cta-text {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    color: #ffffff;
}

.cta-text h2 {
    position: absolute;

    left: 55px;
    top: 30%;

    transform: translateY(-40%);

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 48px;
    line-height: 45px;
    font-weight: 700;

    color: #ffffff;
}

.cta-text p {
    position: absolute;

    left: 55px;
    top: 62%;

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    line-height: 20px;
    font-weight: 300;

    word-spacing: 5px;

    color: #ffffff;
}

.cta-contato {
    position: absolute;

    right: 100px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 32px;
}

.btn-falarwpp {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 300px;
    height: 56px;

    padding: 0 24px;

    border-radius: 12px;

    background: #ffffff;
    color: #0057B8;

    text-decoration: none;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;

    transition: 0.2s ease;
}

.btn-falarwpp:hover {
    background: #003D82;
    color: #ffffff;

    transform: translateY(-2px);
}

.cta-ou {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-ou-texto,
.cta-atraves {
    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: #ffffff;
}

.cta-email {
    font-family: "Poppins", sans-serif;

    font-size: 24px;
    font-weight: 600;

    color: #ffffff;

    text-decoration: none;

    text-align: center;
}

.cta-email:hover {
    text-decoration: underline;
}


/*
====================================================
FOOTER
====================================================
*/

.footer {
    width: 100%;

    background: #003D82;

    padding: 60px 60px 0;
}

.footer-container {
    width: 100%;
    max-width: 1630px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-box {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 36px;

    margin-bottom: 20px;

    background: #ffffff;

    border-radius: 20px;
}

.footer-logo {
    width: 190px;
    height: auto;
}

.footer-brand p {
    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

    color: #E8F2FF;
}

.footer-col h3 {
    font-family: "Poppins", sans-serif;

    font-size: 18px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: flex;
    align-items: center;

    gap: 10px;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 400;

    color: #C7DBF5;

    text-decoration: none;

    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-icon {
    width: 16px;
    height: 16px;

    object-fit: contain;
}

.footer-col p {
    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    color: #C7DBF5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);

    padding: 20px 0;

    text-align: center;
}

.footer-bottom p {
    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 400;

    color: #C7DBF5;
}


/*
====================================================
SOBRE NÓS - HERO
====================================================
*/

.sobre-hero {
    width: 100%;

    padding: 140px 40px 60px;

    background: #003D82;

    text-align: center;
}

.sobre-hero h1 {
    font-family: "Poppins", sans-serif;

    font-size: 56px;
    font-weight: 700;

    color: #ffffff;
}

.sobre-hero p {
    margin-top: 12px;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 300;

    color: #E8F2FF;
}


/*
====================================================
SOBRE NÓS - HISTÓRIA
====================================================
*/

.sobre-historia {
    width: 100%;

    padding: 70px 40px;

    background: #f7faff;
}

.sobre-historia-container {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 60px;
}

.sobre-historia-texto {
    flex: 1;
}

.sobre-historia-texto h2 {
    font-family: "Poppins", sans-serif;

    font-size: 36px;
    font-weight: 700;

    color: #003D82;

    margin-bottom: 20px;
}

.sobre-historia-texto p {
    font-family: "Poppins", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 26px;

    color: #475569;

    margin-bottom: 16px;
}

.sobre-historia-img {
    flex: 1;

    width: 100%;
    max-width: 500px;

    height: 350px;

    object-fit: cover;

    border-radius: 20px;
}


/*
====================================================
MISSÃO, VISÃO E VALORES
====================================================
*/

.mvv {
    width: 100%;

    padding: 70px 40px;

    background: #f7faff;
}

.mvv-header {
    text-align: center;

    margin-bottom: 40px;
}

.mvv-header h2 {
    font-family: "Poppins", sans-serif;

    font-size: 40px;
    font-weight: 700;

    color: #003D82;
}

.mvv-header p {
    margin-top: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    color: #64748B;
}

.mvv-list {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    justify-content: center;

    gap: 30px;
}

.mvv-card {
    flex: 1;

    max-width: 380px;

    padding: 40px 28px;

    background: #003D82;

    border-radius: 20px;

    text-align: center;
}

.mvv-card h3 {
    font-family: "Poppins", sans-serif;

    font-size: 24px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 14px;
}

.mvv-card p {
    font-family: "Inter", sans-serif;

    font-size: 15px;
    line-height: 24px;

    color: #E8F2FF;
}


/*
====================================================
CONTATO - HERO
====================================================
*/

.contato-hero {
    width: 100%;

    padding: 140px 40px 60px;

    background: #003D82;

    text-align: center;
}

.contato-hero h1 {
    font-family: "Poppins", sans-serif;

    font-size: 56px;
    font-weight: 700;

    color: #ffffff;
}

.contato-hero p {
    margin-top: 12px;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 300;

    color: #E8F2FF;
}


/*
====================================================
CONTATO - INFORMAÇÕES
====================================================
*/

.contato-info {
    width: 100%;

    padding: 70px 40px;

    background: #f7faff;
}

.contato-info-list {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 24px;
}

.contato-card {
    width: 100%;
    min-height: 120px;

    padding: 24px 30px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 5px 15px rgba(0, 50, 120, 0.08);

    display: flex;
    align-items: center;

    gap: 20px;

    text-align: left;
}

.contato-icon {
    width: 44px;
    height: 44px;

    padding: 12px;

    object-fit: contain;

    background: #0057B8;

    border-radius: 50%;

    flex-shrink: 0;
}

.contato-card h3 {
    width: 140px;
    flex-shrink: 0;

    font-family: "Poppins", sans-serif;

    font-size: 18px;
    font-weight: 700;

    color: #003D82;

    margin: 0;
}

.contato-conteudo {
    display: flex;
    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.contato-conteudo p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    line-height: 20px;

    color: #64748B;

    white-space: nowrap;
}

/*
====================================================
CONTATO - WHATSAPP
====================================================
*/

.contato-wpp {
    width: 100%;

    padding: 20px 40px 80px;

    background: #f7faff;
}

.contato-wpp-box {
    max-width: 700px;

    margin: 0 auto;

    padding: 50px 40px;

    background: #003D82;

    border-radius: 24px;

    text-align: center;
}

.contato-wpp-box h2 {
    font-family: "Poppins", sans-serif;

    font-size: 32px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 12px;
}

.contato-wpp-box p {
    font-family: "Inter", sans-serif;

    font-size: 16px;

    color: #E8F2FF;

    margin-bottom: 28px;
}

.btn-contato-wpp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 260px;
    height: 56px;

    padding: 0 28px;

    border-radius: 12px;

    background: #ffffff;
    color: #0057B8;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 17px;
    font-weight: 600;

    transition: 0.2s ease;
}

.btn-contato-wpp:hover {
    background: #E8F2FF;

    transform: translateY(-2px);
}


/*
====================================================
PRODUTOS - EM CONSTRUÇÃO
====================================================
*/

.em-construcao {
    width: 100%;

    min-height: 70vh;

    padding: 140px 40px 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7faff;
}

.em-construcao-box {
    max-width: 600px;

    text-align: center;
}

.em-construcao-logo {
    width: 140px;
    height: auto;

    margin-bottom: 30px;
}

.em-construcao-box h1 {
    font-family: "Poppins", sans-serif;

    font-size: 40px;
    font-weight: 700;

    color: #003D82;

    margin-bottom: 16px;
}

.em-construcao-box p {
    font-family: "Inter", sans-serif;

    font-size: 16px;
    line-height: 24px;

    color: #64748B;

    margin-bottom: 30px;
}

.btn-voltar {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 52px;

    padding: 0 24px;

    border-radius: 12px;

    background: #0057B8;
    color: #ffffff;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    font-weight: 600;

    transition: 0.2s ease;
}

.btn-voltar:hover {
    background: #003D82;

    transform: translateY(-2px);
}


/*
====================================================
NOTEBOOK
769px - 1269px
====================================================
*/

@media (min-width: 769px) and (max-width: 1269px) {

    /*
    NAVBAR
    */

    .navbar {
        padding-top: 25px;
    }

    .navbar-container {
        width: 95%;
        height: 90px;

        padding: 0 18px;
    }

    .logo img {
        width: 140px;
    }

    .menu {
        gap: 30px;
    }

    .menu a {
        font-size: 11px;
    }

    .btn-whatsapp {
        min-width: 170px;

        height: 44px;

        padding: 0 12px;

        font-size: 14px;
    }

    .btn-whatsapp img {
        width: 34px;
        height: 34px;
    }


    /*
    HERO
    */

    .page-background {
        min-height: 700px;

        background-position: 60% center;
    }

    .hero-content {
        margin-top: 65px;

        padding: 0 40px;
    }

    .hero-title {
        font-size: 56px;
        line-height: 58px;
    }

    .hero-descr {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-buttons {
        gap: 20px;

        margin-top: 45px;
    }

    .hero-btn,
    .hero-link {
        width: 270px;
        height: 52px;

        font-size: 16px;
    }


    /*
    CATEGORIAS
    */

    .categories {
        padding: 45px 25px 30px;
    }

    .categories-header h2 {
        font-size: 38px;
    }

    .categories-header p {
        font-size: 19px;
    }

    .categories-list {
        gap: 25px;
    }

    .category-card {
        width: 140px;
        height: 125px;
    }

    .category-card img {
        width: 55px;
        height: 55px;

        margin-bottom: 8px;
    }

    .category-card span {
        font-size: 17px;
    }


    /*
    WHY SHALLOM
    */

    .why-shallom {
        padding: 45px 30px 35px;
    }

    .features-box {
        height: 390px;
    }

    .features-text {
        top: 120px;
    }

    .features-text h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .features-text p {
        font-size: 17px;
        line-height: 22px;
    }

    .features-image {
        width: 260px;
        bottom: 15px;
    }


    /*
    PROCESS
    */

    .process {
        padding: 45px 25px 30px;
    }

    .process-header h2 {
        font-size: 35px;
    }

    .process-header p {
        font-size: 17px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .process-step p {
        font-size: 12px;
        line-height: 18px;
    }

    .process-arrow {
        width: 40px;

        font-size: 32px;
    }


    /*
    CTA
    */

    .cta {
        padding: 45px 30px 35px;
    }

    .cta-box {
        height: 440px;
    }

    .cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-text h2 {
        position: static;
        transform: none;

        font-size: 38px;
        line-height: 46px;

        margin: 0 0 20px;
    }

    .cta-text p {
        position: static;

        font-size: 12px;
        line-height: 24px;

        margin: 0 0 30px;
    }

    .cta-contato {
        position: static;
        transform: none;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 20px;
    }

    .btn-falarwpp {
        min-width: 250px;
    }

    .cta-atraves {
        font-size: 9px;
    }

    .cta-ou-texto {
        font-size: 9px;
    }

    .cta-email {
        font-size: 16px;
    }


    /*
    FOOTER
    */

    .footer {
        padding: 45px 30px 0;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-brand {
        max-width: 250px;
    }

    .footer-logo {
        width: 160px;
    }
}


/*
====================================================
TABLET
481px - 768px
====================================================
*/

@media (min-width: 481px) and (max-width: 768px) {

    /*
    NAVBAR
    */

    .navbar {
        padding: 20px 0 0;
    }

    .navbar-container {
        width: calc(100% - 30px);
        height: 75px;

        padding: 0 16px;

        border-radius: 16px;
    }

    .logo img {
        width: 115px;
    }

    .menu {
        display: none;

        position: absolute;

        top: 100px;
        left: 15px;
        right: 15px;

        width: auto;

        padding: 20px;

        flex-direction: column;
        align-items: center;

        gap: 20px;

        background: #ffffff;

        border-radius: 16px;

        box-shadow: 0 8px 25px rgba(0, 50, 120, 0.12);

        z-index: 9999;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;

        border: none;
        border-radius: 10px;

        background: #0057B8;
        color: #ffffff;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;
        order: 2;
    }

    .btn-whatsapp {
        width: 145px;
        min-width: 145px;

        height: 44px;

        padding: 0;

        border-radius: 10px;

        font-size: 13px;
        order: 3;
    }

    .btn-whatsapp img {
        display: none;
    }


    /*
    HERO
    */

    .page-background {
        min-height: 650px;

        background-position: 65% center;
    }

    .hero-content {
        margin-top: 50px;

        padding: 0 30px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 46px;
    }

    .hero-descr {
        font-size: 17px;
        line-height: 23px;
    }

    .hero-descr br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        margin-top: 40px;
    }

    .hero-btn,
    .hero-link {
        width: 300px;
        height: 52px;

        font-size: 16px;
    }

    .hero-image {
        display: none;
    }


    /*
    CATEGORIAS
    */

    .categories {
        padding: 40px 25px 30px;
    }

    .categories-header {
        margin-bottom: 25px;
    }

    .categories-header h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .categories-header p {
        font-size: 17px;
    }

    .categories-list {
        gap: 15px;
    }

    .category-card {
        width: calc(33.333% - 15px);
        min-width: 135px;
        max-width: 180px;

        height: 130px;
    }

    .category-card img {
        width: 55px;
        height: 55px;

        margin-bottom: 8px;
    }

    .category-card span {
        font-size: 16px;
    }


    /*
    WHY SHALLOM
    */

    .why-shallom {
        padding: 40px 25px 30px;
    }

    .features-box {
        width: 100%;
        height: 400px;

        border-radius: 24px;
    }

    .features-text {
        top: 130px;

        padding: 0 30px;
    }

    .features-text h2 {
        font-size: 36px;
        line-height: 40px;

        margin-bottom: 18px;
    }

    .features-text p {
        font-size: 16px;
        line-height: 21px;
    }

    .features-image {
        width: 230px;

        bottom: 15px;
    }


    /*
    PROCESS
    */

    .process {
        padding: 40px 25px 30px;
    }

    .process-header h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .process-header p {
        font-size: 15px;
    }

    .process-steps {
        flex-direction: column;

        align-items: center;

        gap: 20px;

        margin-top: 35px;
    }

    .process-step h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .process-step p {
        font-size: 13px;
        line-height: 19px;
    }

    .process-arrow {
        width: 50px;
        height: 45px;

        font-size: 34px;

        transform: rotate(90deg);
    }


    /*
    CTA
    */

    .cta {
        padding: 40px 25px 30px;
    }

    .cta-box {
        width: 100%;
        height: 440px;
        min-height: 0;

        position: relative;
        overflow: hidden;

        border-radius: 24px;
    }

    .cta-box > img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .cta-text {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        padding: 45px 30px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .cta-text h2 {
        position: static;

        transform: none;

        font-size: 26px;
        line-height: 36px;

        text-align: center;
    }

    .cta-text p {
        position: static;

        margin-top: 15px;

        font-size: 13px;
        line-height: 21px;

        text-align: center;
    }

    .cta-contato {
        position: static;

        transform: none;

        margin-top: 30px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 18px;
    }

    .btn-falarwpp {
        min-width: 250px;
        width: 250px;
        height: 52px;

        font-size: 15px;
    }

    .cta-ou {
        gap: 2px;
    }

    .cta-ou-texto {
        font-size: 11px;
    }

    .cta-atraves {
        font-size: 11px;
    }

    .cta-email {
        font-size: 16px;
        word-break: break-word;
    }


    /*
    FOOTER
    */

    .footer {
        padding: 45px 25px 0;
    }

    .footer-container {
        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-box {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col a,
    .footer-col span {
        justify-content: center;
    }
}


/*
====================================================
CELULAR
0px - 480px
====================================================
*/

@media (max-width: 480px) {

    /*
    NAVBAR
    */

    .navbar {
        padding: 20px 0 0;
    }

    .navbar-container {
        width: calc(100% - 30px);

        height: 70px;

        padding: 0 12px;

        border-radius: 16px;
    }

    .logo img {
        width: 100px;

    }

    .menu {
        display: none;

        position: absolute;

        top: 100px;
        left: 15px;
        right: 15px;

        width: auto;

        padding: 20px;

        flex-direction: column;
        align-items: center;

        gap: 20px;

        background: #ffffff;

        border-radius: 16px;

        box-shadow: 0 8px 25px rgba(0, 50, 120, 0.12);

        z-index: 9999;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        font-size: 15px;
    }

    .menu-toggle {
        display: flex;

        width: 40px;
        height: 40px;

        align-items: center;
        justify-content: center;

        border: none;
        border-radius: 10px;

        background: #0057B8;
        color: #ffffff;

        font-size: 24px;

        cursor: pointer;
        order: 2;
        
    }

    .btn-whatsapp {
        width: 105px;
        min-width: 105px;

        height: 40px;

        padding: 0;

        border-radius: 10px;

        font-size: 10px;
        order: 3;
    }

    .btn-whatsapp img {
        display: none;
    }


    /*
    HERO
    */

    .page-background {
        min-height: 610px;

        background-size: cover;

        background-position: 80% top;
    }

    .hero-content {
        margin-top: 40px;

        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-descr {
        margin-top: 12px;

        font-size: 16px;
        line-height: 22px;
    }

    .hero-descr br {
        display: none;
    }

    .hero-buttons {
        width: 60%;

        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-top: 200px;
    }

    .hero-btn,
    .hero-link {
        width: 100%;
        max-width: 340px;

        height: 52px;

        padding: 0 16px;

        font-size: 15px;
    }

    .hero-btn img {
        width: 48px;
        height: 48px;
    }

    .hero-image {
        display: none;
    }


    /*
    CATEGORIAS
    */

    .categories {
        padding: 35px 15px 25px;
    }

    .categories-header {
        margin-bottom: 25px;
    }

    .categories-header h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .categories-header p {
        font-size: 16px;
        line-height: 21px;
    }

    .categories-list {
        gap: 12px;
    }

    .category-card {
        width: calc(50% - 6px);

        height: 120px;
    }

    .category-card img {
        width: 50px;
        height: 50px;

        margin-bottom: 8px;
    }

    .category-card span {
        font-size: 15px;
    }


    /*
    WHY SHALLOM
    */

    .why-shallom {
        padding: 30px 15px 25px;
    }

    .features-box {
        width: 100%;

        height: 350px;

        border-radius: 20px;
    }

    .features-text {
        top: 100px;

        padding: 0 20px;
    }

    .features-text h2 {
        font-size: 25px;
        line-height: 34px;

        margin-bottom: 18px;
    }

    .features-text p {
        font-size: 15px;
        line-height: 20px;
    }

    .features-image {
        width: 200px;

        bottom: 15px;
    }


    /*
    PROCESS
    */

    .process {
        padding: 35px 15px 25px;
    }

    .process-header {
        margin-bottom: 20px;
    }

    .process-header h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .process-header p {
        font-size: 16px;
    }

    .process-steps {
        flex-direction: column;

        align-items: center;

        gap: 20px;

        margin-top: 30px;
    }

    .process-step {
        width: 100%;
    }

    .process-step h3 {
        font-size: 21px;
        line-height: 25px;
    }

    .process-step p {
        font-size: 15px;
        line-height: 19px;
    }

    .process-arrow {
        width: 45px;
        height: 40px;

        font-size: 32px;

        transform: rotate(90deg);
    }


    /*
    CTA
    */

    .cta {
        padding: 30px 15px 25px;
    }

    .cta-box {
        width: 100%;
        height: 420px;
        min-height: 0;

        position: relative;
        overflow: hidden;

        border-radius: 20px;
    }

    .cta-box > img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .cta-text {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        padding: 35px 20px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .cta-text h2 {
        position: static;

        transform: none;

        margin: 0;

        font-size: 24px;
        line-height: 32px;

        text-align: center;
    }

    .cta-text p {
        position: static;

        margin: 15px 0 0;

        font-size: 10px;
        line-height: 20px;

        text-align: center;
    }

    .cta-contato {
        position: static;

        transform: none;

        margin-top: 28px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 16px;

        width: 100%;
    }

    .btn-falarwpp {
        width: 230px;
        min-width: 0;
        height: 50px;

        padding: 0 15px;

        font-size: 14px;
    }

    .cta-ou {
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 1px;
    }

    .cta-ou-texto {
        font-size: 10px;
    }

    .cta-atraves {
        font-size: 10px;
    }

    .cta-email {
        max-width: 100%;

        font-size: 14px;
        line-height: 18px;

        word-break: break-word;
        text-align: center;
    }


    /*
    FOOTER
    */

    .footer {
        padding: 40px 20px 0;
    }

    .footer-container {
        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-box {
        margin-left: auto;
        margin-right: auto;

        padding: 10px 25px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-col a,
    .footer-col span {
        justify-content: center;

        text-align: center;
    }

    .footer-col p {
        text-align: center;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p {
        font-size: 11px;

        line-height: 16px;
    }
}


/*
====================================================
SOBRE NÓS - NOTEBOOK
769px - 1000px
====================================================
*/

@media (min-width: 769px) and (max-width: 1000px) {

    /*
    SOBRE NÓS - HERO
    */

    .sobre-hero {
        padding: 100px 30px 50px;
    }

    .sobre-hero h1 {
        font-size: 42px;
        line-height: 54px;
    }

    .sobre-hero p {
        font-size: 18px;
        line-height: 26px;
    }


    /*
    HISTÓRIA
    */

    .sobre-historia {
        padding: 55px 30px;
    }

    .sobre-historia-container {
        gap: 35px;
        max-width: 900px;
    }

    .sobre-historia-texto h2 {
        font-size: 20px;
        line-height: 38px;

        margin-bottom: 15px;
    }

    .sobre-historia-texto p {
        font-size: 12px;
        line-height: 22px;
    }

    .sobre-historia-img {
        max-width: 420px;
        height: 300px;
    }


    /*
    MISSÃO, VISÃO E VALORES
    */

    .mvv {
        padding: 55px 30px;
    }

    .mvv-header {
        margin-bottom: 30px;
    }

    .mvv-header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .mvv-header p {
        font-size: 16px;
    }

    .mvv-list {
        gap: 18px;
        max-width: 900px;
    }

    .mvv-card {
        padding: 30px 20px;
    }

    .mvv-card h3 {
        font-size: 21px;
    }

    .mvv-card p {
        font-size: 14px;
        line-height: 21px;
    }

}

/*
====================================================
SOBRE NÓS - TABLET
481px - 768px
====================================================
*/

@media (min-width: 481px) and (max-width: 768px) {

    .menu-toggle {
        display: flex;

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;

        border: none;
        border-radius: 10px;

        background: #0057B8;
        color: #ffffff;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;
    }

    /*
    SOBRE NÓS - HERO
    */

    .sobre-hero {
        padding: 80px 25px 45px;
    }

    .sobre-hero h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .sobre-hero p {
        font-size: 17px;
        line-height: 24px;
    }


    /*
    HISTÓRIA
    */

    .sobre-historia {
        padding: 50px 25px;
    }

    .sobre-historia-container {
        flex-direction: column;

        gap: 35px;

        text-align: center;
    }

    .sobre-historia-texto {
        width: 100%;
    }

    .sobre-historia-texto h2 {
        font-size: 30px;
        line-height: 38px;

        margin-bottom: 15px;
    }

    .sobre-historia-texto p {
        font-size: 15px;
        line-height: 24px;
    }

    .sobre-historia-img {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }


    /*
    MISSÃO, VISÃO E VALORES
    */

    .mvv {
        padding: 50px 25px;
    }

    .mvv-header {
        margin-bottom: 30px;
    }

    .mvv-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .mvv-header p {
        font-size: 16px;
        line-height: 22px;
    }

    .mvv-list {
        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .mvv-card {
        width: 100%;
        max-width: 500px;

        padding: 30px 25px;
    }

    .mvv-card h3 {
        font-size: 22px;
    }

    .mvv-card p {
        font-size: 15px;
        line-height: 23px;
    }

}

/*
====================================================
SOBRE NÓS - CELULAR
0px - 480px
====================================================
*/

@media (max-width: 480px) {

    .menu-toggle {
        display: flex;

        width: 40px;
        height: 40px;

        align-items: center;
        justify-content: center;

        border: none;
        border-radius: 10px;

        background: #0057B8;
        color: #ffffff;

        font-size: 24px;

        cursor: pointer;
}

    /*
    SOBRE NÓS - HERO
    */

    .sobre-hero {
        padding: 65px 20px 40px;
    }

    .sobre-hero h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .sobre-hero p {
        margin-top: 10px;

        font-size: 15px;
        line-height: 22px;
    }


    /*
    HISTÓRIA
    */

    .sobre-historia {
        padding: 40px 20px;
    }

    .sobre-historia-container {
        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .sobre-historia-texto {
        width: 100%;
    }

    .sobre-historia-texto h2 {
        font-size: 27px;
        line-height: 34px;

        margin-bottom: 15px;
    }

    .sobre-historia-texto p {
        font-size: 14px;
        line-height: 22px;

        margin-bottom: 14px;
    }

    .sobre-historia-img {
        width: 100%;
        max-width: 100%;

        height: 240px;

        border-radius: 16px;
    }


    /*
    MISSÃO, VISÃO E VALORES
    */

    .mvv {
        padding: 40px 20px;
    }

    .mvv-header {
        margin-bottom: 25px;
    }

    .mvv-header h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .mvv-header p {
        font-size: 15px;
        line-height: 21px;
    }

    .mvv-list {
        flex-direction: column;

        align-items: center;

        gap: 16px;
    }

    .mvv-card {
        width: 100%;
        max-width: none;

        padding: 28px 20px;

        border-radius: 16px;
    }

    .mvv-card h3 {
        font-size: 21px;
        line-height: 27px;

        margin-bottom: 12px;
    }

    .mvv-card p {
        font-size: 14px;
        line-height: 22px;
    }

}

    /*
    ====================================================
    CONTATO - HERO - TABLET
    ====================================================
    */
@media (min-width: 481px) and (max-width: 768px) {
    .contato-hero {
        width: 100%;

        padding: 140px 40px 60px;

        background: #003D82;

        text-align: center;
    }

    .contato-hero h1 {
        font-family: "Poppins", sans-serif;

        font-size: 56px;
        font-weight: 700;

        color: #ffffff;
    }

    .contato-hero p {
        margin-top: 12px;

        font-family: "Poppins", sans-serif;

        font-size: 20px;
        font-weight: 300;

        color: #E8F2FF;
    }


/*
====================================================
CONTATO - INFORMAÇÕES
====================================================
*/

    .contato-info {
        width: 100%;
        padding: 70px 40px;
        background: #f7faff;
    }

    .contato-info-list {
        width: 100%;
        max-width: 1040px;

        margin: 0 auto;

        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;

        gap: 24px;
    }


    .contato-icon {
        width: 40px;
        height: 40px;

        object-fit: contain;

        padding: 10px;

        background: #0057B8;
        border-radius: 50%;

        flex-shrink: 0;
    }

    .contato-card h3 {
        font-family: "Poppins", sans-serif;

        font-size: 15px;
        font-weight: 700;

        color: #003D82;

        margin: 0 0 6px 0;
    }

    .contato-card p {
        font-family: "Inter", sans-serif;

        font-size: 10px;
        line-height: 18px;

        color: #64748B;

        margin: 0;
    }

    /*
    ====================================================
    CONTATO - WHATSAPP
    ====================================================
    */

    .contato-wpp {
        width: 100%;

        padding: 20px 40px 80px;

        background: #f7faff;
    }

    .contato-wpp-box {
        max-width: 700px;

        margin: 0 auto;

        padding: 50px 40px;

        background: #003D82;

        border-radius: 24px;

        text-align: center;
    }

    .contato-wpp-box h2 {
        font-family: "Poppins", sans-serif;

        font-size: 32px;
        font-weight: 700;

        color: #ffffff;

        margin-bottom: 12px;
    }

    .contato-wpp-box p {
        font-family: "Inter", sans-serif;

        font-size: 16px;

        color: #E8F2FF;

        margin-bottom: 28px;
    }

    .btn-contato-wpp {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        min-width: 260px;
        height: 56px;

        padding: 0 28px;

        border-radius: 12px;

        background: #ffffff;
        color: #0057B8;

        text-decoration: none;

        font-family: "Inter", sans-serif;

        font-size: 17px;
        font-weight: 600;

        transition: 0.2s ease;
    }

    .btn-contato-wpp:hover {
        background: #E8F2FF;

        transform: translateY(-2px);
    }
}




/* CONTATO NOTEBOOK */


@media (min-width: 769px) and (max-width: 1000px) {
    .contato-hero {
        width: 100%;

        padding: 140px 40px 60px;

        background: #003D82;

        text-align: center;
    }

    .contato-hero h1 {
        font-family: "Poppins", sans-serif;

        font-size: 56px;
        font-weight: 700;

        color: #ffffff;
    }

    .contato-hero p {
        margin-top: 12px;

        font-family: "Poppins", sans-serif;

        font-size: 20px;
        font-weight: 300;

        color: #E8F2FF;
    }


    /*
    ====================================================
    CONTATO - INFORMAÇÕES
    ====================================================
    */

    .contato-info {
        width: 100%;

        padding: 70px 40px;

        background: #f7faff;
    }

    .contato-info-list {
        max-width: 1000px;

        margin: 0 auto;

        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        gap: 24px;
    }


    .contato-icon {
        width: 44px;
        height: 44px;

        object-fit: contain;

        padding: 12px;

        background: #0057B8;

        border-radius: 50%;

        margin-bottom: 16px;
    }

    .contato-card h3 {
        font-family: "Poppins", sans-serif;

        font-size: 20px;
        font-weight: 700;

        color: #003D82;

        margin-bottom: 10px;
    }

    .contato-card p {
        font-family: "Inter", sans-serif;

        font-size: 10px;
        line-height: 24px;

        color: #64748B;
    }


    /*
    ====================================================
    CONTATO - WHATSAPP
    ====================================================
    */

    .contato-wpp {
        width: 100%;

        padding: 20px 40px 80px;

        background: #f7faff;
    }

    .contato-wpp-box {
        max-width: 700px;

        margin: 0 auto;

        padding: 50px 40px;

        background: #003D82;

        border-radius: 24px;

        text-align: center;
    }

    .contato-wpp-box h2 {
        font-family: "Poppins", sans-serif;

        font-size: 32px;
        font-weight: 700;

        color: #ffffff;

        margin-bottom: 12px;
    }

    .contato-wpp-box p {
        font-family: "Inter", sans-serif;

        font-size: 16px;

        color: #E8F2FF;

        margin-bottom: 28px;
    }

    .btn-contato-wpp {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        min-width: 260px;
        height: 56px;

        padding: 0 28px;

        border-radius: 12px;

        background: #ffffff;
        color: #0057B8;

        text-decoration: none;

        font-family: "Inter", sans-serif;

        font-size: 17px;
        font-weight: 600;

        transition: 0.2s ease;
    }

    .btn-contato-wpp:hover {
        background: #E8F2FF;

        transform: translateY(-2px);
    }
}
/* ====================================================
   CONTATO - CELULAR
   ==================================================== */

@media (max-width: 480px) {

    .contato-info {
        padding: 40px 15px;
    }

    .contato-info-list {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .contato-card {
        width: 100%;
        min-width: 0;

        padding: 20px 16px;

        display: flex;
        align-items: center;

        gap: 12px;

        overflow: hidden;
    }

    .contato-icon {
        width: 40px;
        height: 40px;

        padding: 10px;

        flex-shrink: 0;
    }

    .contato-card h3 {
        width: auto;

        flex-shrink: 0;

        font-size: 14px;
    }

    .contato-conteudo {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }

    .contato-conteudo p {
        font-size: 12px;
        line-height: 18px;

        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}


    /*
    ====================================================
    CONTATO - WHATSAPP
    ====================================================
    */

    .contato-wpp {
        width: 100%;

        padding: 20px 40px 80px;

        background: #f7faff;
    }

    .contato-wpp-box {
        max-width: 700px;

        margin: 0 auto;

        padding: 50px 40px;

        background: #003D82;

        border-radius: 24px;

        text-align: center;
    }

    .contato-wpp-box h2 {
        font-family: "Poppins", sans-serif;

        font-size: 32px;
        font-weight: 700;

        color: #ffffff;

        margin-bottom: 12px;
    }

    .contato-wpp-box p {
        font-family: "Inter", sans-serif;

        font-size: 16px;

        color: #E8F2FF;

        margin-bottom: 28px;
    }

    .btn-contato-wpp {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        min-width: 260px;
        height: 56px;

        padding: 0 28px;

        border-radius: 12px;

        background: #ffffff;
        color: #0057B8;

        text-decoration: none;

        font-family: "Inter", sans-serif;

        font-size: 17px;
        font-weight: 600;

        transition: 0.2s ease;
    }

    .btn-contato-wpp:hover {
        background: #E8F2FF;

        transform: translateY(-2px);
    }
}