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

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

html {
    scroll-behavior: smooth;

    overflow-x: hidden;
}

body {
    background-color: #F6F0E5;
    color: #3F3026;
}


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

.site-header {
    width: 100%;
    height: auto;
    background-color: #F6F0E5;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    min-height: 150px;

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

    position: relative;

    padding: 18px 60px 20px;
}


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

.brand {
    position: relative;

    display: flex;
    align-items: center;

    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;

    color: #3F3026;
}

.brand-letter {
    color: #3F3026;
}

.brand-e {
    color: #71806C;
}


/* ================================
   BORBOLETA VOANDO SOBRE O NOME
   "OLIVEA"

   Usa uma IMAGEM de verdade
   (borboleta.png — troque pelo
   arquivo real que você baixar/
   licenciar) em vez de desenho
   feito à mão, pra ficar realista.

   Fica por cima das letras, voa
   atravessando o nome com leve
   sobe-e-desce, bate a asa
   continuamente (efeito simulado
   comprimindo a imagem no eixo X),
   e some no fim do voo — repetindo
   de tempos em tempos, não só ao
   carregar a página.

   O voo usa "left/top" em % (não
   "transform"), porque porcentagem
   em left/top é relativa ao
   tamanho do elemento pai (a
   logo inteira) — assim funciona
   proporcionalmente em qualquer
   tamanho de tela, sem precisar
   ajustar valores por breakpoint.
================================ */

.brand-butterfly-wrap {
    position: absolute;
    inset: 0;

    overflow: visible;
    pointer-events: none;

    z-index: 2;
}

.brand-butterfly {
    position: absolute;

    width: 46px;
    height: auto;

    top: 55%;
    left: -10%;

    opacity: 0;

    animation: butterfly-fly 15s ease-in-out infinite;
}

@keyframes butterfly-fly {
    0% {
        left: -10%;
        top: 60%;
        opacity: 0;
        transform: rotate(-6deg) scale(0.75);
    }
    6% {
        opacity: 1;
    }
    25% {
        left: 20%;
        top: 15%;
        transform: rotate(5deg) scale(0.95);
    }
    50% {
        left: 55%;
        top: 45%;
        transform: rotate(-5deg) scale(1.05);
    }
    72% {
        left: 100%;
        top: 10%;
        opacity: 1;
        transform: rotate(4deg) scale(0.9);
    }
    80% {
        opacity: 0;
    }
    100% {
        left: 100%;
        top: 10%;
        opacity: 0;
    }
}

/* Simula o bater de asa comprimindo a imagem
   no eixo horizontal, rápido e contínuo */

.butterfly-flap {
    display: block;

    transform-origin: center;

    animation: wing-flap 0.24s ease-in-out infinite alternate;
}

.butterfly-flap img {
    width: 100%;
    height: auto;

    display: block;
}

@keyframes wing-flap {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0.72);
    }
}


/* Ícone um pouco menor em telas
   menores, acompanhando a logo */

@media (max-width: 900px) {
    .brand-butterfly {
        width: 32px;
    }
}

@media (max-width: 480px) {
    .brand-butterfly {
        width: 26px;
    }
}


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

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 36px;

    margin-top: 18px;
}

.main-nav a {
    position: relative;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #3F3026;

    text-decoration: none;

    white-space: nowrap;
}

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

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

    width: 100%;
    height: 1px;

    background-color: currentColor;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}


/* ================================
   SACOLA
================================ */

