/*
Theme Name: Memórias Concept
Theme URI: https://example.com/
Author: Memórias Concept
Description: Tema WordPress da Memórias Concept, baseado no layout original fornecido.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: memorias-concept
*/

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

:root {
    --dark: #1e2428;
    --text: #37434c;
    --muted: #7c858b;
    --line: #e7e7e7;
    --bg: #ffffff;
    --soft: #f5f5f3;
    --accent: #a28f75;
}

html,
body {
    min-height: 100%;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

body {
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


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

.header-inner {
    display: flex;
    align-items: center;
    height: 86px;
}

.site-header {
    height: 86px;
}


/* LOGO */

/* =====================================================
   LOGO DO CABEÇALHO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 210px;
    min-width: 210px;
    height: 70px;

    text-decoration: none;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 210px;
    min-width: 210px;
    height: 70px;

    text-decoration: none;

    padding-left: 40px;
}

.logo-memorias {
    width: 180px;
    height: auto;

    display: block;
    object-fit: contain;

    /* garante a cor preta */
    filter: brightness(0);

    flex-shrink: 0;
}


/* MENU */

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

    flex: 1;
    height: 100%;
}

.nav-link {
    font-size: 12px;
    letter-spacing: 3px;
    color: #515b63;

    white-space: nowrap;

    height: 100%;

    display: flex;
    align-items: center;

    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #a28267;
}


/* =====================================================
   CATÁLOGO HOVER
===================================================== */

.catalog-wrap {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;
}

.catalog-trigger {
    gap: 6px;
}

.arrow {
    font-size: 17px;
}


/* MENU DO CATÁLOGO */

.catalog-dropdown {

    position: absolute;

    top: 77px;
    left: 50%;

    transform: translateX(-50%);

    width: min(900px, 80vw);

    background: #fff;

    border-top: 2px solid #a28267;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);

    padding: 28px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition: 0.18s ease;

    z-index: 1200;
}


/*
    IMPORTANTE:

    O menu fica aberto enquanto
    o mouse estiver dentro do
    catalog-wrap.
*/

.catalog-wrap.open .catalog-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.catalog-grid {

    display: grid;

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

    gap: 12px 35px;
}


.catalog-grid a {

    padding: 10px 0;

    font-size: 13px;

    color: #4d5961;

    border-bottom: 1px solid #eee;
}

.catalog-grid a:hover {
    color: #a28267;
}


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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn,
.cart-btn {
    border: 0;
    background: none;

    color: #52606a;

    font-size: 22px;
}

.cart-btn {
    position: relative;
    font-size: 17px;
}

#cartCount {

    position: absolute;

    top: -9px;
    right: -10px;

    background: #a28267;

    color: white;

    border-radius: 50%;

    min-width: 18px;
    height: 18px;

    font-size: 10px;

    display: grid;
    place-items: center;
}


/* SEARCH */

.search-box {

    display: none;

    position: absolute;

    top: 88px;

    left: 0;
    right: 0;

    background: #fff;

    padding: 15px 7%;

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

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.07);
}

.search-box.show {
    display: block;
}

.search-box input {

    width: 100%;

    border: 1px solid #ddd;

    padding: 13px 15px;

    outline: none;
}


/* MOBILE */

.mobile-menu-btn {

    display: none;

    border: 0;

    background: none;

    font-size: 24px;
}


/* =====================================================
   PÁGINAS
===================================================== */

.site-page {

    display: none;

    min-height:
        calc(100vh - 88px);
}

.site-page.active {

    display: block;

    animation:
        pageIn 0.25s ease;
}

@keyframes pageIn {

    from {

        opacity: 0.3;

        transform:
            translateY(5px);
    }

    to {

        opacity: 1;

        transform: none;
    }
}


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

.hero {

    min-height:
        calc(100vh - 88px);

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #3F6B5B 0%,
            #527A69 50%,
            #6F8F7B 100%
        );
}

.hero-content {

    max-width: 650px;

    margin-left: 8%;

    padding: 70px 25px;
}

.eyebrow {

    font-size: 11px;

    letter-spacing: 4px;

    color: #eae4dc;

    margin-bottom: 17px;

    font-weight: 600;
}

.hero h1,
.page-heading h1 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-weight: 500;

    color: #2d3439;
}

.hero h1 {
    color: #eae4dc;
}
.hero h1 {

    font-size:
        clamp(42px, 5vw, 72px);

    line-height: 1.05;

    margin-bottom: 24px;
}




