/* =========================================================
   FACILITE VIVER
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f8f4ed;
    color: #4b3a2f;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   CORES
   ========================================================= */

:root {
    --cream: #f8f4ed;
    --cream-dark: #eee6da;
    --cream-soft: #fbf8f3;

    --brown: #4b3a2f;
    --brown-light: #725e50;

    --green: #173f35;
    --green-light: #315d50;

    --gold: #b99a68;
    --gold-light: #d8c29a;

    --white: #fffdf9;

    --container: 1180px;
}


/* =========================================================
   ESTRUTURA
   ========================================================= */

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   IMAGENS - DESKTOP
   ========================================================= */

.hero-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image img {
    min-height: 600px;
}

.about-image img {
    min-height: 620px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(248, 244, 237, 0.94);
    border-bottom: 1px solid rgba(75, 58, 47, 0.12);

    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--green);
}

.logo-symbol {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold);
    font-size: 17px;
}

.logo-text {
    font-size: 14px;
    letter-spacing: 3px;
}


/* =========================================================
   NAVEGAÇÃO DESKTOP
   ========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 28px;

    font-family: Arial, sans-serif;
    font-size: 14px;
}

.nav a {
    position: relative;

    transition: color 0.25s ease;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.nav a:hover {
    color: var(--green);
}

.nav a:hover::after {
    width: 100%;
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

/* Escondido no computador */
.mobile-menu,
.mobile-menu-button {
    display: none !important;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 28px;

    border: 1px solid transparent;
    border-radius: 2px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.header-button {
    padding: 12px 20px;

    background: var(--green);
    color: var(--white);

    font-family: Arial, sans-serif;
    font-size: 13px;

    border-radius: 2px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-button:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
}

.button-primary:hover {
    background: var(--green-light);
}

.button-secondary {
    border-color: rgba(75, 58, 47, 0.35);
    color: var(--brown);
}

.button-secondary:hover {
    background: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--green);
}

.button-light:hover {
    background: var(--cream);
}


/* =========================================================
   TEXTOS
   ========================================================= */

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold);

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(48px, 6vw, 82px);
}

h2 {
    font-size: clamp(38px, 5vw, 60px);
}

h3 {
    font-size: 26px;
}