.bag-link {
    position: absolute;

    right: 60px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-link img {
    width: 50px;
    height: 46px;

    object-fit: contain;
    display: block;
}


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

.hero-banner {
    width: 100%;
    height: 550px;

    position: relative;

    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;

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

    display: block;
}


/* Conteúdo do banner */

.hero-banner-content {
    position: absolute;

    left: 50px;
    bottom: 38px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-banner-content h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;

    color: #FCFAF6;
}

.hero-banner-content a {
    margin-top: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #FCFAF6;

    text-decoration: underline;

    transition: color 0.3s ease;
}

.hero-banner-content a:hover {
    color: #9A9A9A;
}


/* ================================
   SEÇÕES INSTITUCIONAIS
================================ */

.brand-section {
    width: 100%;

    display: flex;
    align-items: center;

    background-color: #F6F0E5;
}

.brand-image {
    width: 50%;

    overflow: hidden;
}

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

    display: block;

    object-fit: cover;
}


/* ================================
   A ARTE DOS DETALHES
================================ */

.details-section {
    min-height: 500px;

    /* Espaço entre o banner e a seção */
    margin-top: 70px;

    /* Espaço entre esta seção e a próxima */
    margin-bottom: 70px;
}

.details-section .brand-image {
    height: 500px;
}

.details-section .brand-text {
    width: 50%;

    padding: 60px 70px;
}


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

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h2 {
    margin: 0 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 0.98;

    color: #6B452C;
}

.brand-text p {
    max-width: 430px;

    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;

    color: #3F3026;
}

.brand-text a {
    margin-top: 18px;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;

    color: #3F3026;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: color 0.3s ease;
}

.brand-text a:hover {
    color: #71806C;
}


/* ================================
   PARA CADA MOMENTO
================================ */

.moment-section {
    min-height: 500px;
}

.moment-section .brand-text {
    width: 50%;

    padding: 60px 70px 60px 100px;
}

.moment-section .brand-image {
    height: 500px;
}


/* ================================
   RESPONSIVIDADE
================================ */

@media (max-width: 900px) {

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

    .header-inner {
        min-height: 120px;

        padding: 16px 20px 18px;
    }

    .brand {
        font-size: 46px;
    }

    .main-nav {
        gap: 18px;

        margin-top: 12px;

        overflow-x: auto;

        max-width: calc(100% - 50px);

        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        font-size: 11px;
    }

    .bag-link {
        right: 20px;
    }

    .bag-link img {
        width: 40px;
        height: 37px;
    }


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

    .hero-banner {
        height: 430px;
    }

    .hero-banner-content {
        left: 25px;
        bottom: 25px;
    }

    .hero-banner-content h1 {
        font-size: 48px;
    }

    .hero-banner-content a {
        font-size: 12px;

        margin-top: 7px;
    }


    /* ================================
       SEÇÕES
    ================================ */

    .brand-section {
        flex-direction: column;
    }


    /* Espaçamento mobile */

    .details-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }


    /* ================================
       IMAGENS MOBILE
    ================================ */

    .brand-image,
    .details-section .brand-image,
    .moment-section .brand-image {
        width: calc(100% - 50px);
        height: auto;

        margin-left: 25px;
        margin-right: 25px;

        overflow: hidden;
    }

    .brand-image img {
        width: 100%;
        height: auto;

        display: block;

        object-fit: cover;
    }


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

    .details-section .brand-text,
    .moment-section .brand-text {
        width: 100%;

        padding: 50px 30px;
    }


    /* ================================
       ORDEM MOBILE

       IMAGEM
       ↓
       TEXTO
       ↓
       IMAGEM
       ↓
       TEXTO
    ================================ */

    .details-section .brand-image {
        order: 1;
    }

    .details-section .brand-text {
        order: 2;
    }

    .moment-section .brand-image {
        order: 1;
    }

    .moment-section .brand-text {
        order: 2;
    }


    /* ================================
       TÍTULOS
    ================================ */

    .brand-text h2 {
        font-size: 48px;

        margin-bottom: 18px;
    }


    /* ================================
       PARÁGRAFOS
    ================================ */

    .brand-text p {
        font-size: 15px;

        line-height: 1.5;
    }


    /* ================================
       ASSINATURA
    ================================ */

    .brand-text a {
        font-size: 15px;
    }
}


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