/* BOTÕES */

.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 48px;

    padding: 0 25px;

    border: 1px solid transparent;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 600;
}

.btn-dark {

    background: #2d3439;

    color: #fff;
}

.btn-dark:hover {

    background: #a28267;
}

.btn-light {

    border-color: #c8c8c8;

    background: #fff;

    color: #343c41;
}


/* =====================================================
   HOME
===================================================== */

.home-intro {

    text-align: center;

    padding: 100px 25px;
}

.home-intro h2,
.map-section h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 40px;

    font-weight: 500;

    margin-bottom: 14px;
}

.home-intro p:not(.eyebrow) {

    color: #737b80;

    line-height: 1.8;
}

.text-link {

    display: inline-block;

    margin-top: 25px;

    border-bottom:
        1px solid #a28267;

    padding-bottom: 5px;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =====================================================
   PÁGINAS INTERNAS
===================================================== */

.inner-page {

    max-width: 1250px;

    margin: auto;

    padding: 80px 30px 110px;
}

.page-heading {

    text-align: center;

    max-width: 720px;

    margin:
        0 auto 55px;
}

.page-heading h1 {

    font-size: 55px;

    margin-bottom: 18px;
}

.page-heading p:last-child {

    color: #737b80;

    line-height: 1.8;

    font-size: 14px;
}


/* =====================================================
   QUEM SOMOS
===================================================== */

.about-grid {

    display: grid;

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

    gap: 22px;
}

.about-card {

    padding: 40px;

    background: var(--soft);

    min-height: 230px;
}

.about-card span {

    font-size: 11px;

    color: #a28267;

    letter-spacing: 2px;
}

.about-card h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

    font-weight: 500;

    margin: 25px 0 12px;
}

.about-card p {

    font-size: 13px;

    line-height: 1.8;

    color: #737b80;
}


/* =====================================================
   CATÁLOGO
===================================================== */

.filters {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    justify-content: center;

    margin-bottom: 35px;
}

.filter {

    background: white;

    border: 1px solid #ddd;

    padding: 10px 15px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #5c646a;
}

.filter:hover,
.filter.active {

    background: #2d3439;

    color: white;

    border-color: #2d3439;
}


/* PRODUTOS */

.products-grid {

    display: grid;

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

    gap: 28px;
}

.product-card {

    background: #fff;

    border: 1px solid #eee;

    overflow: hidden;

    transition: .2s;
}

.product-card:hover {

    box-shadow:
        0 12px 30px rgba(0,0,0,.09);

    transform:
        translateY(-2px);
}


/* FOTO */

.product-image-wrap {

    height: 330px;

    background: #f2f2f0;

    position: relative;

    overflow: hidden;

    cursor: zoom-in;

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

.product-image {

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center center;

    display: block;

    transition:
        transform .35s ease;
}

.product-card:hover
.product-image {

    transform:
        scale(1.025);
}


/* LUPA */

.zoom-icon {

    position: absolute;

    right: 15px;
    top: 15px;

    background:
        rgba(255,255,255,.93);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 20px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.1);

    z-index: 5;
}

/* INFORMAÇÕES */

.product-info {

    padding: 19px;
}

.product-info h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 500;

    color: #343a3e;
}

.product-category {

    font-size: 10px;

    letter-spacing: 2px;

    color: #a28267;

    text-transform: uppercase;

    margin: 7px 0 14px;
}

.product-actions {

    display: flex;

    gap: 8px;
}

.product-actions button {

    flex: 1;

    min-height: 42px;

    border: 1px solid #ddd;

    background: white;

    font-size: 10px;

    letter-spacing: 1px;
}

.product-actions .add {

    background: #2d3439;

    color: white;

    border-color: #2d3439;
}

.product-actions .add:hover {

    background: #a28267;

    border-color: #a28267;
}


/* =====================================================
   CONTATO
===================================================== */

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: start;
}

.contact-info {

    display: grid;

    gap: 12px;
}

.contact-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px;

    border: 1px solid #eee;

    background: #fafafa;
}

.contact-card:hover {

    border-color:
        #b8a38d;
}

.contact-icon {

    width: 45px;
    height: 45px;

    border: 1px solid #d5d5d5;

    border-radius: 50%;

    display: grid;

    place-items: center;
}

.contact-card strong,
.contact-card small {

    display: block;
}

.contact-card strong {

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.contact-card small {

    font-size: 12px;

    color: #737b80;
}


/* FORM */

.contact-form-wrap {

    background: #f7f7f5;

    padding: 30px;
}

#contactForm {

    display: grid;

    gap: 12px;
}

