* {
    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"
================================ */

.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;
    }
}

.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);
    }
}

@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;
}


/* ================================
   HEADER — RESPONSIVIDADE
================================ */

@media (max-width: 900px) {

    .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;
    }
}

@media (max-width: 480px) {

    .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;
    }
}

/* =====================================================
   ATENDIMENTO AO CLIENTE

   Largura máxima + centralização: sem isso, em telas
   bem largas o bloco (alinhado à direita) cria um vão
   enorme e desproporcional à esquerda. Com o max-width,
   o "respiro" à esquerda fica sempre proporcional,
   igual ao resto do site (coleção, footer etc.).
===================================================== */

.customer-service {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 70px 3% 40px;
    box-sizing: border-box;
    color: #6B452C;
}

.customer-service h2,
.contact-section h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1;
    color: #6B452C;
}

.customer-service-line,
.contact-line {
    width: 100%;
    height: 2px;
    background: #6B452C;
    margin-top: 14px;
}

.customer-service-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.customer-service-info {
    width: 400px;
    max-width: 100%;

    margin-top: 35px;
    margin-right: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #6B452C;
}

.service-row {
    display: grid;
    grid-template-columns: 175px 1fr;
    column-gap: 10px;
    align-items: center;
    min-height: 30px;
}

.service-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 28px;
    color: #6B452C;

    white-space: nowrap;
}

.service-row a,
.service-row span:not(.service-label) {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #6B452C;
    text-decoration: none;

    white-space: nowrap;
}

.service-row a:hover {
    text-decoration: underline;
}

.service-hours-title {
    margin-top: 3px;
}

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

    width: 250px;
    height: 42px;

    margin-top: 18px;
    margin-left: 185px;

    background: #39291F;
    color: #F5EFE5 !important;

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

    text-decoration: none !important;
}


/* =====================================================
   CONTATE-NOS

   Mesma lógica de largura máxima + centralização do
   Atendimento ao Cliente, pelo mesmo motivo.
===================================================== */

.contact-section {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 75px 3% 110px;
    box-sizing: border-box;
    color: #6B452C;
}

.contact-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact-form {
    width: 400px;
    max-width: 100%;

    margin-top: 48px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.form-row label {
    width: 95px;
    flex-shrink: 0;

    text-align: right;
    padding-right: 8px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #6B452C;
}

.form-row input {
    width: 100%;
    height: 42px;

    box-sizing: border-box;

    border: 1px solid #9E958B;
    border-radius: 0;

    background: transparent;

    outline: none;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6B452C;

    padding: 0 10px;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #6B452C;
}

.message-row {
    align-items: flex-start;
}

.form-row textarea {
    width: calc(100% - 95px);
    height: 145px;

    margin-left: 95px;

    box-sizing: border-box;

    border: 1px solid #9E958B;
    border-radius: 0;

    background: transparent;

    outline: none;
    resize: none;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6B452C;

    padding: 10px;
}

.form-row textarea::placeholder {
    color: #BDB4AA;
    opacity: 1;
}

.contact-submit {
    width: calc(100% - 95px);
    height: 42px;

    margin-left: 95px;

    border: none;
    border-radius: 0;

    background: #39291F;
    color: #F5EFE5;

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

    cursor: pointer;
}

.contact-submit:hover,
.customer-service-button:hover {
    opacity: 0.9;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 768px) {

    .customer-service {
        padding: 55px 5% 30px;
    }

    .contact-section {
        padding-top: 60px;
        padding-bottom: 80px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .customer-service h2,
    .contact-section h2 {
        font-size: 36px;
    }

    .customer-service-content,
    .contact-content {
        justify-content: flex-start;
    }

    .customer-service-info,
    .contact-form {
        width: 100%;
        max-width: 400px;
    }

    .service-row {
        grid-template-columns: 155px 1fr;
    }

    .customer-service-button {
        margin-left: 165px;
    }

    .service-label {
        font-size: 23px;
    }

    .service-row a,
    .service-row > span:not(.service-label) {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .customer-service {
        padding: 45px 5% 25px;
    }

    .customer-service h2,
    .contact-section h2 {
        font-size: 30px;
    }

    .service-row {
        grid-template-columns: 135px 1fr;
    }

    .service-label {
        font-size: 21px;
    }

    .customer-service-button {
        width: 100%;
        margin-left: 0;
    }

    .form-row label {
        width: 75px;
        font-size: 11px;
    }

    .form-row textarea {
        width: calc(100% - 75px);
        margin-left: 75px;
    }

    .contact-submit {
        width: calc(100% - 75px);
        margin-left: 75px;
    }
}


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

.benefits-section {
    width: 100%;

    background-color: #F6F0E5;

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

    column-gap: 55px;

    padding: 90px 45px 100px;
}

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

    min-width: 0;
}

.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;
}

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

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

    color: #6B452C;
}

.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;
}

@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;
    }
}

@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;
}

.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;
}

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

    align-self: center;
}

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

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

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

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

.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;
}

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

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

    color: #3F3026;

    white-space: nowrap;
}

.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;
}

.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;
}

.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;
}

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

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

    margin-bottom: 18px;
}

.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;
}

.footer-copyright {
    width: 100%;

    margin-top: 60px;

    text-align: center;

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

    color: #3F3026;
}

@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;
    }

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

        align-self: start;
    }

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

        align-self: start;
    }

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

        align-self: start;
    }

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

        align-self: start;
    }

    .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;
    }
}

@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;
    }

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

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

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

    .footer-content > .footer-column:nth-child(4) {
        grid-column: 1;
        grid-row: 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;
}
}