@media (max-width: 480px) {

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

    .header-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand {
        font-size: 40px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 9px;
    }

    .bag-link {
        right: 14px;
    }

    .bag-link img {
        width: 36px;
        height: 33px;
    }


    /* ================================
       ESPAÇAMENTO
    ================================ */

    .details-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }


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

    .hero-banner {
        height: 380px;
    }

    .hero-banner-content {
        left: 20px;
        bottom: 20px;
    }

    .hero-banner-content h1 {
        font-size: 42px;
    }

    .hero-banner-content a {
        font-size: 10px;
    }


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

    .details-section .brand-text,
    .moment-section .brand-text {
        padding: 40px 25px;
    }

    .brand-text h2 {
        font-size: 42px;
    }

    .brand-text p {
        font-size: 14px;
    }

    .brand-text a {
        font-size: 14px;
    }
}


/* ================================
   DESTAQUES
================================ */

.featured-products {
    width: 100%;

    padding: 70px 30px 80px;

    background-color: #F6F0E5;
}


/* ================================
   TÍTULO
================================ */

.featured-title {
    margin: 0 0 40px;

    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;

    color: #6B452C;
}


/* ================================
   GRID DOS PRODUTOS
================================ */

.products-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 329px);

    justify-content: space-between;

    gap: 20px;
}


/* ================================
   CARD
================================ */

.product-card {
    width: 329px;

    display: flex;
    flex-direction: column;
}

/* ================================
   LINK DOS PRODUTOS EM DESTAQUE
================================ */

.product-link {
    display: block;

    color: inherit;
    text-decoration: none;
}

.product-link:visited,
.product-link:hover,
.product-link:active,
.product-link:focus {
    color: inherit;
    text-decoration: none;
}


/* ================================
   QUADRADO DA IMAGEM
================================ */

.product-image-box {
    width: 329px;
    height: 346px;

    position: relative;

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

    background-color: #E8DED0;

    overflow: hidden;
}


/* ================================
   IMAGEM DO PRODUTO
================================ */

.product-image {
    width: 224px;
    height: 280px;

    object-fit: contain;

    display: block;

    transition: opacity 0.25s ease;
}


/* ================================
   PONTINHOS
================================ */

.product-dots {
    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 5px;
}

.dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background-color: #BDB8B0;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.dot.active {
    background-color: #3F3026;

    transform: scale(1.05);
}


/* ================================
   NOME DO PRODUTO
================================ */

.product-card h3 {
    margin: 13px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;

    color: #6B452C;
}


/* ================================
   PREÇO
================================ */

.product-price {
    margin: 9px 0 0;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;

    color: #3F3026;
}


/* ================================
   VER MAIS
================================ */

.see-more {
    display: block;

    width: fit-content;

    margin: 48px auto 0;

    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;

    color: #3F3026;

    text-decoration: none;

    transition: opacity 0.3s ease;
}

.see-more:hover,
.see-more:focus-visible,
.see-more:active,
.see-more.was-clicked {
    text-decoration: underline;
}


/* ================================
   RESPONSIVIDADE DESTAQUES
================================ */

@media (max-width: 1400px) {

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

    .product-card {
        width: 100%;
    }

    .product-image-box {
        width: 100%;
    }
}


/* ================================
   TABLET / TELAS MENORES
================================ */

@media (max-width: 900px) {

    .featured-products {
        padding: 55px 25px 65px;
    }

    .featured-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

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

        gap: 40px 20px;
    }

    .product-card {
        width: 100%;
    }

    .product-image-box {
        width: 100%;
        height: auto;

        aspect-ratio: 329 / 346;
    }

    .product-image {
        width: 68%;
        height: 81%;
    }

    .product-card h3 {
        font-size: 21px;
    }

    .product-price {
        font-size: 16px;
    }

    .see-more {
        font-size: 21px;
    }
}


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