#contactForm input,
#contactForm textarea {

    width: 100%;

    border: 1px solid #ddd;

    background: #fff;

    padding: 14px;

    outline: none;

    resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {

    border-color:
        #a28267;
}


/* =====================================================
   MAPA
===================================================== */

.map-section {

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        1fr 2fr;

    gap: 30px;

    align-items: center;
}

.map-section > div:first-child {

    padding: 20px;
}

.map-section p:not(.eyebrow) {

    font-size: 13px;

    color: #737b80;

    line-height: 1.8;
}

.map-frame {

    height: 420px;
}

.map-frame iframe {

    width: 100%;

    height: 100%;

    border: 0;
}


/* =====================================================
   CARRINHO
===================================================== */

.cart-panel {

    position: fixed;

    right: 0;
    top: 0;
    bottom: 0;

    width:
        min(430px,94vw);

    background: #fff;

    z-index: 2001;

    transform:
        translateX(105%);

    transition: .25s;

    box-shadow:
        -10px 0 40px rgba(0,0,0,.16);

    display: flex;

    flex-direction: column;
}

.cart-panel.open {

    transform:
        translateX(0);
}

.cart-overlay {

    display: none;

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.45);

    z-index: 2000;
}

.cart-overlay.show {

    display: block;
}

.cart-header {

    padding: 25px;

    border-bottom:
        1px solid #eee;

    display: flex;

    justify-content:
        space-between;
}

.cart-header h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-weight: 500;
}

.cart-header button {

    border: 0;

    background: none;

    font-size: 30px;
}

.cart-items {

    padding: 20px;

    overflow: auto;

    flex: 1;
}

.empty-cart {

    text-align: center;

    color: #888;

    padding: 50px 10px;

    font-size: 13px;
}

.cart-item {

    display: grid;

    grid-template-columns:
        70px 1fr auto;

    gap: 12px;

    align-items: center;

    padding: 12px 0;

    border-bottom:
        1px solid #eee;
}

.cart-item img {

    width: 70px;
    height: 70px;

    object-fit: cover;
}

.cart-item h4 {

    font-size: 12px;
}

.cart-item small {

    color: #888;

    display: block;

    margin-top: 5px;
}

.qty-controls {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;
}

.qty-controls button {

    width: 25px;
    height: 25px;

    border:
        1px solid #ddd;

    background: #fff;
}

.remove-item {

    border: 0;

    background: none;

    color: #a44;

    font-size: 11px;
}

.cart-footer {

    padding: 20px;

    border-top:
        1px solid #eee;

    display: grid;

    gap: 10px;
}

.cart-total {

    display: flex;

    justify-content:
        space-between;

    padding-bottom: 7px;
}

.full {

    width: 100%;
}


/* =====================================================
   ZOOM
===================================================== */

.zoom-modal {

    position: fixed;

    inset: 0;

    background:
        rgba(15,17,19,.94);

    z-index: 3000;

    display: none;

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

    padding: 35px;

    overflow: hidden;

    user-select: none;
}

.zoom-modal.open {

    display: flex;
}

.zoom-modal img {

    position: absolute;

    left: 50%;
    top: 50%;

    width: auto;
    height: auto;

    max-width: calc(100vw - 90px);
    max-height: calc(100vh - 120px);

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

    display: block;

    transform:
        translate(-50%, -50%)
        scale(1);

    transform-origin: center center;

    box-shadow:
        0 10px 50px rgba(0,0,0,.5);

    cursor: zoom-in;

    user-select: none;

    -webkit-user-drag: none;

    will-change: transform;
}

.zoom-close {

    position: absolute;

    right: 30px;
    top: 20px;

    border: 0;

    background: none;

    color: #fff;

    font-size: 42px;

    z-index: 10;
}

.zoom-caption {

    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: white;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

    z-index: 10;

    pointer-events: none;
}

@media(max-width:600px) {

    .product-image-wrap {
        height: 300px;
    }

    .zoom-modal {
        padding: 20px 10px 55px;
    }

    .zoom-modal img {
        max-width: calc(100vw - 30px);
        max-height: calc(100vh - 100px);
    }

    .zoom-close {
        right: 12px;
        top: 8px;

        font-size: 38px;
    }

}


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

.floating-socials {

    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 1500;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.float-btn {

    width: 53px;
    height: 53px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    font-size: 27px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.2);
}