p {
    color: var(--brown-light);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.hero-text {
    max-width: 620px;
}

.hero h1 {
    max-width: 650px;

    margin-bottom: 28px;

    color: var(--brown);
}

.hero h1 em {
    color: var(--green);
    font-style: italic;
}

.hero p {
    max-width: 560px;

    margin-bottom: 36px;

    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image {
    min-height: 600px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            #ded2c2,
            #b99a7c
        );

    color: rgba(75, 58, 47, 0.7);

    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}


/* =========================================================
   FRASE
   ========================================================= */

.quote-section {
    padding: 130px 0;

    background: var(--green);
    color: var(--white);

    text-align: center;
}

.quote-content {
    max-width: 850px;
}

.quote-content span {
    display: block;

    margin-bottom: 24px;

    color: var(--gold-light);

    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.quote-content h2 {
    margin-bottom: 28px;

    color: var(--white);
}

.quote-content p {
    color: rgba(255, 253, 249, 0.78);

    font-size: 18px;
}


/* =========================================================
   QUEM SOU EU
   ========================================================= */

.about {
    padding: 140px 0;

    background: var(--cream-soft);
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    min-height: 620px;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 26px;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   LINK DE TEXTO
   ========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;

    margin-top: 12px;
    padding: 12px 0;

    color: var(--green);

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    border-bottom: 1px solid var(--gold);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--green);
}


/* =========================================================
   ATENDIMENTOS
   ========================================================= */

.services {
    padding: 140px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.section-heading h2 {
    margin-bottom: 22px;
}

.section-heading p {
    font-size: 17px;
}


/* =========================================================
   ATENDIMENTO PRINCIPAL
   ========================================================= */

.service-main {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.55fr);

    min-height: 0;

    margin-bottom: 28px;

    overflow: hidden;

    background: var(--cream-dark);
}

.service-main-content {
    padding: 60px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.service-number {
    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}

.service-label {
    display: block;

    margin-bottom: 12px;

    color: var(--brown-light);

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}

.service-main-content h3 {
    max-width: 600px;

    margin-bottom: 22px;

    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
}

.service-main-content p {
    max-width: 680px;

    margin-bottom: 26px;

    font-size: 17px;
}

.service-main-content .button {
    margin-top: 0;
}

.service-main-decoration {
    min-height: 430px;

    display: grid;
    place-items: center;

    padding: 45px 35px;

    background: var(--green);
    color: var(--gold-light);

    text-align: center;

    font-size: 30px;
    line-height: 1.25;
    letter-spacing: 1px;
}

.service-main-decoration em {
    font-size: 0.72em;
    font-weight: 400;
}


/* =========================================================
   CARDS DE ATENDIMENTO
   ========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    margin-top: 2px;
}

.service-card {
    min-height: 320px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    background: var(--cream-soft);

    border: 1px solid rgba(75, 58, 47, 0.14);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    border-color: rgba(185, 154, 104, 0.55);

    box-shadow: 0 15px 35px rgba(75, 58, 47, 0.07);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.service-card-top .service-number {
    margin-bottom: 0;
}

.service-card-top .service-label {
    margin-bottom: 0;

    text-align: right;
}

.service-card h3 {
    margin-bottom: 18px;

    font-size: 30px;
}

.service-card p {
    max-width: 520px;

    margin-bottom: 22px;

    font-size: 16px;
}

.service-pending {
    display: inline-block;

    margin-top: auto;

    color: var(--green);

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* =========================================================
   COMO FUNCIONA
   ========================================================= */

.how-it-works {
    padding: 140px 0;

    background: var(--cream-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(75, 58, 47, 0.2);
}

.step {
    padding: 45px 35px;

    border-right: 1px solid rgba(75, 58, 47, 0.2);
}

.step:last-child {
    border-right: none;
}

.step-number {
    display: block;

    margin-bottom: 30px;

    color: var(--gold);

    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    font-size: 15px;
}


/* =========================================================
   BLOG
   ========================================================= */

.blog {
    padding: 140px 0;

    background: var(--cream-soft);
}

.blog-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;

    max-width: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.blog-card {
    background: var(--white);

    border: 1px solid rgba(75, 58, 47, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(75, 58, 47, 0.08);
}

.blog-image {
    aspect-ratio: 16 / 10;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: #d8cec1;

    color: rgba(75, 58, 47, 0.6);

    font-family: Arial, sans-serif;
    font-size: 12px;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content > span {
    color: var(--gold);

    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
}

.blog-card h3 {
    margin: 14px 0;

    font-size: 26px;
}

.blog-card p {
    margin-bottom: 12px;

    font-size: 15px;
}


/* =========================================================
   LIVROS
   ========================================================= */

.books {
    padding: 140px 0;

    background: var(--cream-soft);
}

.books .section-heading {
    max-width: 850px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: start;
}

.book-card {
    min-width: 0;

    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(75, 58, 47, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(75, 58, 47, 0.09);
}

.book-cover {
    width: 100%;

    aspect-ratio: 2 / 3;

    overflow: hidden;

    background: var(--cream-dark);
}

.book-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.book-content {
    padding: 28px;
}

.book-content h3 {
    margin-bottom: 12px;

    font-size: 27px;
    line-height: 1.2;
}

.book-content p {
    margin-bottom: 8px;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
    padding: 150px 0;

    background: var(--green);

    text-align: center;
}

.final-cta-content {
    max-width: 850px;
}

.final-cta .eyebrow {
    color: var(--gold-light);
}

.final-cta h2 {
    margin-bottom: 25px;

    color: var(--white);
}

.final-cta p {
    margin-bottom: 35px;

    color: rgba(255, 253, 249, 0.8);

    font-size: 18px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 80px 0 30px;

    background: #132f29;

    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 80px;

    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 18px;

    color: rgba(255, 253, 249, 0.65);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;
}

.footer-links h3 {
    margin-bottom: 18px;

    color: var(--gold-light);

    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color: rgba(255, 253, 249, 0.72);

    font-family: Arial, sans-serif;
    font-size: 14px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 253, 249, 0.5);

    font-family: Arial, sans-serif;
    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 16px;
    }

    .header-button {
        display: none;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero {
        min-height: auto;

        padding: 75px 0;
    }

    .hero-image {
        min-height: 500px;
    }

    .about-image {
        min-height: 500px;
    }

    .service-main {
        grid-template-columns: 1fr;
    }

    .service-main-decoration {
        min-height: 250px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .books-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {

    /* =====================================================
       ESTRUTURA
       ===================================================== */

    .container {
        width: min(100% - 32px, var(--container));
    }


    /* =====================================================
       HEADER MOBILE
       ===================================================== */

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content {
        min-height: 70px;

        position: relative;
    }


    /* Esconde navegação desktop */

    .nav {
        display: none !important;
    }


    /* Esconde botão desktop */

    .header-button {
        display: none !important;
    }


    /* =====================================================
       BOTÃO DO MENU
       ===================================================== */

    .mobile-menu-button {
        display: flex !important;

        width: 42px;
        height: 42px;

        padding: 9px;

        border: 1px solid rgba(75, 58, 47, 0.25);

        background: transparent;

        cursor: pointer;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;
    }

    .mobile-menu-button span {
        display: block;

        width: 20px;
        height: 1px;

        background: var(--green);

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* =====================================================
       MENU MOBILE
       ===================================================== */

    .mobile-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex !important;
        flex-direction: column;

        padding: 10px 20px 18px;

        /*
           Fundo totalmente opaco.
           Assim o conteúdo da página não
           aparece por trás do menu.
        */

        background: #f8f4ed;

        border-bottom: 1px solid rgba(75, 58, 47, 0.12);

        box-shadow: 0 15px 30px rgba(75, 58, 47, 0.08);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* Menu aberto */

    .mobile-menu.is-open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* Links */

    .mobile-menu a {
        display: block;

        padding: 14px 5px;

        border-bottom: 1px solid rgba(75, 58, 47, 0.08);

        color: var(--brown);

        font-family: Arial, sans-serif;
        font-size: 14px;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:active {
        color: var(--green);
    }


    /* =====================================================
       ANIMAÇÃO ☰ → X
       ===================================================== */

    .mobile-menu-button.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }


    /* =====================================================
       TEXTOS
       ===================================================== */

    h1 {
        font-size: clamp(42px, 12vw, 52px);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.1;
    }

    h3 {
        font-size: 24px;
    }

    .eyebrow {
        margin-bottom: 16px;

        font-size: 10px;
        letter-spacing: 2.5px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero {
        min-height: auto;

        padding: 60px 0 70px;
    }

    .hero-content {
        gap: 42px;
    }

    .hero-text {
        max-width: none;
    }

    .hero h1 {
        margin-bottom: 24px;
    }

    .hero p {
        max-width: none;

        margin-bottom: 30px;

        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;

        gap: 12px;
    }

    .button {
        width: 100%;
        min-height: 52px;
    }


    /*
       A imagem principal possui texto dentro
       da própria arte.

       Por isso ela não usa "cover" no celular.
       A imagem inteira fica visível.
    */

    .hero-image {
        min-height: 0;

        width: 100%;
    }

    .hero-image img {
        width: 100%;

        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
        object-position: center;
    }


    /* =====================================================
       FRASE
       ===================================================== */

    .quote-section {
        padding: 90px 0;
    }

    .quote-content h2 {
        margin-bottom: 22px;
    }

    .quote-content p {
        font-size: 16px;
    }


    /* =====================================================
       QUEM SOU EU
       ===================================================== */

    .about {
        padding: 90px 0;
    }

    .about-content {
        gap: 45px;
    }

    /*
       Foto da Deise.
    */

    .about-image {
        min-height: 0;

        width: 100%;
    }

    .about-image img {
        width: 100%;

        height: 400px;

        min-height: 0;
        max-height: 400px;

        object-fit: cover;
        object-position: center;
    }

    .about-text {
        max-width: none;
    }

    .about-text h2 {
        margin-bottom: 25px;
    }

    .about-text p {
        margin-bottom: 22px;

        font-size: 16px;
        line-height: 1.75;
    }


    /* =====================================================
       ATENDIMENTOS
       ===================================================== */

    .services {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        margin-bottom: 18px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .service-main {
        grid-template-columns: 1fr;

        margin-bottom: 20px;
    }

    .service-main-content {
        padding: 40px 28px;
    }

    .service-number {
        margin-bottom: 14px;
    }

    .service-label {
        margin-bottom: 10px;
    }

    .service-main-content h3 {
        margin-bottom: 18px;

        font-size: clamp(28px, 8vw, 36px);
    }

    .service-main-content p {
        margin-bottom: 25px;

        font-size: 16px;
    }

    .service-main-decoration {
        min-height: 220px;

        padding: 35px 25px;

        font-size: 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        min-height: 0;

        padding: 32px 26px;
    }

    .service-card-top {
        align-items: flex-start;

        gap: 12px;

        margin-bottom: 24px;
    }

    .service-card h3 {
        margin-bottom: 15px;

        font-size: 27px;
    }

    .service-card p {
        margin-bottom: 20px;

        font-size: 15px;
    }


    /* =====================================================
       COMO FUNCIONA
       ===================================================== */

    .how-it-works {
        padding: 90px 0;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 35px 25px;

        border-right: none;

        border-bottom: 1px solid rgba(75, 58, 47, 0.2);
    }

    .step:last-child {
        border-bottom: none;
    }

    .step-number {
        margin-bottom: 22px;
    }


    /* =====================================================
       BLOG
       ===================================================== */

    .blog {
        padding: 90px 0;
    }

    .blog-heading {
        display: block;
    }

    .blog-heading .text-link {
        margin-top: 18px;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .blog-card-content {
        padding: 26px;
    }

    .blog-card h3 {
        font-size: 24px;
    }


    /* =====================================================
       LIVROS
       ===================================================== */

    .books {
        padding: 90px 0;
    }

    .books-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .book-cover {
        aspect-ratio: 2 / 3;
    }

    .book-content {
        padding: 24px;
    }

    .book-content h3 {
        font-size: 25px;
    }


    /* =====================================================
       CTA FINAL
       ===================================================== */

    .final-cta {
        padding: 100px 0;
    }

    .final-cta p {
        font-size: 16px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer {
        padding: 65px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 45px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }
}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 380px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .logo-text {
        font-size: 11px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
    }

    .hero {
        padding: 55px 0 65px;
    }


    /*
       Mantém a imagem principal inteira.
    */

    .hero-image img {
        height: auto;
        max-height: none;
    }


    /*
       Foto da Deise em celulares menores.
    */

    .about-image img {
        height: 350px;
        max-height: 350px;
    }

    .service-main-content {
        padding: 35px 22px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .step {
        padding: 30px 20px;
    }

    .book-content {
        padding: 22px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}