@media (max-width: 480px) {

    .featured-products {
        padding: 45px 15px 55px;
    }

    .featured-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    /*
       DUAS COLUNAS
       As mesmas margens e espaçamento
       serão usadas nas Categorias.
    */

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

        gap: 35px 20px;
    }

    .product-card {
        width: 100%;
    }

    .product-image-box {
        width: 100%;
        height: auto;

        aspect-ratio: 329 / 346;
    }

    .product-image {
        width: 68%;
        height: 81%;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-price {
        font-size: 15px;
    }

    .see-more {
        margin-top: 40px;

        font-size: 20px;
    }
}


/* ================================
   CATEGORIAS
================================ */

.categories-section {
    width: 100%;

    background-color: #F6F0E5;

    padding-top: 70px;
    padding-bottom: 80px;
}


/* ================================
   TÍTULO
================================ */

.categories-title {
    margin: 0 0 40px;

    /*
       Mesmo recuo lateral do título
       DESTAQUES (30px, vindo do padding
       do .featured-products). Aqui o
       padding vai só no título, não na
       section, pra não afetar o grid
       full-bleed logo abaixo.
    */
    padding-left: 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;

    color: #6B452C;
}


/* ================================
   GRID - DESKTOP
================================ */

.categories-grid {
    width: 100%;
    max-width: 100%;

    margin-left: 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}


/* ================================
   CARD
================================ */

.category-card {
    position: relative;

    width: 100%;

    aspect-ratio: 365 / 561;

    overflow: hidden;

    display: block;

    text-decoration: none;
}


/* ================================
   IMAGEM
================================ */

.category-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* ================================
   HOVER
================================ */

.category-card:hover img {
    transform: scale(1.03);
}


/* ================================
   NOME
================================ */

.category-card span {
    position: absolute;

    left: 15px;
    bottom: 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;

    color: #FCFAF6;
}


/* ================================
   TELAS MENORES
================================ */

@media (max-width: 900px) {

    .categories-section {
        padding-top: 55px;
        padding-bottom: 65px;

        /*
           MESMO RECUO DOS DESTAQUES

           Em vez do truque de breakout
           com 100vw (que na prática fica
           alguns pixels maior que a área
           visível por causa da barra de
           rolagem, e desalinha a imagem),
           aplicamos o padding direto
           aqui na section — exatamente
           como o .featured-products faz.
        */
        padding-left: 25px;
        padding-right: 25px;
    }

    .categories-title {
        font-size: 40px;

        margin-bottom: 30px;

        padding-left: 0;
    }


    .categories-grid {
        width: 100%;
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    /* Nomes menores */

    .category-card span {
        left: 15px;
        bottom: 18px;

        font-size: 30px;
    }
}


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

@media (max-width: 480px) {

    .categories-section {
        padding-top: 45px;
        padding-bottom: 55px;

        /*
           EXATAMENTE O MESMO
           ALINHAMENTO DOS DESTAQUES

           Padding direto na section,
           igual ao .featured-products
           (15px esquerda/direita) —
           sem breakout de 100vw.
        */
        padding-left: 15px;
        padding-right: 15px;
    }

    .categories-title {
        font-size: 36px;

        margin-bottom: 25px;

        padding-left: 0;
    }


    .categories-grid {
        width: 100%;
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    /* Nomes menores no celular */

    .category-card span {
        left: 10px;
        bottom: 12px;

        font-size: 24px;
    }
}

/* ================================
   BENEFÍCIOS
================================ */

.benefits-section {
    width: 100%;

    background-color: #F6F0E5;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    column-gap: 55px;

    padding: 90px 45px 100px;
}


/* ================================
   ITEM
================================ */

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 0;
}


/* ================================
   IMAGEM / ÍCONE

   Tamanho uniforme para todos os
   ícones (altura fixa, largura
   automática) para não estourar
   por cima do título/texto.
================================ */

.benefit-icon {
    width: 100%;
    height: 260px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    margin-bottom: 6px;
}

.benefit-icon img {
    width: auto;
    height: 260px;

    object-fit: contain;

    display: block;
}


/* ================================
   TÍTULO
================================ */

.benefit-item h3 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;

    color: #6B452C;
}