.whatsapp {

    background: #25D366;
}

.instagram {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #e1306c,
            #f59e0b
        );
}


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

.site-footer {

    background: #252b2f;

    color: #d8dcde;

    padding:
        50px 30px 20px;
}

.footer-inner {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 35px;
}

.footer-brand {

    display: flex;

    gap: 12px;

    align-items: center;
}

.footer-brand strong,
.footer-brand small {

    display: block;
}

.footer-brand strong {

    font-size: 12px;

    letter-spacing: 3px;
}

.footer-brand small {

    font-size: 10px;

    color: #9fa5a8;

    margin-top: 6px;
}

.footer-links {

    display: grid;

    gap: 10px;
}

.footer-links a,
.footer-contact a {

    font-size: 11px;

    color: #b8bec1;
}

.footer-links a:hover,
.footer-contact a:hover {

    color: #fff;
}

.footer-contact {

    display: grid;

    gap: 10px;
}

.copyright {

    max-width: 1250px;

    margin:
        45px auto 0;

    padding-top: 20px;

    border-top:
        1px solid #3c4246;

    font-size: 10px;

    color: #9fa5a8;

    line-height: 1.7;
}


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

@media(max-width:900px) {

    .header-inner {

        padding: 0 18px;

        gap: 15px;
    }

    .logo {

        min-width: auto;
    }

    .logo-text {

        display: none;
    }

    .mobile-menu-btn {

        display: block;

        order: 2;

        margin-left: auto;
    }

    .main-nav {

        display: none;

        position: absolute;

        left: 0;
        right: 0;

        top: 88px;

        height: auto;

        background: #fff;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-bottom:
            1px solid #ddd;
    }

    .main-nav.open {

        display: flex;
    }

    .nav-link {

        height: 52px;

        padding: 0 22px;

        border-bottom:
            1px solid #eee;
    }

    .catalog-wrap {

        height: auto;

        display: block;
    }

    .catalog-wrap .nav-link {

        height: 52px;
    }

    .catalog-dropdown {

        position: relative;

        top: 0;
        left: 0;

        transform: none;

        width: 100%;

        box-shadow: none;

        border-top: 0;

        border-bottom:
            1px solid #eee;

        padding: 15px 22px;
    }

    .catalog-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 0 20px;
    }

    .catalog-grid a {

        font-size: 11px;
    }

    .hero {

        min-height: 650px;
    }

    .hero-content {

        margin-left: 0;

        padding: 45px 25px;
    }

    .products-grid {

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

    .about-grid,
    .contact-grid,
    .map-section,
    .footer-inner {

        grid-template-columns:
            1fr;
    }
}


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