/* ================================
   DESCRIÇÃO
================================ */

.benefit-item p {
    max-width: 290px;

    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;

    color: #3F3026;
}


/* ================================
   TELAS MENORES
================================ */

@media (max-width: 900px) {

    .benefits-section {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 35px;
        row-gap: 70px;

        padding: 70px 30px 80px;
    }

    .benefit-icon {
        height: 175px;
        margin-bottom: 6px;
    }

    .benefit-icon img {
        height: 175px;
    }

    .benefit-item h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .benefit-item p {
        font-size: 15px;
        line-height: 1.45;
    }
}


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

@media (max-width: 480px) {

    .benefits-section {
        grid-template-columns: 1fr 1fr;

        column-gap: 20px;
        row-gap: 55px;

        padding: 55px 20px 65px;
    }

    .benefit-icon {
        height: 115px;
        margin-bottom: 6px;
    }

    .benefit-icon img {
        height: 115px;
    }

    .benefit-item h3 {
        font-size: 21px;
    }

    .benefit-item p {
        font-size: 13px;
        line-height: 1.4;
    }
}


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

.site-footer {
    width: 100%;

    background-color: #71806C;

    position: relative;

    padding: 80px 0 40px;
}


/* ================================
   CONTEÚDO

   3 colunas x 2 linhas:

   [ LOGO ] [ INFORMAÇÃO ] [ CONTATO        ]
   [ LOGO ] [ CATEGORIAS ] [ ME MANDE UM OI ]

   A logo (footer-brand) ocupa a 1ª coluna
   inteira (as duas linhas) e fica centralizada
   verticalmente. Cada bloco é posicionado na
   célula certa via grid-column/grid-row, sem
   precisar mudar a ordem no HTML.
================================ */

.footer-content {
    width: 100%;

    padding: 0 7%;

    display: grid;

    grid-template-columns:
        1.15fr
        1.1fr
        1.3fr;

    grid-template-rows: auto auto;

    column-gap: 80px;
    row-gap: 30px;

    align-items: start;
}


/* LOGO — coluna 1, nas duas linhas, centralizada verticalmente */

.footer-content > .footer-brand {
    grid-column: 1;
    grid-row: 1 / 3;

    align-self: center;
}


/* INFORMAÇÃO — coluna 2, linha 1 */

.footer-content > .footer-column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


/* CONTATO — coluna 3, linha 1 */

.footer-content > .footer-column:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}


/* CATEGORIAS — coluna 2, linha 2 (embaixo de INFORMAÇÃO) */

.footer-content > .footer-column:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}


/* ME MANDE UM OI — coluna 3, linha 2 (embaixo de CONTATO) */

.footer-content > .footer-contact {
    grid-column: 3;
    grid-row: 2;
}


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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.footer-logo {
    display: flex;
    align-items: center;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;

    color: #3F3026;
}


.footer-logo-e {
    color: #FCFAF6;
}


/* ================================
   SUBTÍTULO DA LOGO
================================ */

.footer-subtitle {
    margin-top: 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;

    color: #3F3026;

    white-space: nowrap;
}


/* ================================
   INSTAGRAM
================================ */

.footer-instagram {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: -50px;
}


.footer-instagram img {
    width: 220px;
    height: 220px;

    object-fit: contain;

    display: block;
}


/* ================================
   COLUNAS
================================ */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-column h3 {
    margin: 0 0 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;

    color: #FCFAF6;
}


.footer-column p {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;

    color: #FCFAF6;
}


/* ================================
   LINKS DO FOOTER (Informação e
   Categorias) — são clicáveis,
   por isso ganham sublinhado sutil
================================ */

.footer-link {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;

    color: #FCFAF6;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E3A9BC;
}


/* ================================
   ME MANDE UM OI
================================ */

.footer-contact h3 {
    margin-bottom: 15px;
}


.footer-contact p {
    max-width: 310px;

    margin-bottom: 18px;
}


/* ================================
   BOTÃO
================================ */

.footer-button {
    width: 100%;
    max-width: 310px;

    min-height: 45px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    border: 3px solid #3F3026;

    background: transparent;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;

    color: #3F3026;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.footer-button:hover {
    background-color: #3F3026;
    color: #FCFAF6;
}


/* ================================
   COPYRIGHT
================================ */

.footer-copyright {
    width: 100%;

    margin-top: 60px;

    text-align: center;

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;

    color: #3F3026;
}


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

   Nas telas menores voltamos ao
   fluxo natural (grid-column/row
   automático), já que o grid de
   3 colunas x 2 linhas só faz
   sentido no desktop.
================================ */

@media (max-width: 1000px) {

    .site-footer {
        padding: 70px 0 40px;
    }

    .footer-content {
        padding: 0 40px;

        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;

        row-gap: 50px;
        column-gap: 40px;
    }

    /* LOGO — linha inteira, em cima */
    .footer-content > .footer-brand {
        grid-column: 1 / 3;
        grid-row: 1;

        align-self: start;
    }

    /* INFORMAÇÃO — coluna 1, linha 2 */
    .footer-content > .footer-column:nth-child(2) {
        grid-column: 1;
        grid-row: 2;

        align-self: start;
    }

    /* CONTATO — coluna 2, linha 2 */
    .footer-content > .footer-column:nth-child(3) {
        grid-column: 2;
        grid-row: 2;

        align-self: start;
    }

    /* CATEGORIAS — coluna 1, linha 3 */
    .footer-content > .footer-column:nth-child(4) {
        grid-column: 1;
        grid-row: 3;

        align-self: start;
    }

    /* ME MANDE UM OI — coluna 2, linha 3 */
    .footer-content > .footer-contact {
        grid-column: 2;
        grid-row: 3;

        align-self: start;
    }

    .footer-column h3 {
        font-size: 24px;
    }

    .footer-column p,
    .footer-link {
        font-size: 16px;
    }

    .footer-copyright {
        margin-top: 80px;
        font-size: 15px;
    }
}


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

@media (max-width: 600px) {

    .site-footer {
        padding: 55px 0 30px;
    }


    .footer-content {
        padding: 0 25px;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;

        column-gap: 20px;
        row-gap: 35px;
    }

    /* LOGO — linha inteira, em cima */
    .footer-content > .footer-brand {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    /* INFORMAÇÃO — coluna 1, linha 2 */
    .footer-content > .footer-column:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    /* CONTATO — coluna 2, linha 2 */
    .footer-content > .footer-column:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* CATEGORIAS — coluna 1, linha 3 */
    .footer-content > .footer-column:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    /* ME MANDE UM OI — coluna 2, linha 3 */
    .footer-content > .footer-contact {
        grid-column: 2;
        grid-row: 3;
    }


    .footer-brand {
        align-items: center;

        text-align: center;
    }


    .footer-logo {
        font-size: 48px;
    }


    .footer-subtitle {
        font-size: 14px;

        white-space: normal;
    }


    .footer-instagram {
        justify-content: center;
    }


    .footer-instagram img {
        width: 170px;
        height: 170px;
    }


    .footer-column h3 {
        font-size: 24px;

        margin-bottom: 12px;
    }


    .footer-column p,
    .footer-link {
        font-size: 14px;

        line-height: 1.45;
    }


    .footer-button {
        max-width: 100%;

        min-height: 42px;

        font-size: 16px;
    }


    .footer-copyright {
        margin-top: 65px;

        font-size: 13px;
    }

    .footer-logo-link {
    text-decoration: none;
}
}