@media(max-width:600px) {

    .site-header,
    .header-inner {

        height: 72px;
    }

    .main-nav {

        top: 72px;
    }

    .search-box {

        top: 72px;
    }

    .header-actions {

        margin-left: auto;
    }

    .hero h1 {

        font-size: 42px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .page-heading h1 {

        font-size: 42px;
    }

    .inner-page {

        padding:
            55px 18px 75px;
    }

    .products-grid {

        grid-template-columns:
            1fr;
    }

    .product-image-wrap {

        height: 300px;
    }

    .map-frame {

        height: 330px;
    }

    .floating-socials {

        right: 14px;

        bottom: 14px;
    }

    .float-btn {

        width: 48px;

        height: 48px;
    }
}
/* =====================================================
   CORREÇÃO DEFINITIVA - CELULAR
   NÃO ALTERA O DESKTOP
===================================================== */

@media (max-width: 600px) {

    /* Impede qualquer elemento de criar rolagem horizontal */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* HEADER */
    .site-header {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .logo {
        width: auto;
        min-width: 0;
        max-width: 180px;
        padding-left: 0;
    }

    .logo-memorias {
        width: 150px;
        max-width: 100%;
    }

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

    .hero {
        width: 100%;
        max-width: 100%;
        min-height: calc(100vh - 72px);
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 55px 27px 60px;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* TEXTO PEQUENO */
    .eyebrow {
        width: 100%;
        max-width: 100%;
        font-size: 10px;
        letter-spacing: 3px;
        line-height: 1.5;
        overflow-wrap: break-word;
    }

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

    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: 38px;
        line-height: 1.08;

        margin: 0 0 22px;

        white-space: normal !important;

        overflow: visible;

        overflow-wrap: anywhere;

        word-break: normal;

        hyphens: none;

        box-sizing: border-box;
    }

    /* =================================================
       TEXTO DO HERO
    ================================================= */

    .hero p {
        width: 100%;
        max-width: 100%;

        font-size: 13px;
        line-height: 1.6;

        margin: 0;

        white-space: normal !important;

        overflow-wrap: break-word;

        word-break: normal;

        box-sizing: border-box;
    }

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

    .hero-buttons {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;

        margin-top: 28px;

        box-sizing: border-box;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;

        min-height: 48px;

        padding: 0 15px;

        box-sizing: border-box;

        white-space: normal;
    }

    /* =================================================
       PÁGINAS INTERNAS
    ================================================= */

    .site-page {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .inner-page {
        width: 100%;
        max-width: 100%;

        padding: 50px 18px 70px;

        box-sizing: border-box;
        overflow: hidden;
    }

    .page-heading {
        width: 100%;
        max-width: 100%;
    }

    .page-heading h1 {
        width: 100%;
        max-width: 100%;

        font-size: 40px;
        line-height: 1.1;

        white-space: normal !important;

        overflow-wrap: break-word;

        word-break: normal;
    }

    .page-heading p {
        width: 100%;
        max-width: 100%;

        font-size: 13px;
        line-height: 1.7;

        overflow-wrap: break-word;
    }

    /* =================================================
       CATÁLOGO
    ================================================= */

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

        grid-template-columns: 1fr;

        box-sizing: border-box;
    }

    .product-card {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .product-image-wrap {
        width: 100%;
        max-width: 100%;

        height: 300px;

        box-sizing: border-box;
    }

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

    .product-info {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .product-info h3 {
        font-size: 21px;
        line-height: 1.25;

        overflow-wrap: break-word;
    }

    .product-actions {
        width: 100%;
        max-width: 100%;
    }

    .product-actions button {
        min-width: 0;
        max-width: 100%;
    }

    /* =================================================
       FILTROS
    ================================================= */

    .filters {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .filter {
        max-width: 100%;
        white-space: normal;
    }

    /* =================================================
       CONTATO
    ================================================= */

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

        grid-template-columns: 1fr;

        box-sizing: border-box;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .contact-card small,
    .contact-card strong {
        overflow-wrap: break-word;
    }

    .contact-form-wrap {
        width: 100%;
        max-width: 100%;

        padding: 22px;

        box-sizing: border-box;
    }

    #contactForm {
        width: 100%;
        max-width: 100%;
    }

    #contactForm input,
    #contactForm textarea {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    /* =================================================
       MAPA
    ================================================= */

    .map-section {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        box-sizing: border-box;
    }

    .map-frame {
        width: 100%;
        max-width: 100%;

        height: 330px;

        box-sizing: border-box;
    }

    .map-frame iframe {
        width: 100%;
        max-width: 100%;
    }

    /* =================================================
       RODAPÉ
    ================================================= */

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

        box-sizing: border-box;
    }

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

        grid-template-columns: 1fr;

        box-sizing: border-box;
    }

    /* =================================================
       CARRINHO
    ================================================= */

    .cart-panel {
        width: min(430px, 94vw);
        max-width: 94vw;
    }

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

    .main-nav {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    /* =================================================
       BOTÕES WHATSAPP / INSTAGRAM
    ================================================= */

    .floating-socials {
        right: 12px;
        bottom: 15px;
    }

}


/* MEMÓRIAS CONCEPT 2.1 — logo original enviada pelo cliente */
.logo { justify-content: flex-start; }
.logo-memorias { width: 180px; height: auto; display: block; object-fit: contain; filter: none; flex-shrink: 0; }
.map-section { width: 100%; }
.map-frame { width: 100%; min-height: 420px; overflow: hidden; }
.map-frame iframe { display: block; width: 100%; height: 420px; min-height: 420px; border: 0; }
@media (max-width: 700px) { .map-frame, .map-frame iframe { height: 340px; min-height: 340px; } .logo-memorias { width: 155px; } }


/* 2.1 — logo enviada pelo cliente e mapa */
.logo-memorias { width: 180px !important; height: auto !important; display: block !important; object-fit: contain !important; filter: none !important; flex-shrink: 0; }
.map-frame { width: 100% !important; min-height: 420px !important; overflow: hidden; }
.map-frame iframe { width: 100% !important; height: 420px !important; min-height: 420px !important; border: 0 !important; display: block !important; }
@media (max-width:700px){ .logo-memorias{width:155px !important;} .map-frame,.map-frame iframe{height:340px !important;min-height:340px !important;} }

