/* =========================================================
   OPUS
   PINTURA NUMERADA TERAPÊUTICA
   STYLE.CSS
========================================================= */


/* =========================================================
   01 — PALETA
========================================================= */

:root {

    --cream: #F5F4EE;
    --cream-dark: #DBBA95;

    --blue: #006837;
    --blue-dark: #004F2A;

    --yellow: #FBB03B;
    --yellow-light: #FFD28A;

    --terracotta: #F05A24;
    --terracotta-dark: #9A3D1B;

    --sage: #00A99D;
    --sage-dark: #006837;

    --ink: #503414;
    --muted: #666666;

    --white: #ffffff;

    --border: rgba(80,52,20,.12);

    --shadow:
        0 18px 45px rgba(80,52,20,.10);
}


/* =========================================================
   02 — RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    background: var(--cream);

    color: var(--ink);

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    overflow-x: hidden;
}

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

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

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   03 — TIPOGRAFIA
========================================================= */

h1,
h2,
h3,
h4 {

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-weight: 600;
}


/* =========================================================
   04 — HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 78px;

    z-index: 1000;

    /* Fundo oficial da navbar inspirado diretamente no fundo da nova identidade OPUS */
    background-image:
        linear-gradient(rgba(255, 247, 232, .18), rgba(255, 247, 232, .18)),
        url("../images/opus-nav-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(3px);

    border-bottom:
        1px solid rgba(66,34,13, .08);
}


.nav {

    width: min(1200px, 92%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    position: relative;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 39px;

    line-height: 1;

    letter-spacing: 5px;

    color: var(--ink);
}


.logo::after {

    content: "";

    position: absolute;

    left: 3px;

    bottom: -5px;

    width: 42px;

    height: 7px;

    background: var(--yellow);

    border-radius: 50%;

    transform: rotate(-4deg);

    z-index: -1;
}


.logo span {
    color: var(--terracotta);
}


/* MENU */

.nav-links {

    display: flex;

    align-items: center;

    gap: 34px;

    color: var(--muted);

    font-size: 13px;
}


.nav-links a {

    position: relative;

    transition: .25s;
}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;

    height: 3px;

    background: var(--yellow);

    border-radius: 50%;

    transform: scaleX(0);

    transition: .25s;
}


.nav-links a:hover {

    color: var(--terracotta);
}


.nav-links a:hover::after {

    transform: scaleX(1);
}


/* =========================================================
   05 — CARRINHO DO HEADER
========================================================= */

.cart-button {

    display: flex;

    align-items: center;

    gap: 9px;

    border: none;

    padding: 11px 17px;

    background: var(--sage);

    color: white;

    border-radius:
        20px 27px 19px 25px;

    font-weight: 600;

    transition: .3s;

    box-shadow:
        0 7px 18px rgba(0,79,42, .18);
}


.cart-button:hover {

    background: var(--terracotta);

    transform:
        translateY(-2px)
        rotate(-1deg);
}


.cart-button strong {

    width: 21px;
    height: 21px;

    display: flex;

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

    background: var(--yellow);

    color: var(--ink);

    border-radius: 50%;

    font-size: 10px;
}


/* =========================================================
   06 — HERO
========================================================= */

.hero {

    position: relative;

    margin-top: 78px;

    min-height: 650px;

    overflow: visible;

    background:

        linear-gradient(
            110deg,
            rgba(66,34,13, .7),
            rgba(0,79,42, .35),
            rgba(217, 120, 95, .18)
        ),

        url("https://images.unsplash.com/photo-1547891654-e66ed7ebb968?auto=format&fit=crop&w=1800&q=90");

    background-size: cover;

    background-position: center;
}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            100deg,
            rgba(66,34,13,.55),
            transparent 60%
        );

    z-index: 1;
}


.hero-content {

    position: relative;

    z-index: 5;

    width: min(1200px, 92%);

    min-height: 650px;

    margin: auto;

    display: flex;

    align-items: center;
}


.hero-content > div {

    max-width: 650px;
}


.hero .eyebrow {

    display: inline-block;

    padding: 8px 14px;

    margin-bottom: 20px;

    background: var(--terracotta);

    color: white;

    border-radius:
        24px 16px 22px 18px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    transform: rotate(-2deg);
}


.hero h1 {

    color: white;

    font-size:
        clamp(62px, 7vw, 100px);

    line-height: .84;

    margin-bottom: 30px;

    text-shadow:
        2px 3px 0 rgba(66,34,13,.15);
}


.hero-description {

    max-width: 530px;

    color: white;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* =========================================================
   07 — BOTÕES
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: none;

    padding: 15px 25px;

    border-radius:
        22px 28px 20px 30px;

    font-weight: 600;

    transition: .3s;
}


.button-primary {

    background: var(--terracotta);

    color: white;

    box-shadow:
        0 10px 22px rgba(154,61,27,.2);
}


.button-primary:hover {

    background: var(--yellow);

    color: var(--ink);

    transform:
        translateY(-3px)
        rotate(-1deg);
}


/* =========================================================
   08 — SETAS DO CARROSSEL
========================================================= */

.hero-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 52px;
    height: 52px;

    border:
        1px solid rgba(255,255,255,.7);

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

    color: white;

    border-radius:
        48% 52% 44% 56%;

    transform: translateY(-50%);

    transition: .25s;
}


.hero-arrow:hover {

    background: var(--yellow);

    color: var(--ink);

    border-color: var(--yellow);

    transform:
        translateY(-50%)
        rotate(-4deg);
}


.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}


/* =========================================================
   09 — DOTS DO CARROSSEL
========================================================= */

.hero-dots {

    position: absolute;

    left: 5%;

    bottom: 30px;

    z-index: 10;

    display: flex;

    gap: 8px;
}


.hero-dot {

    width: 30px;
    height: 6px;

    border: none;

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

    border-radius: 50%;
}


.hero-dot.active {

    width: 55px;

    background: var(--yellow);

    transform: rotate(-2deg);
}


/* =========================================================
   TRANSIÇÃO: HERO (CARROSSEL) -> INTRO (CREME)
========================================================= */




.intro h2 {

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1;

    margin: 14px 0 22px;
}


.intro p {

    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;
}


/* PEQUENA MANCHA */

.intro::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -59px;
    width: 100vw; /* Expande para ocupar toda a largura da tela */
    height: 60px;
    transform: translateX(-50%); /* Centraliza em relação à tela */
    background-color: var(--cream);
    
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    
    z-index: 20;
    pointer-events: none;
}

/* =========================================================
   11 — BENEFÍCIOS
========================================================= */

.benefits {

    position: relative;

    z-index: 2;

    padding: 140px 0 125px;

    background: var(--blue);

    overflow: visible;
}

/* =========================================================
   TRANSIÇÕES COM PINCELADA REAL
========================================================= */

/* 1. Transição: Hero -> Benefícios (Azul) */
.benefits::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background-color: var(--blue);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 20;
    pointer-events: none;
}


.benefits-grid {

    position: relative;

    z-index: 5;

    width: min(1100px, 90%);

    margin: auto;

    display: grid;

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

    gap: 30px;
}


.benefit {

    padding: 35px 25px;

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

    border-radius:
        35px 20px 38px 27px;

    text-align: center;

    box-shadow:
        0 14px 35px rgba(66,34,13,.08);

    transition: .3s;
}


.benefit:nth-child(2) {

    transform:
        translateY(20px);
}


.benefit:nth-child(3) {

    transform:
        translateY(-5px);
}


.benefit:hover {

    transform:
        translateY(-8px)
        rotate(-1deg);
}


.benefit-icon {

    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;

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

    background: var(--yellow);

    color: var(--ink);

    border-radius:
        50% 43% 55% 45%;

    font-size: 27px;
}


.benefit:nth-child(2) .benefit-icon {

    background: var(--terracotta);

    color: white;
}


.benefit:nth-child(3) .benefit-icon {

    background: var(--sage);

    color: white;
}


.benefit h3 {

    font-size: 29px;

    margin-bottom: 10px;
}


.benefit p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   12 — TRANSIÇÃO PRINCIPAL
   AZUL → CREME
========================================================= */

.collection {

    position: relative;

    z-index: 3;

    margin-top: 0;

    padding-top: 155px;

    background: var(--cream);

    overflow: visible;
}

/* 2. Transição: Benefícios -> Coleção (Creme) */
.collection::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background-color: var(--cream);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 20;
    pointer-events: none;
}


/* =========================================================
   13 — CABEÇALHO DA COLEÇÃO
========================================================= */

.section-heading {

    position: relative;

    z-index: 30;

    width: min(1200px, 90%);

    margin:
        0 auto 45px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 35px;
}


.section-label {

    color: var(--terracotta);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 10px;

    font-weight: 700;
}


.section-heading h2 {

    font-size:
        clamp(44px, 5vw, 64px);

    line-height: 1;

    margin-top: 10px;
}


.section-heading > p {

    max-width: 360px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   14 — GRID DE PRODUTOS
========================================================= */

.product-grid {

    position: relative;

    z-index: 30;

    width: min(1200px, 90%);

    margin: auto;

    display: grid;

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

    gap: 24px;
}


.product-card {

    position: relative;

    background: white;

    border:
        1px solid rgba(66,34,13,.08);

    border-radius:
        20px 28px 22px 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .35s;
}


.product-card:nth-child(2) {

    transform:
        translateY(18px);
}


.product-card:nth-child(3) {

    transform:
        translateY(-5px);
}


.product-card:nth-child(4) {

    transform:
        translateY(20px);
}


.product-card:hover {

    transform:
        translateY(-10px)
        rotate(-1deg);
}


/* =========================================================
   15 — IMAGEM DO PRODUTO
========================================================= */

.product-image {

    position: relative;

    height: 310px;

    overflow: hidden;

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


.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}


.product-card:hover
.product-image img {

    transform: scale(1.06);
}


/* ETIQUETA */

.product-tag {

    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;

    padding: 7px 12px;

    background: var(--yellow);

    color: var(--ink);

    border-radius:
        18px 14px 20px 12px;

    font-size: 9px;

    letter-spacing: 1px;

    font-weight: 700;

    transform: rotate(-3deg);
}


/* =========================================================
   16 — INFORMAÇÕES DO PRODUTO
========================================================= */

.product-info {

    padding: 22px;
}


.product-category {

    color: var(--terracotta);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}


.product-info h3 {

    font-size: 28px;

    margin: 7px 0;
}


.product-info p {

    min-height: 58px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;
}


.product-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;
}


.product-footer strong {

    font-size: 16px;
}


.product-footer button {

    border: none;

    padding: 10px 15px;

    background: var(--sage);

    color: white;

    border-radius:
        18px 22px 17px 20px;

    font-size: 11px;

    font-weight: 600;

    transition: .25s;
}


.product-footer button:hover {

    background: var(--terracotta);

    transform:
        translateY(-2px)
        rotate(-2deg);
}


/* =========================================================
   17 — TRANSIÇÃO CREME → AMARELO
========================================================= */

.manifesto {

    position: relative;

    z-index: 2;

    margin-top: 110px;

    padding: 150px 20px 125px;

    background: var(--yellow);

    text-align: center;

    overflow: visible;
}

/* 3. Transição: Coleção -> Manifesto (Amarelo) */
.manifesto::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background-color: var(--yellow);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: scaleX(-1);
    z-index: 20;
    pointer-events: none;
}


.manifesto blockquote {

    position: relative;

    z-index: 20;

    width: min(850px, 90%);

    margin: auto;

    font-size:
        clamp(40px, 5vw, 65px);

    line-height: 1.05;
}


.manifesto span {

    position: relative;

    z-index: 20;

    display: block;

    margin-top: 25px;

    color: var(--terracotta);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   18 — NEWSLETTER
========================================================= */

.newsletter {

    position: relative;

    z-index: 2;

    padding: 150px 20px 125px;

    background: var(--cream);

    text-align: center;

    overflow: visible;
}

/* 4. Transição: Manifesto -> Newsletter (Creme) */
.newsletter::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background-color: var(--cream);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,110 450,-20 700,80 C900,20 1050,100 1200,10 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 20;
    pointer-events: none;
}


.newsletter > * {

    position: relative;

    z-index: 20;
}


.newsletter h2 {

    font-size: 58px;

    margin: 12px 0;
}


.newsletter p {

    max-width: 500px;

    margin: 0 auto 25px;

    color: var(--muted);

    line-height: 1.7;
}


.newsletter-form {

    width: min(520px, 100%);

    margin: auto;

    display: flex;

    gap: 8px;
}


.newsletter-form input {

    flex: 1;

    padding: 14px 18px;

    border:
        2px solid var(--border);

    background: white;

    border-radius:
        22px 28px 20px 25px;

    outline: none;
}


.newsletter-form input:focus {

    border-color: var(--blue-dark);
}


/* =========================================================
   19 — FOOTER
========================================================= */

footer {

    position: relative;

    z-index: 2;

    margin-top: 80px;

    padding: 140px 0 25px;

    background: var(--sage);

    color: white;

    overflow: visible;
}

/* 5. Transição: Newsletter -> Footer (Sage/Verde) */
footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 100%;
    height: 60px;
    background-color: var(--sage);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,90 350,-40 500,60 C650,140 900,10 1200,40 L1200,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 20;
    pointer-events: none;
}


.footer-container {

    position: relative;

    z-index: 20;

    width: min(1200px, 90%);

    margin: auto;

    display: grid;

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

    gap: 50px;
}


.footer-logo {

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 42px;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.footer-brand p {

    max-width: 300px;

    color:
        rgba(255,255,255,.8);

    font-size: 13px;

    line-height: 1.7;
}


footer h4 {

    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


footer a {

    display: block;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.8);

    font-size: 12px;

    transition: .2s;
}


footer a:hover {

    color: white;

    transform: translateX(3px);
}


.copyright {

    position: relative;

    z-index: 20;

    width: min(1200px, 90%);

    margin: 55px auto 0;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.25);

    color:
        rgba(255,255,255,.65);

    font-size: 10px;
}


/* =========================================================
   20 — CARRINHO LATERAL
========================================================= */

.cart-overlay {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(66,34,13,.45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}


.cart-overlay.open {

    opacity: 1;

    visibility: visible;
}


.cart {

    position: absolute;

    top: 0;
    right: 0;

    width: min(450px, 100%);

    height: 100%;

    display: flex;

    flex-direction: column;

    background: var(--cream);

    border-left:
        5px solid var(--yellow);

    transform:
        translateX(100%);

    transition: .4s;
}


.cart-overlay.open .cart {

    transform:
        translateX(0);
}


/* CABEÇALHO */

.cart-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

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


.cart-header h2 {

    font-size: 32px;
}


.cart-close {

    width: 36px;
    height: 36px;

    border: none;

    background: var(--terracotta);

    color: white;

    border-radius:
        50% 45% 55% 50%;

    font-size: 20px;
}


/* ITENS */

.cart-items {

    flex: 1;

    padding: 20px;

    overflow-y: auto;
}


.cart-empty {

    padding: 80px 20px;

    text-align: center;

    color: var(--muted);
}


.cart-empty div {

    margin-bottom: 15px;

    font-size: 45px;

    color: var(--terracotta);
}


/* RODAPÉ */

.cart-footer {

    padding: 25px;

    background: white;

    border-top:
        1px solid var(--border);
}


.cart-footer > div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}


.cart-footer strong {

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 28px;
}


.cart-checkout {

    width: 100%;
}


/* =========================================================
   21 — RESPONSIVO
========================================================= */

@media (max-width: 1000px) {

    .product-grid {

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


/* =========================================================
   22 — TABLET
========================================================= */

@media (max-width: 800px) {

    .nav-links {
        display: none;
    }


    .benefits-grid {

        grid-template-columns: 1fr;
    }


    .benefit:nth-child(2),
    .benefit:nth-child(3) {

        transform: none;
    }


    .section-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .footer-container {

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


/* =========================================================
   23 — CELULAR
========================================================= */

@media (max-width: 600px) {

    .header {

        height: 70px;
    }


    .hero {

        margin-top: 70px;

        min-height: 600px;
    }


    .hero-content {

        min-height: 600px;
    }


    .hero h1 {

        font-size: 60px;
    }


    .hero-arrow {

        display: none;
    }


    .product-grid {

        grid-template-columns: 1fr;
    }


    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4) {

        transform: none;
    }


    .product-image {

        height: 350px;
    }


    .footer-container {

        grid-template-columns: 1fr;
    }


    .newsletter-form {

        flex-direction: column;
    }


    .newsletter-form button {

        width: 100%;
    }


    .intro {

        padding:
            90px 0;
    }


    .benefits {

        padding-bottom: 110px;
    }


    .collection {

        padding-top: 135px;
    }


    .manifesto {

        padding-top: 125px;
    }

    .benefits::before,
    .collection::before,
    .manifesto::before,
    .newsletter::before,
    footer::before {

        top: -60px;

        height: 70px;
    }
} /* =====================================================
   OPUS — CHECKOUT ARTÍSTICO
===================================================== */

.checkout-page {
    position: relative;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(243, 201, 105, 0.25),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(139, 201, 216, 0.20),
            transparent 30%
        ),
        #F5F4EE;

    padding: 90px 5vw 120px;

    /* Não usar overflow:hidden aqui: isso impede position:sticky
       de acompanhar a rolagem no resumo do checkout. */
    overflow: clip;
}


/* pequena pincelada decorativa no topo */

.checkout-page::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    background:
        url("../images/brush-cream.svg")
        top center / 100% 100%
        no-repeat;

    transform: rotate(180deg);

    opacity: 0.9;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.checkout-container {
    position: relative;

    z-index: 2;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 55px;

    align-items: start;
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.checkout-form {
    background: rgba(255, 255, 255, 0.72);

    border-radius: 32px;

    padding: 50px;

    box-shadow:
        0 25px 60px rgba(47, 64, 56, 0.08);

    border:
        1px solid rgba(47, 64, 56, 0.06);
}

.checkout-form .section-label {
    color: #F05A24;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.checkout-form h1 {
    font-family: "Montserrat", Georgia, serif;

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

    line-height: 0.92;

    font-weight: 500;

    color: #42220D;

    letter-spacing: -2px;

    max-width: 650px;

    margin-bottom: 22px;
}

.checkout-intro {
    color: #727b75;

    font-size: 15px;

    line-height: 1.7;

    max-width: 560px;

    margin-bottom: 45px;
}


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

.checkout-section {
    position: relative;

    padding-top: 32px;

    margin-top: 30px;

    border-top:
        1px solid rgba(47, 64, 56, 0.10);
}

.checkout-section h2 {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 30px;

    font-weight: 500;

    color: #42220D;

    margin-bottom: 25px;
}


/* =====================================================
   CAMPOS
===================================================== */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    color: #5E5E5B;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;

    height: 52px;

    padding:
        0
        17px;

    border:
        1px solid
        rgba(47, 64, 56, 0.12);

    border-radius: 15px;

    background: #F5F4EE;

    color: #42220D;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input::placeholder {
    color: #a3aaa5;
}

.form-group input:focus,
.form-group select:focus {
    background: white;

    border-color: #0B7A4A;

    box-shadow:
        0 0 0 4px
        rgba(113, 148, 123, 0.10);
}


/* =====================================================
   PAGAMENTO
===================================================== */

.payment-options {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.payment-option {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px 18px;

    border:
        1px solid
        rgba(47, 64, 56, 0.10);

    border-radius: 17px;

    background: #F5F4EE;

    cursor: pointer;

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

.payment-option:hover {
    transform: translateX(3px);

    border-color: #0B7A4A;

    background: white;
}

.payment-option input {
    width: 18px;
    height: 18px;

    accent-color: #0B7A4A;
}

.payment-option div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.payment-option strong {
    font-size: 14px;

    color: #42220D;
}

.payment-option span {
    color: #858d88;

    font-size: 12px;
}


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

.checkout-submit {
    width: 100%;

    min-height: 58px;

    margin-top: 30px;

    border: none;

    border-radius: 999px;

    background: #F05A24;

    color: white;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.3px;

    box-shadow:
        0 12px 25px
        rgba(217, 120, 95, 0.20);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.checkout-submit:hover {
    background: #c7654d;

    transform: translateY(-3px);

    box-shadow:
        0 18px 32px
        rgba(217, 120, 95, 0.28);
}

.secure-message {
    text-align: center;

    color: #929994;

    font-size: 11px;

    margin-top: 15px;
}


/* =====================================================
   RESUMO DA COMPRA
===================================================== */

.checkout-summary {
    position: sticky;

    top: 30px;
}

.summary-card {
    position: relative;

    overflow: hidden;

    background: #0B7A4A;

    color: white;

    padding: 38px 34px 32px;

    border-radius:
        30px
        30px
        30px
        8px;

    box-shadow:
        0 25px 50px
        rgba(77, 105, 88, 0.20);
}


/* detalhe artístico */

.summary-card::after {
    content: "";

    position: absolute;

    right: -40px;
    bottom: -55px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background:
        rgba(243, 201, 105, 0.35);

    transform: rotate(-15deg);
}

.summary-card .section-label {
    position: relative;

    z-index: 2;

    color: #F7931E;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.summary-card h2 {
    position: relative;

    z-index: 2;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 42px;

    font-weight: 500;

    margin-bottom: 30px;
}


/* =====================================================
   PRODUTOS NO CHECKOUT
===================================================== */

.checkout-items {
    position: relative;

    z-index: 2;
}

.checkout-product {
    display: grid;

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

    gap: 14px;

    align-items: center;

    padding: 15px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.18);
}

.checkout-product img {
    width: 68px;
    height: 78px;

    object-fit: cover;

    border-radius: 13px;

    border:
        2px solid
        rgba(255, 255, 255, 0.35);
}

.checkout-product-info {
    min-width: 0;
}

.checkout-product-info h3 {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 500;

    margin-bottom: 4px;
}

.checkout-product-info span {
    display: block;

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

    font-size: 11px;
}

.checkout-product > strong {
    font-size: 13px;

    white-space: nowrap;
}


/* =====================================================
   VALORES
===================================================== */

.summary-line {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0 0;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 13px;
}

.summary-line strong {
    color: white;
}

.summary-total {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 24px;

    padding-top: 22px;

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

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 25px;
}

.summary-total strong {
    font-size: 29px;

    color: #F7931E;
}


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

.checkout-empty {
    text-align: center;

    padding: 35px 10px;
}

.checkout-empty > div {
    font-size: 35px;

    margin-bottom: 10px;
}

.checkout-empty p {
    color:
        rgba(255, 255, 255, 0.75);

    margin-bottom: 20px;
}


/* =====================================================
   CONTINUAR A COMPRAR
===================================================== */

.continue-shopping {
    display: inline-block;

    margin-top: 20px;

    color: #5E5E5B;

    font-size: 13px;

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

.continue-shopping:hover {
    color: #F05A24;

    transform: translateX(-4px);
}


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

@media (max-width: 900px) {

    .checkout-page {
        padding:
            70px
            25px
            100px;
    }

    .checkout-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .checkout-summary {
        position: relative;

        top: auto;
    }

}


@media (max-width: 600px) {

    .checkout-page {
        padding:
            55px
            16px
            80px;
    }

    .checkout-form {
        padding: 30px 22px;

        border-radius: 24px;
    }

    .checkout-form h1 {
        font-size: 47px;

        letter-spacing: -1px;
    }

    .checkout-section h2 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .summary-card {
        padding:
            30px
            22px;
    }

    .summary-card h2 {
        font-size: 37px;
    }

    .checkout-product {
        grid-template-columns:
            58px 1fr;

        gap: 12px;
    }

    .checkout-product img {
        width: 58px;
        height: 68px;
    }

    .checkout-product > strong {
        grid-column: 2;

        margin-top: -8px;
    }

}
.summary-card::after {
    display: none;
}
/* =====================================================
   OPUS — CARRINHO
===================================================== */

.cart-product {
    display: grid;

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

    gap: 15px;

    align-items: center;

    padding: 17px 0;

    border-bottom:
        1px solid
        rgba(47, 64, 56, 0.10);
}


/* imagem */

.cart-product-image {
    width: 72px;
    height: 82px;

    object-fit: cover;

    border-radius: 14px;

    display: block;
}


/* informações */

.cart-product-info {
    min-width: 0;
}

.cart-product-info h3 {
    margin: 0 0 5px;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.1;

    color: #42220D;
}

.cart-product-price {
    margin: 0 0 10px;

    color: #777f79;

    font-size: 12px;
}

.cart-product-image-custom {
    background: #f3ece4;
    border: 1px solid rgba(47, 64, 56, 0.08);
}

.cart-custom-details {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    margin: 0 0 8px;
}

.cart-custom-details span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #f7efe7;
    color: #8a756c;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    letter-spacing: .02em;
}


/* quantidade */

.cart-quantity {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 4px;

    border:
        1px solid
        rgba(47, 64, 56, 0.12);

    border-radius: 999px;

    background: #F5F4EE;
}

.cart-quantity button {
    width: 27px;
    height: 27px;

    border: none;

    border-radius: 50%;

    background: #e8eee7;

    color: #42220D;

    font-size: 17px;

    line-height: 1;

    cursor: pointer;

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

.cart-quantity button:hover {
    background: #d6e3d7;

    transform: scale(1.08);
}

.cart-quantity span {
    min-width: 17px;

    text-align: center;

    color: #42220D;

    font-size: 13px;

    font-weight: 600;
}


/* remover */

.cart-remove {
    border: none;

    background: transparent;

    color: #a3aaa5;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    padding: 5px;

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

.cart-remove:hover {
    color: #F05A24;

    transform: rotate(8deg) scale(1.1);
}


/* carrinho vazio */

.cart-empty {
    text-align: center;

    padding: 55px 20px;

    color: #7c857f;
}

.cart-empty > div {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 52px;

    color: #0B7A4A;

    margin-bottom: 10px;
}

.cart-empty p {
    margin: 0;

    font-size: 14px;
}


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

@media (max-width: 500px) {

    .cart-product {
        grid-template-columns:
            60px 1fr auto;

        gap: 10px;
    }

    .cart-product-image {
        width: 60px;
        height: 70px;
    }

    .cart-product-info h3 {
        font-size: 18px;
    }

    .cart-remove {
        font-size: 22px;
    }

}
/* =====================================================
   OPUS — PÁGINA DE COLEÇÃO
===================================================== */

.collection-page-header {
    position: relative;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        130px
        40px
        80px;

    text-align: center;
}


/* pequena etiqueta */

.collection-page-header .section-label {
    color: #F05A24;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 22px;
}


/* título */

.collection-page-header h1 {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size:
        clamp(55px, 7vw, 92px);

    line-height: 0.88;

    font-weight: 500;

    color: #42220D;

    letter-spacing: -3px;

    margin: 0 auto 28px;

    max-width: 850px;
}


/* texto */

.collection-page-header p {
    max-width: 570px;

    margin: 0 auto;

    color: #737d76;

    font-size: 15px;

    line-height: 1.8;
}


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

.collection-filters {
    max-width: 1100px;

    margin: 0 auto 55px;

    padding:
        0 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}


.filter-button {
    border: none;

    padding:
        11px
        22px;

    border-radius: 999px;

    background: transparent;

    border:
        1px solid
        rgba(47, 64, 56, 0.14);

    color: #59665f;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    cursor: pointer;

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

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

    border-color: #0B7A4A;

    color: #526d59;
}

.filter-button.active {
    background: #0B7A4A;

    border-color: #0B7A4A;

    color: white;

    box-shadow:
        0 8px 20px
        rgba(113, 148, 123, 0.18);
}


/* =====================================================
   GRELHA DE PRODUTOS
===================================================== */

.collection-products {
    max-width: 1200px;

    margin: 0 auto;

    padding:
        0 30px
        120px;

    display: grid;

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

    gap:
        75px
        35px;
}


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

.collection-product-card {
    position: relative;

    min-width: 0;
}


/* imagem */

.collection-product-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    border-radius:
        120px
        22px
        22px
        22px;

    background: #e9e4d9;

    text-decoration: none;
}


/* pincelada decorativa atrás da imagem */

.collection-product-image::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    left: -55px;
    top: -55px;

    border-radius: 50%;

    background: #F7931E;

    opacity: 0.65;

    z-index: 0;
}


/* imagem */

.collection-product-image img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s
        cubic-bezier(.2,.7,.2,1);
}


.collection-product-image:hover img {
    transform: scale(1.045);
}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.collection-product-info {
    padding:
        20px
        8px
        0;
}


.product-category {
    display: block;

    color: #F05A24;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    margin-bottom: 7px;
}


.collection-product-info h2 {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    color: #42220D;

    font-size: 34px;

    font-weight: 500;

    line-height: 1;

    margin: 0 0 18px;
}


/* =====================================================
   PREÇO + BOTÃO
===================================================== */

.collection-product-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.collection-product-bottom strong {
    color: #42220D;

    font-size: 15px;

    font-weight: 600;
}


.collection-product-bottom button {
    border: none;

    padding:
        12px
        21px;

    border-radius: 999px;

    background: #42220D;

    color: white;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.collection-product-bottom button:hover {
    background: #F05A24;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(217, 120, 95, 0.18);
}


/* =====================================================
   ALTERNÂNCIA ARTÍSTICA
===================================================== */

.collection-product-card:nth-child(2)
.collection-product-image {

    border-radius:
        22px
        120px
        22px
        22px;
}


.collection-product-card:nth-child(3)
.collection-product-image {

    border-radius:
        22px
        22px
        120px
        22px;
}


.collection-product-card:nth-child(4)
.collection-product-image {

    border-radius:
        22px
        22px
        22px
        120px;
}


/* =====================================================
   DECORAÇÕES COLORIDAS
===================================================== */

.collection-product-card:nth-child(2)
.collection-product-image::before {

    background: #8bc9d8;

    left: auto;

    right: -50px;
}


.collection-product-card:nth-child(3)
.collection-product-image::before {

    background: #F05A24;

    top: auto;

    bottom: -50px;
}


.collection-product-card:nth-child(4)
.collection-product-image::before {

    background: #0B7A4A;

    left: auto;

    right: -50px;

    top: auto;

    bottom: -50px;
}


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

@media (max-width: 800px) {

    .collection-page-header {
        padding:
            100px
            25px
            60px;
    }

    .collection-page-header h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }

    .collection-products {
        grid-template-columns: 1fr;

        padding:
            0 20px
            80px;

        gap: 55px;
    }

}


@media (max-width: 500px) {

    .collection-page-header {
        padding:
            80px
            18px
            50px;
    }

    .collection-page-header h1 {
        font-size: 50px;

        letter-spacing: -1.5px;
    }

    .collection-page-header p {
        font-size: 14px;
    }

    .collection-filters {
        padding: 0 15px;

        margin-bottom: 40px;
    }

    .filter-button {
        padding:
            9px
            16px;
    }

    .collection-product-info h2 {
        font-size: 30px;
    }

}
/* =====================================================
   OPUS — CARRINHO GLOBAL
===================================================== */

.cart-overlay {
    position: fixed !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(35, 48, 42, 0.35);

    z-index: 99999 !important;

    display: flex !important;

    justify-content: flex-end;
    align-items: stretch;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* quando abrir */

.cart-overlay.open {
    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;
}


/* painel */

.cart-panel {
    position: relative;

    width: min(440px, 92vw);

    height: 100%;

    background: #F5F4EE;

    padding: 35px 30px;

    box-sizing: border-box;

    overflow-y: auto;

    transform: translateX(100%);

    transition:
        transform 0.4s
        cubic-bezier(.22,.61,.36,1);

    box-shadow:
        -15px 0 50px
        rgba(47, 64, 56, 0.15);
}


/* painel aberto */

.cart-overlay.open .cart-panel {
    transform: translateX(0);
}


/* cabeçalho */

.cart-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        rgba(47, 64, 56, 0.10);
}


.cart-header h2 {
    margin: 5px 0 0;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 34px;

    font-weight: 500;

    color: #42220D;
}


.cart-close {
    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: #e8eee7;

    color: #42220D;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

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


.cart-close:hover {
    background: #F05A24;

    color: white;

    transform: rotate(8deg);
}


/* produtos */

.cart-items {
    padding: 10px 18px 20px;
}

/* O conteúdo do carrinho mantém a estética original, mas nunca encosta
   na borda do painel. */
.cart-product {
    padding-left: 4px;
    padding-right: 4px;
}


/* rodapé */

.cart-footer {
    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(47, 64, 56, 0.10);
}


.cart-total-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    color: #59665f;

    font-size: 14px;
}


.cart-total-row strong {
    color: #42220D;

    font-size: 21px;

    font-weight: 600;
}


/* botão finalizar */

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

    min-height: 52px;

    border: none;

    border-radius: 999px;

    background: #42220D;

    color: white;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

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


.cart-footer .button:hover {
    background: #F05A24;

    transform: translateY(-2px);
}


/* celular */

@media (max-width: 500px) {

    .cart-panel {
        width: 100%;

        padding:
            25px 20px;
    }

}
/* =====================================================
   OPUS — PÁGINA INDIVIDUAL DO PRODUTO
===================================================== */

.product-page {
    max-width: 1250px;

    margin: 0 auto;

    padding:
        80px 35px
        130px;
}


/* =====================================================
   VOLTAR
===================================================== */

.product-back {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 55px;

    color: #5E5E5B;

    text-decoration: none;

    font-size: 12px;

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


.product-back:hover {
    color: #F05A24;

    transform: translateX(-4px);
}


/* =====================================================
   GRID
===================================================== */

.product-detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.85fr);

    gap: 85px;

    align-items: center;
}


/* =====================================================
   ÁREA DA IMAGEM
===================================================== */

.product-image-area {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* forma decorativa */

.product-art-shape {
    position: absolute;

    width: 480px;
    height: 480px;

    border-radius:
        48%
        52%
        57%
        43%;

    background: #e8c969;

    transform:
        rotate(-12deg);

    opacity: 0.75;
}


/* segunda forma */

.product-art-shape::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -90px;
    bottom: -70px;

    border-radius:
        58%
        42%
        45%
        55%;

    background: #F05A24;

    opacity: 0.8;
}


/* imagem */

.product-image-wrapper {
    position: relative;

    z-index: 2;

    width: min(500px, 90%);

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius:
        28px
        150px
        28px
        28px;

    box-shadow:
        0 25px 60px
        rgba(47, 64, 56, 0.14);
}


.product-main-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;
}


.product-image-wrapper:hover
.product-main-image {
    transform: scale(1.035);
}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.product-information {
    padding:
        25px 0;
}


.product-information
.product-category {
    margin-bottom: 18px;
}


.product-information h1 {
    margin: 0;

    max-width: 550px;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size:
        clamp(58px, 6vw, 88px);

    line-height: 0.88;

    font-weight: 500;

    letter-spacing: -3px;

    color: #42220D;
}


.product-price {
    margin-top: 28px;

    color: #42220D;

    font-size: 22px;

    font-weight: 600;
}


.product-divider {
    width: 70px;

    height: 2px;

    margin:
        30px 0;

    background: #F05A24;
}


.product-description {
    max-width: 490px;

    color: #5E5E5B;

    font-size: 15px;

    line-height: 1.85;
}


/* =====================================================
   META
===================================================== */

.product-meta {
    display: flex;

    gap: 55px;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(47, 64, 56, 0.10);
}


.product-meta div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.product-meta span {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #F05A24;
}


.product-meta strong {
    font-size: 13px;

    color: #3f5048;

    font-weight: 500;
}


/* =====================================================
   COMPRA
===================================================== */

.product-purchase {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


/* quantidade */

.product-quantity {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 125px;

    height: 52px;

    padding: 0 7px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(47, 64, 56, 0.15);

    border-radius: 999px;
}


.product-quantity button {
    width: 36px;
    height: 36px;

    border: none;

    border-radius: 50%;

    background: #edf0e9;

    color: #42220D;

    font-size: 18px;

    cursor: pointer;

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


.product-quantity button:hover {
    background: #e8c969;

    transform: scale(1.05);
}


.product-quantity span {
    font-size: 13px;

    color: #42220D;
}


/* botão */

.product-add-button {
    min-height: 52px;

    padding:
        0 28px;

    border: none;

    border-radius: 999px;

    background: #42220D;

    color: white;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-add-button:hover {
    background: #F05A24;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(217, 120, 95, 0.2);
}


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

.product-note {
    margin-top: 25px;

    color: #89928c;

    font-size: 11px;

    line-height: 1.6;
}


.product-note:first-letter {
    color: #F05A24;
}


/* =====================================================
   PRODUTO NÃO ENCONTRADO
===================================================== */

.product-not-found {
    min-height: 60vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.product-not-found h1 {
    margin: 20px 0 10px;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 65px;

    font-weight: 500;

    color: #42220D;
}


.product-not-found p {
    color: #5E5E5B;

    margin-bottom: 30px;
}


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

@media (max-width: 900px) {

    .product-page {
        padding:
            55px 25px
            90px;
    }


    .product-detail {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .product-image-area {
        min-height: 520px;
    }


    .product-information h1 {
        font-size: 65px;
    }

}


@media (max-width: 550px) {

    .product-page {
        padding:
            35px 18px
            70px;
    }


    .product-back {
        margin-bottom: 30px;
    }


    .product-image-area {
        min-height: 400px;
    }


    .product-art-shape {
        width: 300px;
        height: 300px;
    }


    .product-image-wrapper {
        width: 88%;

        border-radius:
            22px
            100px
            22px
            22px;
    }


    .product-information h1 {
        font-size: 52px;

        letter-spacing: -1.5px;
    }


    .product-purchase {
        flex-direction: column;

        align-items: stretch;
    }


    .product-quantity {
        width: 100%;
    }


    .product-add-button {
        width: 100%;
    }


    .product-meta {
        gap: 30px;
    }

}
/* =====================================================
   OPUS — PERSONALIZAÇÃO
   EXPERIÊNCIA ARTÍSTICA
===================================================== */

.custom-product-section {
    position: relative;
    overflow: hidden;
    padding: 150px 7vw 170px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(242, 191, 180, .35),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(176, 203, 190, .38),
            transparent 30%
        ),
        #f7efe7;
}


/* =====================================================
   ONDA SUPERIOR
===================================================== */

.custom-product-section::before {
    content: "";
    position: absolute;

    top: -55px;
    left: -5%;
    width: 110%;
    height: 100px;

    background: #F5F4EE;

    border-radius:
        0 0 50% 50% / 0 0 100% 100%;

    transform: rotate(-1deg);
}


/* =====================================================
   MANCHA ARTÍSTICA
===================================================== */

.custom-product-section::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 180px;

    right: -80px;
    top: 180px;

    background:
        linear-gradient(
            120deg,
            rgba(205, 119, 103, .18),
            rgba(220, 176, 91, .12),
            rgba(118, 155, 135, .18)
        );

    filter: blur(3px);

    border-radius:
        58% 42% 65% 35% /
        45% 55% 45% 55%;

    transform:
        rotate(-12deg);

    pointer-events: none;
}


/* =====================================================
   CABEÇALHO
===================================================== */

.custom-product-header {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto 90px;

    text-align: center;
}


.custom-product-header .section-label {
    display: inline-block;

    margin-bottom: 20px;

    letter-spacing: .22em;

    font-size: 11px;

    color: #9b6b5d;
}


.custom-product-header h2 {
    margin: 0;

    font-family:
        "Montserrat",
        serif;

    font-size:
        clamp(52px, 7vw, 94px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -.035em;

    color: #42220D;
}


.custom-product-header h2 em {
    display: block;

    color: #F05A24;

    font-weight: 400;

    transform:
        rotate(-2deg);
}


.custom-product-header p {
    max-width: 560px;

    margin: 32px auto 0;

    font-size: 15px;

    line-height: 1.9;

    color: #766a64;
}


/* =====================================================
   LAYOUT
===================================================== */

.custom-product-layout {
    position: relative;
    z-index: 2;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(300px, .75fr)
        minmax(500px, 1.25fr);

    gap: 80px;

    align-items: center;
}


/* =====================================================
   TEXTO
===================================================== */

.custom-product-content {
    padding: 20px 0;
}


.custom-step {
    display: block;

    margin-bottom: 20px;

    font-size: 10px;

    letter-spacing: .22em;

    color: #a56d60;
}


.custom-product-content h3,
.custom-product-preview h3 {

    margin: 0;

    font-family:
        "Montserrat",
        serif;

    font-size: 45px;

    font-weight: 500;

    line-height: 1;

    color: #42220D;
}


.custom-product-content > p,
.custom-product-preview > p {

    max-width: 460px;

    margin: 25px 0 35px;

    font-size: 14px;

    line-height: 1.85;

    color: #766c66;
}


/* =====================================================
   UPLOAD
===================================================== */

.custom-upload-area {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 190px;

    max-width: 430px;

    padding: 35px;

    cursor: pointer;

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

    border:
        1px solid rgba(116, 92, 82, .18);

    border-radius:
        45% 55% 52% 48% /
        52% 44% 56% 48%;

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


.custom-upload-area:hover {

    transform:
        rotate(-1deg)
        translateY(-5px);

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

    box-shadow:
        0 25px 60px
        rgba(75, 54, 46, .10);
}


.custom-upload-icon {

    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 12px;

    border-radius: 50%;

    background: #d58b78;

    color: white;

    font-size: 25px;

    font-weight: 300;
}


.custom-upload-area strong {

    font-family:
        "Montserrat",
        serif;

    font-size: 25px;

    font-weight: 500;

    color: #463731;
}


.custom-upload-area > span {

    margin-top: 5px;

    font-size: 11px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: #9b8a82;
}


#custom-file-name {

    max-width: 250px;

    margin-top: 12px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 12px;

    color: #F05A24;
}


/* =====================================================
   NOTA
===================================================== */

.custom-product-note {

    display: flex;

    gap: 12px;

    align-items: flex-start;

    max-width: 400px;

    margin-top: 28px;

    font-size: 12px;

    line-height: 1.7;

    color: #8a7b74;
}


.custom-product-note span {

    font-size: 18px;

    color: #b66b5c;
}


/* =====================================================
   ÁREA DE PREVIEW
===================================================== */

.custom-product-preview {

    position: relative;
}


.custom-preview {

    position: relative;

    width: 100%;

    aspect-ratio: 1.15 / 1;

    margin-top: 30px;

    overflow: hidden;

    background: #e5ddd4;

    box-shadow:
        0 35px 80px
        rgba(59, 42, 34, .17);

    border-radius:
        3% 7% 4% 5% /
        5% 4% 7% 3%;
}


/* =====================================================
   ESTADO VAZIO
===================================================== */

.custom-empty {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: #8d7e76;

    background:
        linear-gradient(
            135deg,
            #e9dfd5,
            #f4ece4
        );
}


.custom-empty div {

    width: 70px;
    height: 70px;

    display: flex;

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

    border-radius: 50%;

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

    font-size: 30px;

    color: #b77969;
}


.custom-empty span {

    font-family:
        "Montserrat",
        serif;

    font-size: 22px;

}


/* =====================================================
   COMPARADOR
===================================================== */

.custom-comparison {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.custom-original-image,
.custom-artwork-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.custom-original-image {

    filter:
        saturate(.95)
        contrast(.96);
}


.custom-artwork-image {

    filter:
        saturate(.7)
        contrast(1.08)
        brightness(1.05);

    clip-path:
        inset(0 0 0 50%);
}


/* =====================================================
   DIVISOR
===================================================== */

.custom-divider {

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 2px;

    transform:
        translateX(-50%);

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

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

    pointer-events: none;
}


.custom-divider span {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 48px;
    height: 48px;

    display: flex;

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

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

    border-radius: 50%;

    background: #F5F4EE;

    color: #80594f;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.15);

    font-size: 18px;
}


/* =====================================================
   LABELS
===================================================== */

.custom-preview-labels {

    display: flex;

    justify-content: space-between;

    margin-top: 15px;

    padding: 0 3px;

    font-size: 9px;

    letter-spacing: .2em;

    color: #8e7c73;
}


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

.custom-personalize-button {

    width: 100%;

    margin-top: 30px;

    padding: 18px 28px;

    border: none;

    cursor: pointer;

    border-radius: 100px;

    background: #a96051;

    color: white;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    letter-spacing: .12em;

    text-transform: uppercase;

    box-shadow:
        0 15px 35px
        rgba(169, 96, 81, .22);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.custom-personalize-button:hover {

    transform:
        translateY(-3px);

    background: #8f5044;

    box-shadow:
        0 20px 40px
        rgba(169, 96, 81, .28);
}


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

@media (max-width: 900px) {

    .custom-product-section {

        padding:
            110px 6vw 120px;

    }


    .custom-product-layout {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .custom-product-content {

        max-width: 600px;

        margin: auto;

        text-align: center;

    }


    .custom-product-content > p {

        margin-left: auto;
        margin-right: auto;

    }


    .custom-upload-area {

        margin-left: auto;
        margin-right: auto;

    }


    .custom-product-note {

        margin-left: auto;
        margin-right: auto;

        text-align: left;

    }


    .custom-product-preview {

        max-width: 700px;

        margin: auto;

    }

}


@media (max-width: 600px) {

    .custom-product-section {

        padding:
            90px 5vw 100px;

    }


    .custom-product-header {

        margin-bottom: 60px;

    }


    .custom-product-header h2 {

        font-size: 54px;

    }


    .custom-product-content h3,
    .custom-product-preview h3 {

        font-size: 38px;

    }


    .custom-preview {

        aspect-ratio: .9 / 1;

    }

}
/* =====================================================
   OPUS — COMPRA DO PRODUTO
===================================================== */

.product-purchase {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: 100%;
    margin-top: 30px;
}


/* QUANTIDADE */

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    height: 52px;
    padding: 0 16px;

    border: 1px solid rgba(40, 35, 30, 0.18);
    border-radius: 2px;

    background: rgba(255, 255, 255, 0.45);
}

.product-quantity button {
    width: 30px;
    height: 30px;

    border: none;
    background: transparent;

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

    cursor: pointer;

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

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

.product-quantity button:hover {
    transform: scale(1.15);
}

.product-quantity span {
    min-width: 18px;

    text-align: center;

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


/* BOTÃO ADICIONAR */

.product-add-button {
    height: 52px;

    padding: 0 30px;

    border: none;
    border-radius: 2px;

    background: #292720;
    color: #fff;

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

    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

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

.product-add-button:hover {
    transform: translateY(-2px);
    background: #454038;
}


/* MOBILE */

@media (max-width: 700px) {

    .product-purchase {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .product-add-button {
        flex: 1;
        min-width: 190px;
    }

}
/* =========================================================
   OPUS — PÁGINA PERSONALIZADA
   ESTILO DE PÁGINA DE PRODUTO
========================================================= */


/* =========================================================
   PRODUTO
========================================================= */

.custom-product {
    background: #F5F4EE;

    padding:
        90px 30px
        100px;
}


.custom-product-layout {
    max-width: 1240px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   GALERIA / ESQUERDA
========================================================= */

.custom-product-gallery {
    position: sticky;

    top: 100px;
}


/* =========================================================
   PREVIEW PRINCIPAL
========================================================= */

.custom-preview {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: #e8dfd6;

    border-radius:
        24px
        100px
        24px
        24px;

    box-shadow:
        0 35px 80px
        rgba(54, 43, 36, .16);
}


.custom-empty {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

    box-sizing: border-box;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #e8ded4,
            #f5eee7
        );

    color: #7d7068;
}


.custom-empty-icon {
    width: 78px;
    height: 78px;

    display: flex;

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

    margin-bottom: 20px;

    border-radius: 50%;

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

    color: #b77969;

    font-size: 31px;

    box-shadow:
        0 12px 30px
        rgba(75,54,46,.08);
}


.custom-empty strong {
    margin-bottom: 8px;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 36px;

    font-weight: 500;

    color: #443732;
}


.custom-empty span {
    max-width: 280px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    line-height: 1.7;

    color: #8d7e76;
}


/* =========================================================
   COMPARAÇÃO
========================================================= */

.custom-comparison {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


.custom-original-image,
.custom-artwork-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.custom-original-image {
    filter:
        saturate(.95)
        contrast(.96);
}


.custom-artwork-image {
    filter:
        saturate(.7)
        contrast(1.08)
        brightness(1.05);

    clip-path:
        inset(
            0 0 0 50%
        );
}


.custom-divider {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 2px;

    transform:
        translateX(-50%);

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

    box-shadow:
        0 0 14px
        rgba(0,0,0,.18);

    pointer-events: none;
}


.custom-divider span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 48px;
    height: 48px;

    display: flex;

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

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

    border-radius: 50%;

    background: #F5F4EE;

    color: #80594f;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.16);

    font-size: 17px;
}


/* =========================================================
   LABELS DA IMAGEM
========================================================= */

.custom-preview-labels {
    display: flex;

    justify-content: space-between;

    margin-top: 13px;

    padding:
        0 4px;

    color: #8e7c73;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


.custom-gallery-note {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(47,64,56,.10);
}


.custom-gallery-note > span {
    flex-shrink: 0;

    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.custom-gallery-note p {
    margin: 0;

    color: #766c66;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   INFORMAÇÕES DO PRODUTO
========================================================= */

.custom-product-info {
    padding-top: 15px;
}


.custom-product-info > .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}


.custom-product-info h1 {
    max-width: 570px;

    margin: 0;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size:
        clamp(58px, 5vw, 82px);

    line-height: .84;

    font-weight: 500;

    letter-spacing: -2px;

    color: #3b302c;
}


.custom-product-info h1 em {
    display: block;

    margin-top: 5px;

    color: #F05A24;

    font-weight: 400;

    transform:
        rotate(-1.5deg);

    transform-origin:
        left center;
}


.custom-product-description {
    max-width: 500px;

    margin:
        28px 0
        38px;

    color: #766c66;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   ETAPAS
========================================================= */

.custom-product-step {
    padding:
        25px 0;

    border-top:
        1px solid
        rgba(47,64,56,.12);
}


.custom-step-heading {
    display: flex;

    align-items: center;

    gap: 17px;
}


.custom-step-number {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #f1ddd5;

    color: #F05A24;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 18px;
}


.custom-step-label {
    display: block;

    margin-bottom: 3px;

    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


.custom-step-heading h2 {
    margin: 0;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 27px;

    line-height: 1;

    font-weight: 500;

    color: #42220D;
}


.custom-step-description {
    margin:
        12px 0
        0 53px;

    color: #80736c;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   UPLOAD
========================================================= */

.custom-upload-area {
    min-height: 115px;

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 20px;

    padding:
        20px 24px;

    box-sizing: border-box;

    cursor: pointer;

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

    border:
        1px dashed
        rgba(168,95,81,.35);

    border-radius: 20px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.custom-upload-area:hover {
    transform:
        translateY(-2px);

    background: #F5F4EE;

    border-color: #F05A24;

    box-shadow:
        0 12px 30px
        rgba(75,54,46,.07);
}


.custom-upload-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #d58b78;

    color: #fff;

    font-size: 25px;

    font-weight: 300;
}


.custom-upload-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.custom-upload-area strong {
    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 500;

    color: #463731;
}


.custom-upload-area > .custom-upload-text span {
    color: #9b8a82;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


#custom-file-name {
    margin-left: auto;

    max-width: 150px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   ORIENTAÇÃO DO QUADRO
========================================================= */

.custom-orientation {
    margin-top: 18px;
}

.custom-orientation-label {
    display: block;
    margin-bottom: 9px;
    color: #8b7b74;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.custom-orientation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.custom-orientation-option {
    position: relative;
    cursor: pointer;
}

.custom-orientation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-orientation-option > span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    box-sizing: border-box;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(47,64,56,.12);
    border-radius: 13px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.custom-orientation-option:hover > span {
    transform: translateY(-2px);
    border-color: #F05A24;
}

.custom-orientation-option input:checked + span {
    background: #F5F4EE;
    border-color: #F05A24;
    box-shadow: 0 6px 18px rgba(168,95,81,.10);
}

.orientation-icon {
    display: block;
    flex-shrink: 0;
    border: 1.5px solid #F05A24;
    border-radius: 4px;
    background: rgba(217,120,95,.06);
}

.orientation-icon-vertical {
    width: 22px;
    height: 30px;
}

.orientation-icon-horizontal {
    width: 30px;
    height: 22px;
}

.custom-orientation-option strong {
    color: #42220D;
    font-family: "Montserrat", Georgia, serif;
    font-size: 19px;
    font-weight: 500;
}

.custom-orientation-hint {
    display: block;
    margin-top: 8px;
    color: #9a8981;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    line-height: 1.5;
}

.custom-selected-dimensions {
    display: inline-block;
    margin-top: 7px;
    color: #F05A24;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
}

.custom-preview {
    transition: aspect-ratio .35s ease;
}

.custom-preview.orientation-auto-set {
    animation: opusOrientationPulse .55s ease;
}

@keyframes opusOrientationPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.008); }
    100% { transform: scale(1); }
}

/* =========================================================
   TAMANHOS — COMPACTOS
========================================================= */

.custom-size-step {
    padding-bottom: 18px;
}


.custom-option-grid {
    display: grid;

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

    gap: 9px;

    margin:
        20px 0
        0;
}


.custom-option {
    position: relative;

    cursor: pointer;
}


.custom-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.custom-option > span {
    min-height: 67px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        10px 13px;

    box-sizing: border-box;

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

    border:
        1px solid
        rgba(47,64,56,.12);

    border-radius: 13px;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.custom-option:hover > span {
    transform:
        translateY(-2px);

    border-color: #F05A24;
}


.custom-option input:checked + span {
    background: #F5F4EE;

    border-color: #F05A24;

    box-shadow:
        0 6px 18px
        rgba(168,95,81,.10);
}


.custom-option strong {
    color: #42220D;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 500;
}


.custom-option small {
    margin-top: 2px;

    color: #8b7d76;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
}


/* =========================================================
   COMPRA
========================================================= */

.custom-purchase {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 17px;

    border-top:
        1px solid
        rgba(47,64,56,.10);
}


.custom-purchase > div {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.custom-purchase > div span {
    color: #8a7b74;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;
}


.custom-purchase > div strong {
    color: #42220D;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 28px;

    font-weight: 500;
}


.custom-personalize-button {
    min-height: 46px;

    padding:
        0 23px;

    border: none;

    border-radius: 999px;

    background: #a96051;

    color: #fff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 9px 25px
        rgba(169,96,81,.18);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.custom-personalize-button:hover {
    background: #8f5044;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(169,96,81,.25);
}


/* =========================================================
   SEGURANÇA
========================================================= */

.custom-security {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 5px;

    color: #7d716a;
}


.custom-security > span {
    width: 22px;
    height: 22px;

    display: flex;

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

    border-radius: 50%;

    background: #e4eee7;

    color: #63806c;

    font-size: 11px;
}


.custom-security p {
    margin: 0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   PROCESSO
========================================================= */

.custom-process {
    padding:
        110px 30px;

    background: #f7efe7;
}


.custom-process-heading {
    max-width: 700px;

    margin:
        0 auto
        65px;

    text-align: center;
}


.custom-process-heading .section-label {
    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}


.custom-process-heading h2 {
    margin:
        18px 0 0;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size:
        clamp(50px, 6vw, 75px);

    line-height: .9;

    font-weight: 500;

    color: #42220D;
}


.custom-process-heading h2 em {
    display: block;

    color: #0B7A4A;

    font-weight: 400;
}


.custom-steps {
    max-width: 1100px;

    margin: auto;

    display: grid;

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


.custom-steps article {
    padding:
        15px 42px;

    border-left:
        1px solid
        rgba(47,64,56,.12);
}


.custom-steps article:first-child {
    border-left: none;
}


.custom-steps article > span {
    color: #F05A24;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 27px;
}


.custom-steps h3 {
    margin:
        13px 0
        9px;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 26px;

    font-weight: 500;

    color: #42220D;
}


.custom-steps p {
    margin: 0;

    color: #77817a;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   DEPOIMENTOS
========================================================= */

.custom-reviews {
    padding:
        105px 30px
        120px;

    background: #F5F4EE;
}


.custom-reviews-heading {
    max-width: 700px;

    margin:
        0 auto
        60px;

    text-align: center;
}


.custom-reviews-heading .section-label {
    color: #F05A24;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}


.custom-reviews-heading h2 {
    margin:
        18px 0 0;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size:
        clamp(50px, 6vw, 75px);

    line-height: .9;

    font-weight: 500;

    color: #42220D;
}


.custom-reviews-heading h2 em {
    color: #F05A24;

    font-weight: 400;
}


.custom-review-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

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

    gap: 18px;
}


.custom-review {
    padding:
        30px;

    background:
        rgba(247,239,231,.65);

    border:
        1px solid
        rgba(116,92,82,.10);

    border-radius: 22px;
}


.custom-stars {
    margin-bottom: 18px;

    color: #d49b42;

    font-size: 13px;

    letter-spacing: 3px;
}


.custom-review p {
    margin:
        0 0
        20px;

    color: #5f554f;

    font-family:
        "Montserrat",
        Georgia,
        serif;

    font-size: 21px;

    line-height: 1.35;
}


.custom-review > span {
    color: #9a8980;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVO — TABLET
========================================================= */

@media (max-width: 1000px) {

    .custom-product-layout {
        grid-template-columns: 1fr;

        max-width: 720px;

        gap: 50px;
    }


    .custom-product-gallery {
        position: relative;

        top: auto;
    }


    .custom-product-info {
        padding-top: 0;
    }


    .custom-product-info h1 {
        max-width: 650px;
    }


    .custom-review-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVO — MOBILE
========================================================= */

@media (max-width: 600px) {

    .custom-product {
        padding:
            60px 16px
            70px;
    }


    .custom-product-layout {
        gap: 35px;
    }


    .custom-preview {
        aspect-ratio: 1 / 1.08;

        border-radius:
            20px
            65px
            20px
            20px;
    }


    .custom-empty strong {
        font-size: 30px;
    }


    .custom-gallery-note {
        flex-direction: column;

        gap: 8px;

        margin-top: 22px;

        padding-top: 20px;
    }


    .custom-product-info h1 {
        font-size: 54px;

        letter-spacing: -1px;
    }


    .custom-product-description {
        margin:
            23px 0
            28px;
    }


    .custom-product-step {
        padding:
            22px 0;
    }


    .custom-step-heading {
        gap: 12px;
    }


    .custom-step-number {
        width: 32px;
        height: 32px;

        font-size: 16px;
    }


    .custom-step-heading h2 {
        font-size: 24px;
    }


    .custom-upload-area {
        min-height: 100px;

        padding:
            16px;
    }


    .custom-upload-icon {
        width: 45px;
        height: 45px;

        font-size: 22px;
    }


    .custom-upload-area strong {
        font-size: 20px;
    }


    #custom-file-name {
        display: none;
    }


    .custom-option-grid {
        gap: 7px;
    }


    .custom-option > span {
        min-height: 62px;

        padding:
            9px;
    }


    .custom-option strong {
        font-size: 18px;
    }


    .custom-option small {
        font-size: 7px;
    }


    .custom-purchase {
        align-items: stretch;

        flex-direction: column;

        gap: 15px;
    }


    .custom-purchase > div {
        text-align: center;
    }


    .custom-personalize-button {
        width: 100%;
    }


    .custom-process {
        padding:
            80px 20px;
    }


    .custom-process-heading {
        margin-bottom: 45px;
    }


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

        gap: 0;
    }


    .custom-steps article,
    .custom-steps article:first-child {
        padding:
            25px 0;

        border-left: none;

        border-bottom:
            1px solid
            rgba(47,64,56,.10);
    }


    .custom-steps article:last-child {
        border-bottom: none;
    }


    .custom-reviews {
        padding:
            80px 20px
            90px;
    }


    .custom-review-grid {
        grid-template-columns: 1fr;
    }


    .custom-review {
        padding: 25px;
    }

}

/* =========================================================
   OPUS — CONTROLO DA PRÉ-VISUALIZAÇÃO
========================================================= */

.custom-preview-mode {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.custom-preview-mode-button {
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid rgba(47,64,56,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: #6f625b;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    transition: .25s ease;
}

.custom-preview-mode-button span {
    margin-right: 5px;
}

.custom-preview-mode-button:hover {
    transform: translateY(-1px);
    border-color: #F05A24;
}

.custom-preview-mode-button.active {
    background: #42220D;
    border-color: #42220D;
    color: #F5F4EE;
    box-shadow: 0 8px 20px rgba(47,64,56,.12);
}

.custom-preview-hint {
    margin: 10px auto 0;
    max-width: 480px;
    text-align: center;
    color: #8d7e76;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    line-height: 1.6;
}

.custom-processing {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    background: rgba(247,239,231,.88);
    backdrop-filter: blur(7px);
}

.custom-processing strong {
    color: #42220D;
    font-family: "Montserrat", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.custom-processing span {
    max-width: 270px;
    color: #766c66;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

.custom-processing-spinner {
    width: 42px;
    height: 42px;
    margin-bottom: 5px;
    border: 2px solid rgba(168,95,81,.18);
    border-top-color: #F05A24;
    border-radius: 50%;
    animation: opus-pbn-spin .9s linear infinite;
}

@keyframes opus-pbn-spin {
    to { transform: rotate(360deg); }
}

.custom-comparison {
    cursor: ew-resize;
    touch-action: pan-y;
}

.custom-comparison.is-processing {
    cursor: wait;
}

@media (max-width: 600px) {
    .custom-preview-mode-button {
        min-height: 34px;
        padding: 0 12px;
        font-size: 9px;
    }

    .custom-preview-hint {
        font-size: 9px;
    }
}


/* =====================================================
   OPUS — DETALHES DE PERSONALIZAÇÃO NO CHECKOUT
===================================================== */
.checkout-custom-details {
    display: block;
    margin: 4px 0 5px;
    color: #8a756c;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   ORIENTAÇÃO — ANTES DO UPLOAD
========================================================= */

.custom-orientation-upload-step {
    margin-top: 18px;
    margin-bottom: 14px;
}

.custom-orientation-upload-step .custom-orientation-hint {
    margin-bottom: 0;
}

.custom-orientation-upload-step + .custom-upload-area {
    margin-top: 8px;
}

/* =========================================================
   OPUS — AJUSTES NOVOS DA COLEÇÃO E PÁGINA DE PRODUTO
========================================================= */

/* COLEÇÃO: 4 produtos por linha, menores e mais compactos */
.collection-products {
    width: min(1280px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: 0 0 100px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 46px 24px;
}

.collection-product-image {
    aspect-ratio: 1 / 1.08;
    border-radius: 28px 70px 28px 28px;
}

.collection-product-info {
    padding: 15px 4px 0;
}

.collection-product-info h2 {
    font-size: 27px;
    margin-bottom: 12px;
}

.collection-product-bottom strong {
    font-size: 14px;
}

.collection-product-bottom button {
    padding: 9px 15px;
    font-size: 10px;
}

/* remove a grande oscilação vertical do layout antigo */
.collection-product-card:nth-child(2),
.collection-product-card:nth-child(3),
.collection-product-card:nth-child(4) {
    transform: none;
}

.collection-product-card:hover {
    transform: translateY(-5px);
}

/* GALERIA DA PÁGINA DE PRODUTO */
.product-detail {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    padding: 105px 0 120px;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    gap: 70px;
    align-items: start;
}

.product-gallery-area {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    position: relative;
}

.product-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.product-gallery-thumb {
    width: 82px;
    height: 96px;
    padding: 0;
    border: 1px solid rgba(47,64,56,.12);
    border-radius: 14px;
    overflow: hidden;
    background: #F5F4EE;
    cursor: pointer;
    opacity: .68;
    transition: .25s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    opacity: 1;
    border-color: #F05A24;
    transform: translateY(-2px);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-gallery-area .product-image-area {
    min-height: 0;
    height: auto;
}

.product-gallery-area .product-image-wrapper {
    width: min(620px, 100%);
    aspect-ratio: 4 / 5;
}

.product-information {
    position: static;
    padding: 18px 0 30px;
}

.product-information h1 {
    font-size: clamp(54px, 5.4vw, 78px);
}

.product-description {
    max-width: 540px;
}

/* OPÇÕES DE TAMANHO */
.product-option-block {
    margin-top: 34px;
}

.product-option-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 13px;
}

.product-option-heading span {
    color: #F05A24;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-option-heading strong {
    color: #5E5E5B;
    font-size: 11px;
    font-weight: 500;
}

.product-size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-size-option {
    cursor: pointer;
}

.product-size-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-size-option > span {
    min-height: 78px;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(47,64,56,.13);
    border-radius: 14px;
    background: rgba(255,255,255,.55);
    transition: .25s ease;
}

.product-size-option:hover > span,
.product-size-option.active > span {
    border-color: #F05A24;
    background: #F5F4EE;
    box-shadow: 0 8px 22px rgba(217,120,95,.09);
}

.product-size-option strong {
    color: #42220D;
    font-family: "Montserrat", Georgia, serif;
    font-size: 21px;
    font-weight: 500;
}

.product-size-option small {
    margin-top: 3px;
    color: #8b7d76;
    font-size: 9px;
}

.product-information .product-meta {
    gap: 25px;
    margin-top: 28px;
    padding-top: 22px;
}

.product-information .product-meta div {
    min-width: 0;
}

@media (max-width: 1050px) {
    .collection-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 45px;
    }
}

@media (max-width: 800px) {
    .collection-products {
        width: min(760px, calc(100% - 36px));
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 18px;
    }

    .collection-product-image {
        border-radius: 24px 55px 24px 24px;
    }

    .product-detail {
        width: min(700px, calc(100% - 36px));
        padding: 75px 0 90px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-information {
        position: static;
    }
}

@media (max-width: 520px) {
    .collection-products {
        grid-template-columns: 1fr;
        width: min(420px, calc(100% - 36px));
    }

    .collection-product-info h2 {
        font-size: 30px;
    }

    .product-gallery-area {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        order: 2;
        flex-direction: row;
        padding-top: 10px;
    }

    .product-gallery-thumb {
        width: 70px;
        height: 78px;
    }

    .product-size-options {
        grid-template-columns: 1fr;
    }

    .product-information h1 {
        font-size: 52px;
    }
}


/* =========================================================
   OPUS — BOTÃO DO PRODUTO PERSONALIZADO NA COLEÇÃO
========================================================= */
.collection-custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border-radius: 999px;
    background: #F05A24;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.collection-custom-button:hover {
    background: #9A3D1B;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(217,120,95,.18);
}

/* =====================================================
   OPUS — CHECKOUT / DETALHES FINAIS
===================================================== */

.checkout-custom-details {
    display: block;
    margin: 3px 0 5px;
    color: rgba(255, 255, 255, .66);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    line-height: 1.45;
}

.checkout-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(47, 64, 56, .42);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.checkout-success-overlay.open {
    opacity: 1;
    visibility: visible;
}

.checkout-success-card {
    width: min(100%, 500px);
    padding: 45px 40px;
    text-align: center;
    background: #F5F4EE;
    border: 1px solid rgba(47, 64, 56, .10);
    border-radius: 30px 30px 30px 8px;
    box-shadow: 0 30px 80px rgba(47, 64, 56, .22);
    transform: translateY(18px);
    transition: transform .3s ease;
}

.checkout-success-overlay.open .checkout-success-card {
    transform: translateY(0);
}

.checkout-success-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0B7A4A;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 12px 30px rgba(0,79,42, .20);
}

.checkout-success-card .section-label {
    display: block;
    margin-bottom: 12px;
    color: #F05A24;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.checkout-success-card h2 {
    margin: 0 0 15px;
    color: #42220D;
    font-family: "Montserrat", Georgia, serif;
    font-size: 58px;
    line-height: .9;
    font-weight: 500;
}

.checkout-success-card p {
    max-width: 390px;
    margin: 0 auto 25px;
    color: #5E5E5B;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.75;
}

.checkout-success-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 25px;
    padding: 17px 18px;
    border-radius: 16px;
    background: #DBBA95;
    color: #5E5E5B;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.checkout-success-total strong {
    color: #42220D;
    font-family: "Montserrat", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
}

.checkout-success-card .button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    .checkout-form {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .checkout-form h1 {
        font-size: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .summary-card {
        padding: 30px 24px 26px;
    }

    .checkout-success-card {
        padding: 35px 24px;
    }

    .checkout-success-card h2 {
        font-size: 50px;
    }
}

/* =========================================================
   EDITOR DE AMBIENTE — PERSONALIZADO
========================================================= */
.custom-room-editor{
    margin-top:32px;
    padding-top:24px;
    border-top:1px solid var(--border);
}
.custom-room-editor-head h2{
    margin:.25rem 0 .35rem;
    font-family:"Montserrat",serif;
    font-size:2rem;
    font-weight:600;
}
.custom-room-editor-head p{
    margin:0 0 16px;
    color:var(--muted);
}
.room-scene{
    position:relative;
    width:100%;
    aspect-ratio:16/10;
    min-height:390px;
    overflow:hidden;
    border-radius:18px;
    background:#d9d2c5;
    box-shadow:var(--shadow);
    border:1px solid rgba(66,34,13,.10);
    user-select:none;
    touch-action:none;
}
.room-wall{
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,0) 48%),
      linear-gradient(90deg,#d7d0c4 0 68%,#cfc6b8 68% 100%);
}
.room-wall:after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:31%;
    background:linear-gradient(180deg,#c1b4a5,#a89a8b);
    box-shadow:inset 0 2px 0 rgba(255,255,255,.17);
}
.wall-light{
    position:absolute;
    width:38%;
    height:80%;
    left:12%;
    top:4%;
    background:radial-gradient(circle at 50% 40%,rgba(255,249,226,.68),rgba(255,249,226,0) 66%);
    filter:blur(8px);
}
.room-frame-shadow{
    position:absolute;
    width:35%;
    height:54%;
    left:32%;
    top:12%;
    transform:perspective(850px) rotateY(-3deg);
    filter:drop-shadow(0 20px 22px rgba(45,35,28,.28));
}
.room-frame{
    position:absolute;
    inset:0;
    background:#6e5540;
    padding:10px;
    box-shadow:inset 0 0 0 3px rgba(255,255,255,.08), inset 0 0 0 6px rgba(48,38,29,.42);
}
.room-mat{
    position:absolute;
    inset:10px;
    background:#f4efe5;
    padding:12px;
}
.room-artboard{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    background:#e9e3d9;
}
.room-art-clip{
    position:absolute;
    inset:0;
    overflow:hidden;
}
.room-artwork-image{
    position:absolute;
    left:50%;
    top:50%;
    width:82%;
    max-width:none;
    height:auto;
    transform:translate(-50%,-50%) rotate(0deg) scale(1);
    transform-origin:center center;
    cursor:move;
    display:none;
    will-change:transform;
}
.room-artwork-image.loaded{display:block}
.room-selection{
    position:absolute;
    left:50%;
    top:50%;
    width:68%;
    height:58%;
    transform:translate(-50%,-50%);
    border:1.5px solid rgba(54,151,174,.95);
    box-shadow:0 0 0 9999px rgba(15,22,19,.05);
    pointer-events:none;
}
.room-selection[hidden]{display:none}
.room-handle{
    position:absolute;
    width:12px;
    height:12px;
    border:2px solid #fff;
    background:#004F2A;
    border-radius:3px;
    box-shadow:0 1px 6px rgba(0,0,0,.18);
    pointer-events:auto;
}
.room-handle-nw{left:-7px;top:-7px;cursor:nwse-resize}
.room-handle-ne{right:-7px;top:-7px;cursor:nesw-resize}
.room-handle-sw{left:-7px;bottom:-7px;cursor:nesw-resize}
.room-handle-se{right:-7px;bottom:-7px;cursor:nwse-resize}
.room-rotate-line{
    position:absolute;
    left:50%;top:-34px;
    width:1px;height:27px;
    background:#004F2A;
    transform:translateX(-50%);
}
.room-handle-rotate{
    left:50%;top:-48px;
    transform:translateX(-50%);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:10px;
    cursor:grab;
}
.room-handle-rotate:active{cursor:grabbing}
.room-sofa{
    position:absolute;
    width:45%;
    height:28%;
    left:5%;
    bottom:8%;
}
.sofa-back{
    position:absolute;
    left:6%;right:6%;top:0;
    height:64%;
    background:linear-gradient(180deg,#8f9d98,#73817c);
    border-radius:28px 28px 12px 12px;
}
.sofa-seat{
    position:absolute;
    left:3%;right:3%;top:42%;
    height:36%;
    background:#6e7b76;
    border-radius:18px 18px 12px 12px;
    box-shadow:inset 0 7px 0 rgba(255,255,255,.08);
}
.sofa-arm{
    position:absolute;
    top:34%;width:12%;height:43%;
    background:#66736e;border-radius:14px;
}
.sofa-arm-left{left:0}.sofa-arm-right{right:0}
.sofa-leg{position:absolute;bottom:0;width:6%;height:13%;background:#42220D;border-radius:2px}
.sofa-leg-left{left:10%}.sofa-leg-right{right:10%}
.room-table{
    position:absolute;
    width:22%;
    height:13%;
    right:11%;
    bottom:14%;
}
.table-top{
    position:absolute;
    left:0;right:0;top:0;height:18%;
    background:#7e6751;border-radius:100px;
}
.table-leg{
    position:absolute;top:15%;width:5%;height:80%;
    background:#6a5543;border-radius:3px;
}
.table-leg-left{left:18%}.table-leg-right{right:18%}
.room-plant{
    position:absolute;
    width:14%;
    height:32%;
    right:3%;
    bottom:13%;
}
.plant-pot{
    position:absolute;left:29%;bottom:0;width:42%;height:28%;
    background:#b77f65;border-radius:3px 3px 12px 12px;
}
.plant-stem{
    position:absolute;left:49%;bottom:20%;width:3%;height:58%;
    background:#59715a;transform:rotate(7deg);
}
.plant-leaf{
    position:absolute;width:34%;height:20%;
    background:#66836b;border-radius:100% 0 100% 0;
}
.leaf-1{left:6%;top:22%;transform:rotate(-25deg)}.leaf-2{right:8%;top:9%;transform:rotate(28deg)}
.leaf-3{left:26%;top:2%;transform:rotate(8deg)}.leaf-4{right:0;top:32%;transform:rotate(52deg)}
.custom-room-hint{
    margin:10px 0 0;
    color:var(--muted);
    font-size:.82rem;
}
@media(max-width:760px){
    .room-scene{min-height:300px}
    .room-frame-shadow{width:39%;height:51%;left:31%;top:12%}
}

/* OPUS — novos elementos */
.nav{justify-content:space-between;gap:30px}.logo{flex:0 0 auto}.nav-links{margin-left:28px;flex:1;justify-content:center}.nav-actions{display:flex;align-items:center;gap:8px;flex:0 0 auto}.nav-actions .account-nav-link{margin-left:0}.social-nav{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:var(--ink);color:#fff;font-weight:700;font-size:14px;transition:.2s}.social-nav:hover{transform:translateY(-2px);background:var(--terracotta-dark)}
.info-loop{overflow:hidden;background:var(--ink);color:#fff;height:42px;display:flex;align-items:center;white-space:nowrap}.info-loop-track{display:flex;gap:52px;min-width:max-content;animation:opusLoop 30s linear infinite;font-size:12px;letter-spacing:.02em}.info-loop-track span{display:inline-flex;align-items:center;gap:8px}@keyframes opusLoop{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.home-generator{padding:110px 5%;background:#FFD28A}.home-generator-grid{max-width:1200px;margin:38px auto 0;display:grid;grid-template-columns:.8fr 1.2fr;gap:28px;align-items:stretch}.home-generator-upload,.home-generator-preview{background:rgba(255,255,255,.65);border:1px solid rgba(66,34,13,.1);border-radius:24px;padding:28px;box-shadow:var(--shadow)}.home-generator-upload{display:flex;flex-direction:column;justify-content:center}.generator-drop{min-height:220px;border:2px dashed rgba(66,34,13,.2);border-radius:18px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;text-align:center;cursor:pointer}.generator-drop strong{font-size:17px}.generator-drop small{color:var(--muted)}.generator-icon{font-size:34px}.home-generator-upload .button{margin-top:18px}.generator-status{font-size:12px;color:var(--muted);line-height:1.6;margin-top:12px}.home-generator-preview{min-height:400px;display:grid;place-items:center;position:relative;overflow:hidden;background:linear-gradient(145deg,#F5F4EE,#DBBA95)}#home-generator-canvas{display:none;max-width:100%;max-height:100%;object-fit:contain;border-radius:14px;filter:saturate(.9) contrast(1.04)}#home-generator-canvas.visible{display:block}.generator-empty{color:var(--muted);font-size:14px}.generator-result-actions{display:none;position:absolute;bottom:18px;left:18px;right:18px;justify-content:center}.generator-result-actions.visible{display:flex}.hidden{display:none!important}.how-page,.policy-page{padding:150px 6% 100px;max-width:1100px;margin:auto}.how-hero{text-align:center;padding:40px 0 80px}.how-hero h1,.policy-page h1{font-size:clamp(48px,7vw,84px);margin:15px 0}.how-hero p{max-width:680px;margin:auto;color:var(--muted);font-size:17px;line-height:1.8}.how-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.how-steps article{padding:28px;border-radius:22px;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow)}.how-steps article>div{font-size:13px;color:var(--terracotta);font-weight:700}.how-steps h2{margin:18px 0 10px;font-size:28px}.how-steps p,.faq p,.policy-page p{color:var(--muted);line-height:1.8}.faq{margin-top:100px}.faq h2{font-size:52px;margin:12px 0 28px}.faq details{background:#fff;border-bottom:1px solid var(--border);padding:22px 4px}.faq summary{cursor:pointer;font-weight:600;font-size:17px}.faq details p{padding:14px 0 0;margin:0}.policy-page section{margin-top:55px}.policy-page h2{font-size:36px;margin-bottom:10px}.footer-socials{display:flex;gap:8px;margin-top:18px}.footer-socials a{border:1px solid rgba(255,255,255,.25);border-radius:999px;padding:8px 12px}.footer-payment-text{font-weight:600}.footer-payment-note{font-size:12px;opacity:.75;line-height:1.6}.checkout-page{padding-top:120px}.checkout-container{align-items:start}.checkout-summary{position:sticky!important;top:100px;align-self:start}.coupon-box{margin:22px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:18px 0}.coupon-box label{display:block;font-size:11px;font-weight:700;letter-spacing:.08em;margin-bottom:8px}.coupon-row{display:flex;gap:8px}.coupon-row input{flex:1;border:1px solid var(--border);border-radius:9px;padding:10px 12px;background:#fff}.coupon-row button{border:0;border-radius:9px;padding:10px 13px;background:var(--ink);color:#fff;font-weight:700}.coupon-message{font-size:12px;margin-top:8px;color:var(--muted)}.summary-discount{color:var(--sage-dark)}
@media(max-width:900px){.nav-links{gap:16px;margin-left:0}.nav-actions .account-nav-link span{display:none}.home-generator-grid,.how-steps{grid-template-columns:1fr 1fr}}@media(max-width:760px){.nav{gap:10px}.nav-links a:nth-child(4),.nav-links a:nth-child(5){display:none}.social-nav{width:30px;height:30px}.cart-button span{display:none}.home-generator{padding:75px 5%}.home-generator-grid,.how-steps{grid-template-columns:1fr}.how-page,.policy-page{padding-top:110px}}
.hero-slide{display:none}.hero-slide.active{display:block}.hero{cursor:pointer}

/* =========================================================
   OPUS — PALETA DA PINTURA + TRANSIÇÃO HERO / INFO LOOP
   Inspirada diretamente na referência: verde profundo,
   laranja vivo, coral, castanho e fundo marfim.
========================================================= */
:root {
    --opus-green: #006837;
    --opus-green-dark: #004F2A;
    --opus-orange: #F7931E;
    --opus-coral: #F05A24;
    --opus-brown: #8C6239;
    --opus-brown-dark: #503414;
    --opus-cream: #F5F4EE;
    --opus-sand: #DBBA95;
}

/* Mais respiro entre o carrossel principal e a faixa em loop. */
.info-loop {
    position: relative;
    height: 58px;
    margin-top: 30px;
    padding: 0 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: linear-gradient(
        90deg,
        var(--opus-green-dark) 0%,
        var(--opus-green) 27%,
        var(--opus-orange) 56%,
        var(--opus-coral) 78%,
        var(--opus-brown-dark) 100%
    );
    color: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 28px rgba(66, 34, 13, .14);
}

/* Degradê nas duas extremidades para o texto entrar/sair suavemente. */
.info-loop::before,
.info-loop::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    z-index: 3;
    pointer-events: none;
}

.info-loop::before {
    left: 0;
    background: linear-gradient(90deg, var(--opus-green-dark), transparent);
}

.info-loop::after {
    right: 0;
    background: linear-gradient(270deg, var(--opus-brown-dark), transparent);
}

.info-loop-track {
    position: relative;
    z-index: 2;
    gap: 64px;
    min-width: max-content;
    animation: opusLoop 28s linear infinite;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    will-change: transform;
}

.info-loop-track span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

/* Pequena distância visual no fim do hero, sem esconder o carrossel. */
.hero {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .info-loop {
        margin-top: 20px;
        height: 52px;
        padding: 0 12px;
    }

    .info-loop::before,
    .info-loop::after {
        width: 55px;
    }

    .info-loop-track {
        gap: 42px;
        font-size: 12px;
    }
}

/* =========================================================
   OPUS — HOMEPAGE REFINADA / IDENTIDADE VISUAL
========================================================= */

:root {
    --opus-green: #0B6542;
    --opus-green-dark: #06452F;
    --opus-orange: #F47A20;
    --opus-orange-dark: #D95518;
    --opus-brown: #6B351B;
    --opus-cream: #F8F5EE;
    --opus-line: rgba(72, 48, 28, .14);
}

body { background: var(--opus-cream); }

.header {
    height: 88px;
    /* Usa a imagem criada exclusivamente para o fundo da navbar. */
    background-image: url("../images/opus-nav-background.png");
    background-color: #f8f5ee;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(72,48,28,.08);
}

.nav {
    width: min(1410px, 94%);
    gap: 24px;
}

.logo-image {
    width: 210px;
    height: 76px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-image::after { display: none; }
.logo-image img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }

.nav-links { gap: 32px; color: #302B26; font-size: 14px; font-weight: 500; }
.nav-links a::after { background: var(--opus-orange); height: 2px; bottom: -11px; }
.nav-links a:hover { color: var(--opus-orange-dark); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.site-search {
    position: relative;
    width: min(310px, 24vw);
    min-width: 230px;
}

.site-search input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 17px;
    border: 1px solid rgba(72,48,28,.20);
    border-radius: 14px;
    background: rgba(255,255,255,.55);
    color: var(--ink);
    outline: none;
    transition: .25s ease;
}

.site-search input:focus {
    border-color: rgba(11,101,66,.55);
    box-shadow: 0 0 0 4px rgba(11,101,66,.08);
    background: #fff;
}

.site-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--opus-green);
    font-size: 24px;
    line-height: 1;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    border: 1px solid rgba(72,48,28,.12);
    border-radius: 16px;
    background: rgba(255,253,248,.98);
    box-shadow: 0 20px 45px rgba(50,35,20,.14);
    z-index: 1200;
    max-height: 360px;
    overflow: auto;
}

.search-results.open { display: block; }

.search-result {
    width: 100%;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 11px;
    align-items: center;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    text-align: left;
    color: var(--ink);
}

.search-result:hover { background: rgba(11,101,66,.07); }
.search-result img { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; background: #eee7dc; }
.search-result strong { display: block; font-size: 13px; }
.search-result small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.search-result-price { color: var(--opus-orange-dark); font-weight: 700; font-size: 12px; }
.search-empty { padding: 15px 12px; color: var(--muted); font-size: 13px; }

.account-nav-link { color: var(--opus-green); }
.account-nav-link:hover, .account-nav-link.active { background: rgba(11,101,66,.08); color: var(--opus-green-dark); }
.nav .cart-button { border-color: rgba(11,101,66,.18); }

.hero {
    margin-top: 88px;
    min-height: 610px;
    background-image: url("https://images.unsplash.com/photo-1547891654-e66ed7ebb968?auto=format&fit=crop&w=1800&q=90");
    background-position: center;
}

.hero::before {
    background: linear-gradient(100deg, rgba(20,17,13,.76) 0%, rgba(20,17,13,.38) 42%, rgba(11,101,66,.05) 78%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 145px;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(248,245,238,0) 0%, rgba(248,245,238,.28) 34%, var(--opus-cream) 100%);
}

.hero-content { min-height: 610px; width: min(1410px, 94%); }
.hero-copy { max-width: 620px; margin-left: 4%; padding-bottom: 18px; }
.hero .eyebrow { background: var(--opus-orange); padding: 7px 13px; margin-bottom: 20px; letter-spacing: 2.4px; }
.hero h1 { font-family: "Montserrat", Arial, sans-serif; font-size: clamp(48px, 5.3vw, 78px); line-height: .96; font-weight: 700; letter-spacing: -2.6px; margin-bottom: 24px; }
.hero h1 em { color: #F36C22; font-family: "Montserrat", Georgia, serif; font-size: 1.1em; font-weight: 600; }
.hero-description { max-width: 530px; font-size: 16px; line-height: 1.7; margin-bottom: 27px; text-shadow: 0 2px 15px rgba(0,0,0,.22); }
.button-primary { background: var(--opus-orange); border-radius: 30px; }
.button-primary:hover { background: #ff913d; color: #fff; }
.button-arrow { display: inline-flex; align-items: center; justify-content: center; width: 31px; height: 31px; margin-left: 13px; border-radius: 50%; background: #fff; color: var(--opus-orange-dark); font-size: 18px; }

.hero-arrow { width: 50px; height: 50px; background: rgba(15,18,14,.38); border: 1px solid rgba(255,255,255,.15); }
.hero-arrow:hover { background: var(--opus-orange); color: #fff; border-color: var(--opus-orange); }
.hero-dots { left: 50%; bottom: 35px; transform: translateX(-50%); }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.82); }
.hero-dot.active { width: 9px; height: 9px; background: var(--opus-orange); transform: none; }

/* The intro visually rises into the hero, while the hero itself fades into cream. */
.intro {
    z-index: 12;
    width: min(850px, 90%);
    margin: -92px auto 0;
    padding: 115px 0 90px;
    background: var(--opus-cream);
    border-radius: 50% 50% 0 0 / 38px 38px 0 0;
}

.intro::before { display: none; }
.intro::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -38px;
    width: 110vw;
    height: 70px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(248,245,238,0), var(--opus-cream) 82%);
    pointer-events: none;
    z-index: -1;
}

.section-label { color: var(--opus-orange-dark); letter-spacing: 2.2px; font-weight: 700; }
.intro h2 { font-family: "Montserrat", Arial, sans-serif; font-weight: 700; font-size: clamp(38px, 4.6vw, 60px); color: var(--opus-green-dark); }
.intro h2::first-line { color: var(--opus-green-dark); }
.intro p { color: #5f5a52; }

/* Full, readable information loop — below the intro, never hidden under a section. */
.info-loop {
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: 72px;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(100deg, #087047 0%, #B77A20 35%, #F47A20 57%, #D84F17 77%, #6B351B 100%);
    box-shadow: 0 8px 25px rgba(61,37,18,.10);
}

.info-loop::before, .info-loop::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 3;
    pointer-events: none;
}
.info-loop::before { left: 0; background: linear-gradient(90deg, rgba(8,112,71,1), rgba(8,112,71,0)); }
.info-loop::after { right: 0; background: linear-gradient(270deg, rgba(107,53,27,1), rgba(107,53,27,0)); }

.info-loop-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 34px;
    padding: 0 40px;
    animation: opusLoop 28s linear infinite;
    white-space: nowrap;
}
.info-loop-track span { color: #fff; font-size: 14px; font-weight: 500; letter-spacing: .15px; }
.info-loop-track span::after { content: "•"; margin-left: 34px; color: rgba(255,255,255,.8); }
@keyframes opusLoop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.home-generator { padding-top: 92px; }

.footer-logo img { width: 185px; max-width: 100%; height: auto; object-fit: contain; object-position: left center; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1100px) {
    .nav-links { gap: 19px; }
    .site-search { min-width: 200px; width: 220px; }
    .account-nav-link, .social-nav { display: none; }
}

@media (max-width: 800px) {
    .header { height: 76px; }
    .hero { margin-top: 76px; min-height: 590px; }
    .hero-content { min-height: 590px; }
    .logo-image { width: 170px; height: 64px; }
    .nav { width: 94%; }
    .site-search { min-width: 0; width: 180px; }
    .cart-button span { display: none; }
    .hero-copy { margin-left: 0; max-width: 580px; }
    .hero h1 { font-size: clamp(42px, 9vw, 62px); }
    .intro { margin-top: -75px; padding-top: 100px; }
}

@media (max-width: 600px) {
    .logo-image { width: 145px; height: 58px; }
    .nav-actions { gap: 6px; }
    .site-search { width: 42px; min-width: 42px; }
    .site-search input { opacity: 0; cursor: pointer; padding: 0; }
    .site-search:focus-within { width: 190px; position: absolute; right: 56px; }
    .site-search:focus-within input { opacity: 1; padding: 0 44px 0 14px; cursor: text; }
    .hero { min-height: 570px; }
    .hero-content { min-height: 570px; }
    .hero-copy { padding: 0 5%; }
    .hero h1 { font-size: 44px; letter-spacing: -1.6px; }
    .hero-description { font-size: 14px; }
    .hero::after { height: 120px; }
    .intro { width: 92%; margin-top: -62px; padding: 85px 0 70px; border-radius: 40px 40px 0 0; }
    .info-loop { min-height: 64px; }
    .info-loop-track { gap: 24px; padding: 0 24px; }
    .info-loop-track span { font-size: 12px; }
    .info-loop-track span::after { margin-left: 24px; }
    .search-results { right: -40px; width: 285px; }
}


/* =========================================================
   OPUS — AJUSTES FINAIS HOMEPAGE / CHECKOUT
========================================================= */
.site-search {
    width: clamp(190px, 21vw, 300px);
    min-width: 0;
    flex: 0 1 300px;
}
.site-search input {
    min-width: 0;
}
.nav-actions {
    min-width: 0;
}
.search-results {
    max-width: 100%;
    box-sizing: border-box;
}
@media (max-width: 1180px) {
    .nav-links { gap: 16px; }
    .nav-actions { gap: 6px; }
    .site-search { width: clamp(170px, 18vw, 240px); flex-basis: 240px; }
    .account-nav-link { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 1000px) {
    .nav-links { gap: 12px; }
    .site-search { width: 190px; flex-basis: 190px; }
    .account-nav-link { display: none; }
    .social-nav { display: none; }
}
@media (max-width: 760px) {
    .nav { gap: 8px; }
    .nav-links { display: none; }
    .nav-actions { margin-left: auto; }
    .site-search { width: 42px; flex: 0 0 42px; }
    .site-search input { opacity: 0; cursor: pointer; padding: 0; }
    .site-search:focus-within { width: min(230px, calc(100vw - 120px)); flex-basis: min(230px, calc(100vw - 120px)); position: absolute; right: 58px; z-index: 1300; }
    .site-search:focus-within input { opacity: 1; padding: 0 44px 0 14px; cursor: text; }
    .search-results { width: min(300px, calc(100vw - 32px)); right: 0; left: auto; }
}

/* O resumo acompanha a rolagem no checkout, independentemente do formulário. */
@media (min-width: 901px) {
    .checkout-container { align-items: start; }
    .checkout-summary { position: -webkit-sticky !important; position: sticky !important; top: 100px !important; align-self: start !important; height: fit-content; }
}

/* Gerador: mesma linguagem visual da OPUS, sem alterar a estrutura. */
.home-generator { background: var(--opus-orange); }
.home-generator-preview { background: linear-gradient(145deg, var(--opus-cream), var(--opus-sand)); }
.home-generator-upload, .home-generator-preview { border-color: rgba(80,52,20,.14); }


/* =========================================================
   OPUS — CORREÇÃO FINAL: PESQUISA + RESUMO STICKY
========================================================= */
.site-search {
    min-width: 0;
    box-sizing: border-box;
}

.site-search input {
    box-sizing: border-box;
    min-width: 0;
}

.search-results {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.search-result {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.search-result span {
    min-width: 0;
}

.search-result strong,
.search-result small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 901px) {
    .checkout-page {
        overflow: clip;
    }

    .checkout-container {
        align-items: start;
    }

    .checkout-summary {
        position: sticky !important;
        top: 104px !important;
        align-self: start !important;
        height: fit-content;
    }
}

@media (max-width: 900px) {
    .checkout-summary {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 760px) {
    .site-search {
        width: min(100%, 300px);
        min-width: 0;
        flex: 1 1 180px;
    }
}

/* =========================================================
   OPUS — PESQUISA: DROPDOWN AMPLO E VISÍVEL
   O campo continua compacto; os resultados podem ser maiores
   para mostrar claramente a fotografia, nome e preço.
========================================================= */
.site-search .search-results {
    width: 460px;
    max-width: min(460px, calc(100vw - 32px));
    left: 0;
    right: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
}

.site-search .search-result {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) max-content;
    gap: 13px;
    min-height: 64px;
    padding: 10px;
}

.site-search .search-result img {
    width: 64px;
    height: 64px;
    border-radius: 11px;
}

.site-search .search-result strong {
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.site-search .search-result small {
    margin-top: 5px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.site-search .search-result-price {
    white-space: nowrap;
    align-self: center;
    font-size: 13px;
}

@media (max-width: 760px) {
    .site-search .search-results {
        width: min(420px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        left: auto;
        right: 0;
    }

    .site-search .search-result {
        grid-template-columns: 58px minmax(0, 1fr) max-content;
        min-height: 58px;
    }

    .site-search .search-result img {
        width: 58px;
        height: 58px;
    }
}

/* =========================================================
   OPUS — CHECKOUT: STICKY REAL DO RESUMO
========================================================= */
.checkout-page {
    overflow: visible !important;
}

@media (min-width: 901px) {
    .checkout-page {
        overflow: visible !important;
    }

    .checkout-container {
        align-items: start !important;
    }

    .checkout-summary {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 104px !important;
        align-self: start !important;
        height: max-content !important;
    }
}

/* =========================================================
   OPUS — FOOTER NAVY OVERRIDE
   Fundo independente da paleta principal para preservar
   a legibilidade da logo e dos conteúdos do rodapé.
========================================================= */
footer,
footer::before {
    background-color: #071A2B;
}

footer a:hover {
    color: #FFFFFF;
}

.footer-socials a {
    background: rgba(255,255,255,.04);
}


/* =========================================================
   OPUS — AJUSTE DA PESQUISA + PREÇO PROMOCIONAL
   Apenas melhora a leitura sem alterar o restante do layout.
========================================================= */
@media (min-width: 801px) {
    .site-search {
        width: clamp(250px, 24vw, 360px);
        flex-basis: 360px;
    }

    .site-search input {
        font-size: 14px;
        padding-left: 18px;
        padding-right: 52px;
    }

    .site-search .search-results {
        width: 500px;
        max-width: min(500px, calc(100vw - 32px));
    }
}

.site-search .search-result-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    min-width: 72px;
}

.site-search .search-result-price del {
    color: #8a8a84;
    font-size: 10px;
    line-height: 1.1;
    font-weight: 500;
}

.site-search .search-result-price strong {
    color: #0B7A4A;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
}

.collection-product-price {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.05;
    gap: 2px;
}

.collection-product-price del {
    color: #8a8a84;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
}

.collection-product-price strong {
    color: #0B7A4A !important;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 700 !important;
    white-space: nowrap;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.product-price del {
    color: #8a8a84;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.product-price strong {
    color: #0B7A4A;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 800px) {
    .site-search:focus-within {
        width: min(300px, calc(100vw - 110px));
    }

    .site-search .search-results {
        width: min(360px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
    }
}

@media (max-width: 600px) {
    .site-search .search-result {
        grid-template-columns: 58px minmax(0, 1fr) max-content;
    }

    .site-search .search-result strong {
        overflow: visible;
        white-space: normal;
    }

    .site-search .search-result-price {
        min-width: 68px;
    }
}

/* Pesquisa do catálogo — resultados maiores e totalmente visíveis */
.site-search { width: min(390px, 30vw); min-width: 280px; }
.site-search input { font-size: 15px; }
.search-results { width: min(520px, 46vw); max-height: min(560px, 70vh); padding: 10px; }
.search-result { grid-template-columns: 76px minmax(0,1fr) auto; gap: 14px; padding: 10px; min-height: 82px; cursor: pointer; }
.search-result img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; }
.search-result-info { min-width: 0; display: block; }
.search-result-info strong { font-size: 14px; line-height: 1.25; white-space: normal; overflow-wrap: anywhere; }
.search-result-info small { font-size: 11px; }
.search-result-info em { display: block; margin-top: 6px; color: var(--opus-green); font-size: 11px; font-style: normal; font-weight: 700; }
.search-result-price { display:flex; flex-direction:column; align-items:flex-end; gap:3px; white-space:nowrap; }
.search-result-price del { color:#777; font-size:11px; font-weight:500; }
.search-result-price strong { color:#b3261e; font-size:15px; }
.collection-search-empty { grid-column: 1 / -1; padding: 50px 20px; text-align:center; }
.collection-search-empty h2 { margin-bottom: 8px; }
.collection-search-empty p { color: var(--muted); }
@media (max-width: 800px) { .site-search { width: 240px; min-width: 200px; } .search-results { width: min(430px, 88vw); } }
@media (max-width: 600px) { .site-search { width: 42px; min-width: 42px; } .site-search:focus-within { width: min(300px, 78vw); } .search-results { width: min(360px, 88vw); } }


/* OPUS — avaliações e pesquisa */
.search-results { max-height: 520px; padding: 10px; }
.search-result { grid-template-columns: 88px minmax(0,1fr) auto; min-height: 92px; padding: 10px; }
.search-result img { width: 88px; height: 88px; border-radius: 12px; }
.search-result-info { min-width: 0; }
.search-result-info strong { font-size: 15px; line-height: 1.25; white-space: normal; }
.search-result-info em { display:block; margin-top:8px; color:var(--opus-green); font-style:normal; font-size:11px; font-weight:700; }
.search-result-price { display:flex; flex-direction:column; align-items:flex-end; gap:3px; }
.search-result-price del { color:#8d8278; font-size:10px; font-weight:500; }
.search-result-price strong { color:#16814f; font-size:14px; }
.product-single-size { margin-top: 28px; }
.product-single-size .product-option-heading { margin-bottom: 0; }
.product-reviews { margin-top: 42px; padding-top: 30px; border-top: 1px solid rgba(47,64,56,.12); }
.reviews-heading h2 { margin: 6px 0 0; font-family: "Montserrat", Georgia, serif; font-size: 34px; font-weight: 500; }
.reviews-summary { margin: 20px 0; }
.reviews-average { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.reviews-average strong { font-family:"Montserrat",Georgia,serif; font-size:34px; font-weight:500; }
.reviews-average small { color:var(--muted); font-size:12px; }
.review-star { color:#c8c0b6; font-size:18px; letter-spacing:1px; }
.review-star.filled { color:#F05A24; }
.review-card { padding:18px 0; border-top:1px solid rgba(47,64,56,.1); }
.review-card-top { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.review-card-top strong { font-size:14px; }
.review-card time { display:block; color:var(--muted); font-size:10px; margin-top:4px; }
.review-card p { margin:10px 0; line-height:1.6; font-size:13px; }
.review-images { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.review-images img { width:82px; height:82px; object-fit:cover; border-radius:10px; border:1px solid rgba(47,64,56,.12); }
.review-form { margin-top:22px; padding:20px; border-radius:18px; background:rgba(255,255,255,.55); border:1px solid rgba(47,64,56,.1); }
.review-form h3 { margin:0 0 14px; font-family:"Montserrat",Georgia,serif; font-size:25px; font-weight:500; }
.review-rating-picker { display:flex; gap:4px; margin-bottom:14px; }
.review-rating-picker label { cursor:pointer; }
.review-rating-picker input { position:absolute; opacity:0; }
.review-rating-picker span { color:#c8c0b6; font-size:27px; }
.review-rating-picker label:hover span, .review-rating-picker input:checked + span { color:#F05A24; }
.review-form textarea { width:100%; min-height:100px; resize:vertical; box-sizing:border-box; border:1px solid rgba(47,64,56,.14); border-radius:12px; padding:12px; font:inherit; background:#fff; }
.review-upload { display:flex; flex-direction:column; gap:5px; margin:14px 0; font-size:12px; }
.review-upload input { margin-top:4px; }
.review-upload small { color:var(--muted); }
.review-form-message { font-size:12px; margin:10px 0 0; }
.review-form-message.success { color:#16814f; }
.review-form-message.error { color:#b33b2e; }
.review-login-note, .reviews-empty { color:var(--muted); font-size:13px; line-height:1.6; }

/* Assistente flutuante Opus */
.opus-chat-widget{position:fixed;right:22px;bottom:22px;z-index:9999;font-family:inherit}
.opus-chat-fab{width:58px;height:58px;border:0;border-radius:50%;background:#25D366;box-shadow:0 8px 24px rgba(0,0,0,.22);display:grid;place-items:center;cursor:pointer;transition:transform .2s,box-shadow .2s}
.opus-chat-fab:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(0,0,0,.28)}
.opus-chat-fab svg{width:34px;height:34px;fill:#fff}
.opus-chat-panel{position:absolute;right:0;bottom:72px;width:350px;max-width:calc(100vw - 28px);height:500px;max-height:calc(100vh - 110px);background:#fff;border:1px solid rgba(47,64,56,.12);border-radius:18px;box-shadow:0 18px 50px rgba(0,0,0,.2);overflow:hidden;display:none;flex-direction:column}
.opus-chat-panel.open{display:flex}
.opus-chat-header{background:#25D366;color:#fff;padding:15px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.opus-chat-header strong{display:block;font-size:15px}.opus-chat-header span{display:block;font-size:11px;opacity:.9;margin-top:2px}
.opus-chat-close{background:transparent;border:0;color:#fff;font-size:27px;line-height:1;cursor:pointer;padding:0 3px}
.opus-chat-body{flex:1;overflow:auto;padding:14px;background:#f5f7f6;display:flex;flex-direction:column;gap:9px}
.opus-chat-message{max-width:82%;padding:10px 12px;border-radius:14px;font-size:13px;line-height:1.45;white-space:pre-wrap}
.opus-chat-message.bot{align-self:flex-start;background:#fff;color:#26352f;border-top-left-radius:5px;box-shadow:0 1px 2px rgba(0,0,0,.05)}
.opus-chat-message.user{align-self:flex-end;background:#d9fdd3;color:#1d3424;border-top-right-radius:5px}
.opus-chat-suggestions{padding:9px 10px 5px;display:flex;gap:6px;flex-wrap:wrap;background:#fff;border-top:1px solid rgba(47,64,56,.08)}
.opus-chat-suggestions button{border:1px solid rgba(37,211,102,.35);background:#fff;border-radius:20px;padding:6px 9px;font-size:11px;cursor:pointer}
.opus-chat-form{display:flex;gap:7px;padding:10px;background:#fff;border-top:1px solid rgba(47,64,56,.08)}
.opus-chat-form input{flex:1;min-width:0;border:1px solid rgba(47,64,56,.16);border-radius:20px;padding:10px 12px;outline:none;font:inherit;font-size:12px}
.opus-chat-form button{border:0;border-radius:20px;background:#25D366;color:#fff;padding:0 14px;font-weight:700;cursor:pointer}
@media(max-width:600px){.opus-chat-widget{right:14px;bottom:14px}.opus-chat-fab{width:54px;height:54px}.opus-chat-panel{bottom:66px;width:min(350px,calc(100vw - 28px));height:min(520px,calc(100vh - 95px))}}

/* OPUS — coleção: cards mais estáveis e descrições sem quebrar o layout */
.collection-product-description{margin:8px 0 16px;color:#666;font-size:13px;line-height:1.55;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;min-height:60px}
.collection-search-empty{grid-column:1/-1;padding:56px 24px;text-align:center;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px}.collection-search-empty h2{margin:0 0 8px}.collection-search-empty p{margin:0;color:#666}

/* OPUS — faixa de informações verdadeiramente contínua */
.info-loop{overflow:hidden;white-space:nowrap}
.info-loop-track{display:flex;width:max-content;min-width:max-content;gap:0;animation:opusLoopContinuous 28s linear infinite;will-change:transform}
.info-loop-set{display:flex;flex:none;gap:52px;padding-right:52px;align-items:center}
.info-loop-set span{display:inline-flex;align-items:center;gap:8px;flex:none}
@keyframes opusLoopContinuous{from{transform:translate3d(0,0,0)}to{transform:translate3d(-33.333333%,0,0)}}
@media(max-width:700px){.info-loop-set{gap:24px;padding-right:24px}}

/* Fundo da navbar — imagem derivada diretamente do fundo original da logo */
.header {
  background: url("../images/opus-nav-background.png") center center / cover no-repeat !important;
}

/* Fundo horizontal da navbar — recortado diretamente da arte original OPUS */
.header {
  background-image: url("../images/opus-nav-background.png") !important;
  background-color: #f8f5ee !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
}


/* OPUS — tipografia global Montserrat */
*, *::before, *::after { font-family: "Montserrat", Arial, sans-serif !important; }

/* OPUS — carrossel: banner panorâmico, mais baixo e com degradé preservado */
.hero {
    position: relative;
    min-height: 0;
    height: clamp(260px, 22vw, 340px);
    margin-top: 78px;
    background-color: var(--opus-cream);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    cursor: pointer;
}

/* Degradé: branco puro na base da página, esvanecendo suavemente ao subir para o carrossel. */
.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(to top,
        #ffffff 0%,
        #ffffff 10%,
        rgba(255,255,255,.92) 28%,
        rgba(255,255,255,.62) 50%,
        rgba(255,255,255,.24) 74%,
        rgba(255,255,255,0) 100%
    );
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(100deg, rgba(66,34,13,.10), rgba(0,79,42,.025) 48%, rgba(217,120,95,.02) 100%);
}

.hero-slide { display: none !important; width: 100%; height: 100%; }
.hero-slide.active { display: block !important; }
.hero-banner-placeholder { display:block; width:100%; height:100%; }
.hero .hero-arrow { z-index: 10; }
.hero .hero-dots { z-index: 11; }

@media (max-width: 800px) {
    .hero { height: clamp(210px, 32vw, 285px); }
}


/* OPUS — Montserrat global */
html, body, button, input, select, textarea { font-family: "Montserrat", Arial, sans-serif; }
body, body * { font-family: "Montserrat", Arial, sans-serif !important; }


/* =====================================================
   OPUS V2 — COMÉRCIO / PRODUTO
===================================================== */
.product-detail{grid-template-columns:minmax(0,1.12fr) minmax(390px,.88fr);gap:70px;align-items:start}
.product-gallery-area{min-width:0}
.product-gallery-area .product-image-wrapper{aspect-ratio:4/5}
.product-information{min-width:0}
.product-price-commerce{display:flex!important;align-items:center!important;gap:14px;margin-top:24px!important;flex-wrap:wrap}
.product-price-main{display:flex;align-items:baseline;gap:8px}
.product-price-commerce strong{font-size:29px!important}
.shipping-calculated-badge{display:inline-flex;align-items:center;gap:6px;padding:7px 11px;border-radius:999px;background:#eaf7ef;color:#0B7A4A;font-size:10px;font-weight:800;letter-spacing:.7px;white-space:nowrap}
.shipping-calculated-badge:before{content:"✓";font-size:11px}
.product-tabs{display:flex;gap:7px;flex-wrap:wrap;margin:2px 0 18px;border-bottom:1px solid rgba(47,64,56,.10);padding-bottom:7px}
.product-tab{border:1px solid transparent;background:transparent;color:#6e7771;padding:10px 13px;border-radius:10px;font:600 11px/1.2 "Montserrat",sans-serif;cursor:pointer;transition:.2s}
.product-tab:hover{background:#f4f6f2;color:#1e332a}.product-tab.active{background:#1e332a;color:#fff}
.product-tab-panels{min-height:125px}.product-tab-panel{animation:opusFade .2s ease}.product-tab-panel[hidden]{display:none!important}
@keyframes opusFade{from{opacity:.2;transform:translateY(2px)}to{opacity:1;transform:none}}
.product-detail-list{display:grid;grid-template-columns:1fr 1fr;border:1px solid rgba(47,64,56,.09);border-radius:14px;overflow:hidden;background:#fff}
.product-detail-list div{padding:13px 14px;border-bottom:1px solid rgba(47,64,56,.07)}
.product-detail-list div:nth-child(odd){border-right:1px solid rgba(47,64,56,.07)}
.product-detail-list div:nth-last-child(-n+2){border-bottom:0}
.product-detail-list span{display:block;color:#F05A24;font-size:8px;font-weight:800;letter-spacing:1.5px;margin-bottom:5px}.product-detail-list strong{font-size:11px;color:#38483f}
.shipping-highlight{display:flex;align-items:center;gap:10px;margin-bottom:12px}.shipping-highlight strong{color:#0B7A4A;font-size:11px;letter-spacing:.7px}.shipping-highlight span{color:#6f7873;font-size:11px}
.product-reviews{grid-column:1 / -1;width:100%;margin-top:8px;padding:34px 0 0;border-top:1px solid rgba(47,64,56,.12)}
.reviews-heading{display:flex;justify-content:space-between;align-items:end}.reviews-heading h2{font-size:38px}
.reviews-summary{margin:18px 0 8px;padding:16px 18px;border-radius:16px;background:#f8f7f3;border:1px solid rgba(47,64,56,.07)}
.reviews-average{justify-content:flex-start}.reviews-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:15px}.review-card{padding:18px;border:1px solid rgba(47,64,56,.09);border-radius:15px;background:#fff}
.review-card:first-child{border-top:1px solid rgba(47,64,56,.09)}
.review-form{margin-top:18px;max-width:none}
@media(max-width:800px){.product-detail{grid-template-columns:1fr}.product-reviews{grid-column:1}.reviews-list{grid-template-columns:1fr}.product-detail-list{grid-template-columns:1fr}.product-detail-list div:nth-child(odd){border-right:0}.product-detail-list div:nth-last-child(-n+2){border-bottom:1px solid rgba(47,64,56,.07)}.product-detail-list div:last-child{border-bottom:0}}


/* Checkout — resumo renovado */
.summary-card{background:linear-gradient(145deg,#214e40 0%,#0B7A4A 55%,#3b8c6f 100%)!important;color:#fff}
.summary-card::after{background:rgba(247,147,30,.24)!important}
.summary-card .section-label{color:#ffd37a!important}
.summary-total strong{color:#ffd37a!important}


/* Montserrat — tipografia global, incluindo elementos herdados */
html,body,button,input,textarea,select{font-family:"Montserrat",Arial,sans-serif!important}

/* =====================================================
   CORREÇÃO FINAL — TRANSIÇÃO DO CARROSSEL PARA O FUNDO
   Branco puro na parte inferior, desaparecendo gradualmente
   conforme sobe em direção à imagem do carrossel.
===================================================== */
.hero::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    height: 105px !important;
    z-index: 20 !important;
    pointer-events: none !important;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255,255,255,0.96) 16%,
        rgba(255,255,255,0.76) 36%,
        rgba(255,255,255,0.42) 58%,
        rgba(255,255,255,0.16) 78%,
        rgba(255,255,255,0) 100%
    ) !important;
}

.hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background: linear-gradient(
        100deg,
        rgba(66,34,13,0.10),
        rgba(0,79,42,0.025) 48%,
        rgba(217,120,95,0.02) 100%
    ) !important;
}

@media (max-width: 600px) {
    .hero::before { height: 85px !important; }
}


/* =========================================================
   OPUS — FUNDO CONTÍNUO DA IDENTIDADE VISUAL
   Apenas o fundo: não altera conteúdo, componentes ou layout.
========================================================= */
html, body {
    background: #fff7e8 url("../images/opus-site-background.svg") center top / cover fixed no-repeat;
}

/* O fundo artístico fica contínuo atrás das secções da homepage.
   Todos os elementos internos continuam exatamente os mesmos. */
.home-page,
main,
.intro,
.benefits,
.collection,
.manifesto,
.newsletter {
    background-color: transparent;
}

.benefits::before,
.collection::before,
.manifesto::before,
.newsletter::before {
    background-color: transparent;
    background-image: none;
    -webkit-mask-image: none;
    mask-image: none;
}

/* =========================================================
   OPUS — AJUSTES DE HARMONIZAÇÃO DO NOVO FUNDO
   Apenas aparência: mantém conteúdo, componentes e layout.
========================================================= */

/* Faz a transição inferior do carrossel usar o mesmo creme do fundo artístico. */
.hero::before {
    background: linear-gradient(to top,
        #fff7e8 0%,
        #fff7e8 10%,
        rgba(255,247,232,.92) 28%,
        rgba(255,247,232,.62) 50%,
        rgba(255,247,232,.24) 74%,
        rgba(255,247,232,0) 100%
    ) !important;
}

/* Mantém o leve véu do carrossel em tons que pertencem à identidade do novo fundo. */
.hero::after {
    background: linear-gradient(100deg,
        rgba(66,34,13,.06),
        rgba(113,148,123,.035) 48%,
        rgba(217,120,95,.028) 100%
    ) !important;
}

/* Bloco "Gerar o seu personalizado" da homepage: verde-sálvia muito suave,
   escolhido para conversar com as pinceladas azul/verde do fundo contínuo. */
.custom-product-section {
    background:
        radial-gradient(circle at 10% 18%, rgba(255,247,232,.88), transparent 34%),
        radial-gradient(circle at 90% 82%, rgba(217,120,95,.10), transparent 28%),
        #e5f0eb !important;
}

.custom-product-section::before {
    background: #e5f0eb !important;
}

.custom-product-section::after {
    background: linear-gradient(
        120deg,
        rgba(140,203,217,.14),
        rgba(243,201,105,.09),
        rgba(113,148,123,.16)
    ) !important;
}


/* =====================================================
   HOME — VITRINE HORIZONTAL + CATEGORIAS
===================================================== */
.home-showcase,
.home-categories{padding:96px 5%;background:var(--cream);position:relative;overflow:hidden}
.home-categories{padding-top:20px;padding-bottom:105px}
.home-section-heading{width:min(1240px,100%);margin:0 auto 34px;display:flex;align-items:end;justify-content:space-between;gap:30px}
.home-section-heading h2{margin:10px 0 0;font-size:clamp(38px,4.4vw,62px);line-height:.98;letter-spacing:-1.8px;color:var(--ink)}
.home-section-heading-centered{justify-content:center;text-align:center}
.home-section-link{color:var(--ink);font-size:12px;font-weight:700;letter-spacing:.04em;text-decoration:none;padding-bottom:8px;border-bottom:1px solid rgba(66,34,13,.22)}
.home-section-link span{display:inline-block;margin-left:8px;transition:transform .2s ease}.home-section-link:hover span{transform:translateX(4px)}
.horizontal-product-carousel,.category-carousel{width:min(1240px,100%);margin:auto;position:relative;padding:0 24px}
.horizontal-product-track,.category-track{display:flex;gap:20px;overflow-x:auto;scrollbar-width:none;scroll-snap-type:x proximity;padding:8px 4px 18px}
.horizontal-product-track::-webkit-scrollbar,.category-track::-webkit-scrollbar{display:none}
.home-product-card{flex:0 0 clamp(270px,27vw,315px);scroll-snap-align:start;background:#fff;border:1px solid rgba(66,34,13,.08);border-radius:22px;box-shadow:0 14px 38px rgba(47,64,56,.08);overflow:hidden;transition:transform .25s ease,box-shadow .25s ease}
.home-product-card:hover{transform:translateY(-7px);box-shadow:0 20px 45px rgba(47,64,56,.13)}
.home-product-image{display:block;position:relative;aspect-ratio:1/1;overflow:hidden;background:var(--cream-dark)}
.home-product-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}.home-product-card:hover .home-product-image img{transform:scale(1.035)}
.home-product-tag{position:absolute;left:14px;top:14px;padding:7px 11px;border-radius:999px;background:var(--yellow);font-size:9px;font-weight:800;letter-spacing:.8px;color:var(--ink)}
.home-product-info{padding:18px 19px 20px}.home-product-info .product-category{display:block;margin-bottom:7px;font-size:9px;letter-spacing:1.8px;color:var(--terracotta);font-weight:800}.home-product-info h3{font-size:20px;line-height:1.15;margin:0 0 16px;color:var(--ink)}
.home-product-bottom{display:flex;justify-content:space-between;align-items:center;gap:12px}.home-product-price{display:flex;flex-direction:column;line-height:1.1}.home-product-price del{font-size:11px;color:#9a9a93}.home-product-price strong{font-size:18px;color:var(--ink)}
.home-product-bottom button,.recommendation-bottom button{border:0;border-radius:999px;background:var(--ink);color:#fff;padding:10px 14px;font-size:11px;font-weight:700;cursor:pointer;transition:.2s}.home-product-bottom button:hover,.recommendation-bottom button:hover{background:var(--terracotta);transform:translateY(-1px)}
.carousel-side-arrow{position:absolute;z-index:3;top:50%;transform:translateY(-65%);width:46px;height:46px;border:1px solid rgba(66,34,13,.12);border-radius:50%;background:rgba(255,255,255,.96);box-shadow:0 8px 24px rgba(47,64,56,.12);font-size:18px;color:var(--ink);cursor:pointer}.carousel-side-arrow:hover{background:var(--ink);color:#fff}.carousel-side-prev{left:0}.carousel-side-next{right:0}
.category-card{}
.home-category-card{flex:0 0 230px;scroll-snap-align:start;text-decoration:none;border-radius:20px;background:#fff;border:1px solid rgba(66,34,13,.08);overflow:hidden;box-shadow:0 12px 30px rgba(47,64,56,.07);color:var(--ink);transition:transform .25s ease,box-shadow .25s ease}.home-category-card:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(47,64,56,.11)}
.home-category-image{aspect-ratio:1.18/1;background:var(--cream-dark);overflow:hidden}.home-category-image img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .5s ease}.home-category-card:hover img{transform:scale(1.04)}
.home-category-card>div:last-child{padding:16px 17px 18px;display:flex;flex-direction:column}.home-category-card span{font-size:8px;letter-spacing:2px;color:var(--terracotta);font-weight:800}.home-category-card strong{font-size:19px;margin-top:5px}.home-category-card small{margin-top:6px;color:var(--muted);font-size:11px}

/* =====================================================
   PRODUTO — RECOMENDAÇÕES
===================================================== */
.product-recommendations{grid-column:1/-1;margin-top:40px;padding-top:52px;border-top:1px solid rgba(47,64,56,.1)}
.recommendations-heading{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:25px}.recommendations-heading h2{font-size:clamp(36px,4vw,56px);line-height:1;margin:9px 0 0;color:var(--ink)}
.recommendations-controls{display:flex;gap:8px}.recommendations-controls button{width:44px;height:44px;border-radius:50%;border:1px solid rgba(66,34,13,.12);background:#fff;color:var(--ink);cursor:pointer;box-shadow:0 6px 18px rgba(47,64,56,.08)}.recommendations-controls button:hover{background:var(--ink);color:#fff}
.recommendations-track{display:flex;gap:18px;overflow-x:auto;scrollbar-width:none;scroll-snap-type:x proximity;padding:5px 2px 20px}.recommendations-track::-webkit-scrollbar{display:none}
.recommendation-card{flex:0 0 270px;scroll-snap-align:start;background:#fff;border:1px solid rgba(66,34,13,.08);border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(47,64,56,.07)}
.recommendation-image{display:block;aspect-ratio:1/1;background:var(--cream-dark);overflow:hidden}.recommendation-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.recommendation-card:hover img{transform:scale(1.035)}
.recommendation-info{padding:15px 16px 17px}.recommendation-info>span{font-size:8px;letter-spacing:1.7px;color:var(--terracotta);font-weight:800}.recommendation-info h3{font-size:18px;line-height:1.15;margin:6px 0 15px;color:var(--ink)}.recommendation-bottom{display:flex;align-items:center;justify-content:space-between;gap:10px}.recommendation-bottom>div{display:flex;flex-direction:column}.recommendation-bottom del{font-size:10px;color:#999}.recommendation-bottom strong{font-size:17px;color:var(--ink)}
@media (max-width:760px){.home-showcase{padding:70px 4% 82px}.home-categories{padding:10px 4% 75px}.home-section-heading{align-items:flex-start;flex-direction:column;gap:15px}.home-section-heading h2{font-size:38px}.horizontal-product-carousel,.category-carousel{padding:0 8px}.carousel-side-arrow{display:none}.horizontal-product-track,.category-track{padding-left:1px}.home-product-card{flex-basis:78vw}.home-category-card{flex-basis:66vw}.product-recommendations{margin-top:15px}.recommendations-heading{align-items:flex-start}.recommendations-heading h2{font-size:38px}.recommendation-card{flex-basis:75vw}}


/* OPUS — página de produto: informações não ficam presas ao scroll. */
.product-detail .product-information {
    position: static !important;
    top: auto !important;
    align-self: start;
}

/* Recomendações devem aparecer antes das avaliações. */
.product-detail .product-recommendations {
    order: 3;
}
.product-detail .product-reviews {
    order: 4;
}


/* =====================================================
   OPUS — AJUSTE VISUAL FINAL DO INDEX
===================================================== */
/* O hero começa abaixo da navbar e reserva espaço visual para ela. */
.hero {
    margin-top: 78px !important;
    min-height: 0 !important;
    height: min(640px, calc((100vw - 32px) * .6667)) !important;
    max-height: 640px !important;
    border-radius: 0 0 28px 28px;
    background-color: #ece8df !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 22px 55px rgba(80,52,20,.10);
}
.hero::after {
    background: linear-gradient(100deg, rgba(66,34,13,.08), rgba(0,79,42,.015) 52%, rgba(217,120,95,.015) 100%) !important;
}
.hero-content { min-height: 100%; }
.hero-arrow { top: 50%; }
.hero-dots { bottom: 22px; }

/* Fundo das áreas do index mais leve e menos "template". */
.intro,
.home-showcase,
.home-categories,
.home-generator,
.benefits {
    background: #fff !important;
}
.intro { border-top: 0; }
.home-showcase,
.home-categories { position: relative; }
.home-showcase::before,
.home-categories::before {
    content: "";
    position: absolute;
    left: 6%; right: 6%; top: 0;
    height: 1px;
    background: rgba(80,52,20,.08);
}

@media (max-width: 760px) {
    .hero {
        margin-top: 78px !important;
        height: min(430px, calc((100vw - 16px) * .6667)) !important;
        border-radius: 0 0 20px 20px;
    }
}


/* =========================================================
   OPUS — REDESIGN FINAL / VITRINE PREMIUM
   Última camada: corrige o espaçamento do homepage, navbar
   consistente e elimina o aspeto de template/dropshipping.
========================================================= */
:root{
  --opus-bg:#fbfaf7;
  --opus-paper:#f4f0e8;
  --opus-ink:#20362d;
  --opus-muted:#6c746f;
  --opus-line:rgba(32,54,45,.10);
  --opus-accent:#ef7428;
  --opus-accent-dark:#c95518;
}
html,body{background:var(--opus-bg);color:var(--opus-ink)}
body{overflow-x:hidden}

/* NAVBAR */
.header{height:88px;background:rgba(251,250,247,.97)!important;backdrop-filter:blur(18px);border-bottom:1px solid var(--opus-line);box-shadow:0 4px 24px rgba(30,45,39,.045)}
.nav{width:min(1400px,94%);gap:24px}
.brand-lockup{display:inline-flex;align-items:center;gap:11px;flex:0 0 auto;min-width:190px}
.brand-mark{width:46px;height:46px;border-radius:14px;overflow:hidden;border:1px solid rgba(32,54,45,.10);background:#f7f4ee;box-shadow:0 6px 18px rgba(32,54,45,.08);display:grid;place-items:center}
.brand-mark img{width:100%;height:100%;object-fit:cover;object-position:center 78%}
.brand-word{display:flex;flex-direction:column;line-height:1}
.brand-word strong{font-size:18px;letter-spacing:.22em;color:var(--opus-ink);font-weight:800}
.brand-word small{margin-top:5px;font-size:8px;letter-spacing:.14em;text-transform:uppercase;color:#8b918c;font-weight:700}
.nav-links{flex:1;justify-content:center;gap:27px;color:#5f6762;font-size:12px;font-weight:600}
.nav-links a{padding:8px 0;white-space:nowrap}
.nav-links a.active{color:var(--opus-ink)}
.nav-links a.active::after{transform:scaleX(1)}
.nav-links a::after{background:var(--opus-accent);height:2px;bottom:-5px}
.nav-actions{display:flex;align-items:center;gap:9px;flex:0 0 auto}
.site-search{width:clamp(180px,20vw,285px);min-width:0}
.site-search input{height:42px;border-radius:999px;background:#fff;border:1px solid rgba(32,54,45,.13);padding-left:16px;font-size:12px}
.site-search button{width:34px;height:34px;top:4px;right:4px}
.account-nav-link{font-size:11px!important;padding:8px 10px!important;color:var(--opus-ink)!important;border-radius:999px!important}
.cart-button{height:42px;padding:0 14px;border-radius:999px;background:var(--opus-ink);box-shadow:none;border:1px solid var(--opus-ink);font-size:11px}
.cart-button:hover{background:var(--opus-accent);border-color:var(--opus-accent);transform:none}
.cart-button strong{width:19px;height:19px}

/* HERO — banner real, proporção íntegra, abaixo da navbar */
.hero{margin-top:88px!important;height:auto!important;min-height:0!important;max-height:none!important;aspect-ratio:16/7;background:#efeae1!important;position:relative;overflow:hidden;border-radius:0!important;box-shadow:none}
.hero-slide{position:absolute!important;inset:0!important;display:none!important;width:100%!important;height:100%!important}
.hero-slide.active{display:block!important}
.hero-slide img{width:100%;height:100%;object-fit:cover;object-position:center center;display:block}
/* Remove o degradê/"véu" que ficava por cima da imagem do carrossel. Mantém apenas o degradê inferior. */
.hero::after{display:none!important}
.hero::before{height:110px!important;background:linear-gradient(to top,rgba(248,246,241,.98),rgba(248,246,241,.58) 38%,rgba(248,246,241,0) 100%)!important;z-index:5!important}
.hero-arrow{width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.92);border:1px solid rgba(32,54,45,.08);color:var(--opus-ink);box-shadow:0 8px 24px rgba(30,45,39,.12)}
.hero-arrow:hover{background:var(--opus-accent);color:#fff;border-color:var(--opus-accent)}
.hero-prev{left:22px}.hero-next{right:22px}.hero-dots{left:50%;bottom:21px;transform:translateX(-50%);z-index:8}.hero-dot{width:7px;height:7px;background:rgba(32,54,45,.28)}.hero-dot.active{width:30px;height:7px;background:var(--opus-accent);border-radius:99px}

/* HOME — sem “buracos” laterais */
main{width:100%;max-width:none!important;margin:0!important}
.intro{width:100%!important;max-width:none!important;margin:0!important;padding:84px 5% 76px!important;background:var(--opus-bg)!important;border-radius:0!important;text-align:center}
.intro::after{display:none!important}
.intro h2{max-width:900px;margin:10px auto 18px!important;font-size:clamp(40px,5vw,64px)!important;color:var(--opus-ink)!important;letter-spacing:-2px}
.intro p{max-width:700px!important;color:var(--opus-muted)!important}
.info-loop{height:54px!important;min-height:54px!important;margin:0!important;border-radius:0!important;box-shadow:none;background:var(--opus-ink)!important}
.home-showcase,.home-categories{width:100%;padding:88px 5% 96px!important;background:#fff!important;overflow:hidden}
.home-categories{padding-top:58px!important;background:var(--opus-bg)!important}
.home-section-heading{width:min(1320px,100%)!important;margin:0 auto 28px!important;align-items:end!important}
.home-section-heading h2{font-size:clamp(34px,4vw,54px)!important;letter-spacing:-1.6px!important;color:var(--opus-ink)!important}
.home-section-link{font-size:11px;color:var(--opus-ink)}
.horizontal-product-carousel,.category-carousel{width:min(1320px,100%)!important;padding:0 4px!important}
.horizontal-product-track,.category-track{gap:18px!important;padding:5px 2px 16px!important;overflow-x:auto!important;scroll-snap-type:x mandatory}
.home-product-card{flex:0 0 288px!important;border-radius:18px!important;border:1px solid rgba(32,54,45,.09)!important;box-shadow:0 10px 28px rgba(32,54,45,.07)!important}
.home-product-image{aspect-ratio:1/1!important;background:#eee9df}
.home-product-info{padding:17px 18px 19px!important}.home-product-info h3{font-size:17px!important;color:var(--opus-ink)!important;margin-bottom:14px!important}
.home-product-bottom button{background:var(--opus-ink)!important;padding:9px 13px!important}
.carousel-side-arrow{width:42px;height:42px;box-shadow:0 8px 22px rgba(32,54,45,.12);background:#fff}
.home-category-card{flex:0 0 235px!important;border-radius:18px!important;box-shadow:0 10px 25px rgba(32,54,45,.06)!important}
.home-category-image{aspect-ratio:1.16/1!important}

/* GERADOR — bloco de produto premium */
.home-generator{padding:96px 5%!important;background:var(--opus-paper)!important}
.home-generator-grid{width:min(1240px,100%);max-width:none!important;margin:32px auto 0!important;gap:20px!important}
.home-generator-upload,.home-generator-preview{border-radius:20px!important;background:rgba(255,255,255,.78)!important;box-shadow:none!important;border:1px solid rgba(32,54,45,.10)!important}

/* BENEFÍCIOS / MANIFESTO / NEWSLETTER */
.benefits{padding:84px 5% 82px!important;background:var(--opus-ink)!important}
.benefits-grid{width:min(1200px,100%)!important;grid-template-columns:repeat(3,1fr)!important;gap:1px!important;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12);border-radius:22px;overflow:hidden}
.benefit{padding:34px 28px!important;background:transparent!important;text-align:left!important}.benefit-icon{width:44px!important;height:44px!important;margin:0 0 18px!important}.benefit h3{color:#fff}.benefit p{color:rgba(255,255,255,.68)}
.manifesto{width:min(1040px,90%);margin:0 auto;padding:98px 0;background:var(--opus-bg)!important;text-align:center}
.manifesto blockquote{max-width:900px;margin:auto;font-size:clamp(32px,4vw,58px);line-height:1.05;letter-spacing:-1.7px;color:var(--opus-ink)}
.manifesto span{display:block;margin-top:18px;color:var(--opus-accent);font-weight:800;font-size:10px;letter-spacing:.18em}
.newsletter{padding:74px 5% 92px!important;background:var(--opus-paper)!important;text-align:center}
.newsletter h2{font-size:clamp(36px,4vw,54px)!important;color:var(--opus-ink)}
.newsletter p{max-width:560px;margin:12px auto 22px;color:var(--opus-muted)}
.newsletter-form{display:flex;justify-content:center;max-width:590px;margin:auto;gap:8px}.newsletter-form input{flex:1;border:1px solid rgba(32,54,45,.14);border-radius:999px;padding:0 18px;min-height:50px;background:#fff}

/* FOOTER */
footer{background:#172922!important;color:#fff!important;border-top:1px solid rgba(255,255,255,.06)}
.footer-container{width:min(1320px,90%)!important;padding:68px 0 52px!important}.footer-logo img{width:82px!important;height:82px!important;border-radius:18px;object-fit:cover;object-position:center 78%}.footer-brand p,.footer-container a,.footer-container p{color:rgba(255,255,255,.66)}.footer-container h4{color:#fff}.copyright{width:min(1320px,90%)!important;color:rgba(255,255,255,.45)!important;border-top:1px solid rgba(255,255,255,.10);padding:18px 0}

/* POLICY / INFO PAGES */
.policy-page,.how-page,.about-page{width:min(1240px,92%)!important;max-width:none!important;padding:145px 0 90px!important;margin:0 auto!important}
.policy-page{background:var(--opus-bg)}
.policy-brand{display:flex;align-items:center;gap:14px;margin-bottom:28px}.policy-brand img{width:64px;height:64px;border-radius:16px;object-fit:cover;object-position:center 78%;border:1px solid rgba(32,54,45,.10);background:#f7f4ee}.policy-brand small{display:block;margin-top:4px;color:#88908a;font-size:10px;text-transform:uppercase;letter-spacing:.16em;font-weight:700}
.policy-page h1,.about-page h1{font-size:clamp(46px,6vw,76px)!important;letter-spacing:-2.8px!important;color:var(--opus-ink)!important}.policy-page section{max-width:860px;padding:28px 0;margin-top:0!important;border-top:1px solid var(--opus-line)}.policy-page h2{font-size:30px!important;color:var(--opus-ink)}
.about-hero{padding:35px 0 80px;max-width:850px}.about-hero h1{margin:14px 0 20px}.about-hero h1 em{color:var(--opus-accent);font-style:normal}.about-hero p{max-width:690px;font-size:17px;line-height:1.8;color:var(--opus-muted)}.about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.about-grid article{padding:30px;border-radius:20px;background:#fff;border:1px solid var(--opus-line);box-shadow:0 14px 30px rgba(32,54,45,.05)}.about-grid article>span{color:var(--opus-accent);font-size:11px;font-weight:800;letter-spacing:.15em}.about-grid h2{margin:17px 0 9px;font-size:24px}.about-grid p{color:var(--opus-muted);line-height:1.7}

/* páginas que tinham só <nav> passam a respeitar o header fixo */


@media(max-width:1050px){.nav-links{gap:16px}.brand-lockup{min-width:160px}.site-search{width:210px}.account-nav-link{display:none}.about-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.header{height:76px}.nav{width:92%}.brand-word small{display:none}.brand-mark{width:42px;height:42px}.nav-links{display:none}.site-search{width:42px}.site-search input{opacity:0;cursor:pointer;padding:0}.site-search:focus-within{position:absolute;right:66px;width:230px}.site-search:focus-within input{opacity:1;padding:0 44px 0 15px}.cart-button span{display:none}.hero{margin-top:76px!important;aspect-ratio:1/0.72}.home-showcase,.home-categories{padding:66px 4% 72px!important}.home-section-heading{align-items:flex-start!important;flex-direction:column!important;gap:15px!important}.home-product-card{flex-basis:78vw!important}.home-category-card{flex-basis:69vw!important}.benefits-grid{grid-template-columns:1fr!important}.manifesto{padding:76px 0}.newsletter-form{flex-direction:column}.policy-page,.how-page,.about-page{padding-top:112px!important}.about-grid{grid-template-columns:1fr}}


/* AJUSTES FINAIS — navbar, preço e recomendações */
.header{border-bottom:0!important;box-shadow:none!important}
.hero{margin-top:88px!important}
.product-price-commerce{display:flex!important;align-items:center!important;gap:14px!important;flex-wrap:nowrap!important}
.product-price-main{display:flex;align-items:baseline;gap:8px;white-space:nowrap}
.shipping-calculated-badge{display:inline-flex!important;align-items:center;white-space:nowrap;margin:0!important}
@media(max-width:760px){.product-price-commerce{flex-wrap:wrap!important;gap:10px!important}.hero{margin-top:76px!important}}

/* Admin — produtos sugeridos */
.recommendations-admin{margin-top:18px;padding-top:16px;border-top:1px solid var(--line)}
.recommendations-admin-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}.recommendations-admin-head strong{display:block;font-size:14px}.recommendations-admin-head small{display:block;color:var(--muted);font-size:10px;line-height:1.5;margin-top:3px}
.recommendations-picker{display:flex;gap:8px;margin-bottom:12px}.recommendations-picker select{margin:0!important;flex:1}.recommendations-picker button{border:0;border-radius:9px;padding:0 13px;background:var(--ink);color:#fff;font-weight:800;cursor:pointer}
.recommendations-list{display:grid;gap:7px}.recommendation-admin-item{display:grid;grid-template-columns:30px 42px minmax(0,1fr) auto;align-items:center;gap:9px;padding:7px;border:1px solid var(--line);border-radius:10px;background:#fff;cursor:grab}.recommendation-admin-item.dragging{opacity:.45}.recommendation-admin-handle{font-size:17px;color:var(--muted);text-align:center;user-select:none}.recommendation-admin-thumb{width:42px;height:42px;border-radius:7px;object-fit:cover;background:#f4f5f3}.recommendation-admin-copy{min-width:0}.recommendation-admin-copy strong{display:block;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.recommendation-admin-copy small{display:block;color:var(--muted);font-size:9px;margin-top:2px}.recommendation-admin-remove{width:28px;height:28px;border:1px solid var(--line);border-radius:7px;background:#fff;color:var(--red);cursor:pointer;font-size:17px}.recommendations-empty{padding:12px;border:1px dashed var(--line);border-radius:10px;color:var(--muted);font-size:10px;text-align:center}

/* CORREÇÃO FINAL — elimina qualquer filete claro entre navbar e carrossel */
.header{border-bottom:0!important;box-shadow:none!important}
.hero{margin-top:88px!important;border-top:0!important;outline:0!important;background:#efeae1!important}
.hero-slide{overflow:hidden!important}
.hero-slide img{display:block!important;transform:translateY(-2px) scale(1.003)!important;transform-origin:center top!important;width:100%!important;height:calc(100% + 2px)!important}

#opus-seasonal-layer{position:fixed;inset:0;pointer-events:none;z-index:40;overflow:hidden}.opus-snow{position:absolute;inset:0}.opus-snow i{position:absolute;top:-12px;left:var(--x);width:var(--s);height:var(--s);border-radius:50%;background:rgba(255,255,255,.9);filter:blur(.2px);animation:opusSnow var(--d) linear infinite;animation-delay:var(--delay)}@keyframes opusSnow{to{transform:translate3d(7vw,110vh,0) rotate(360deg)}}.opus-gifts{position:absolute;right:18px;bottom:92px;display:flex;flex-direction:column;gap:8px;align-items:flex-end;font-size:31px;filter:drop-shadow(0 5px 8px rgba(20,30,20,.12))}.opus-gifts span:nth-child(2){font-size:25px;margin-right:28px}.opus-gifts span:nth-child(3){font-size:20px;margin-right:8px}.opus-lights{position:absolute;top:0;left:0;right:0;height:18px;display:flex;justify-content:space-around;align-items:flex-start;padding:0 5vw}.opus-lights:before{content:'';position:absolute;top:4px;left:0;right:0;height:1px;background:rgba(40,50,45,.28)}.opus-lights i{position:relative;width:10px;height:10px;border-radius:50%;margin-top:3px;background:#fff;box-shadow:0 0 10px currentColor;animation:opusBlink 1.8s ease-in-out infinite;animation-delay:calc(var(--i)*-.1s)}@keyframes opusBlink{50%{opacity:.35;transform:scale(.8)}}html[data-opus-theme="halloween"] #opus-seasonal-layer{filter:hue-rotate(18deg)}html[data-opus-theme="namorados"] #opus-seasonal-layer{filter:saturate(1.15)}html[data-opus-theme="verao"] #opus-seasonal-layer{opacity:.82}@media(max-width:600px){.opus-gifts{right:8px;bottom:78px;font-size:24px}.opus-lights{padding:0 2vw}}

/* TEMAS SAZONAIS — decoração específica */
#opus-seasonal-layer{position:fixed;inset:0;pointer-events:none;z-index:40;overflow:hidden}
.opus-snow{position:absolute;inset:0}.opus-snow i{position:absolute;top:-12px;left:var(--x);width:var(--s);height:var(--s);border-radius:50%;background:rgba(255,255,255,.92);animation:opusSnow var(--d) linear infinite;animation-delay:var(--delay)}
@keyframes opusSnow{to{transform:translate3d(7vw,110vh,0) rotate(360deg)}}
.opus-gifts{position:absolute;right:18px;bottom:92px;display:flex;flex-direction:column;gap:8px;align-items:flex-end;font-size:31px;filter:drop-shadow(0 5px 8px rgba(20,30,20,.12))}.opus-gifts span:nth-child(2){font-size:25px;margin-right:28px}.opus-gifts span:nth-child(3){font-size:20px;margin-right:8px}
.opus-lights{position:absolute;top:0;left:0;right:0;height:18px;display:flex;justify-content:space-around;align-items:flex-start;padding:0 5vw}.opus-lights:before{content:'';position:absolute;top:4px;left:0;right:0;height:1px;background:rgba(40,50,45,.28)}.opus-lights i{position:relative;width:10px;height:10px;border-radius:50%;margin-top:3px;background:#fff;box-shadow:0 0 10px #e8be62;animation:opusBlink 1.8s ease-in-out infinite;animation-delay:calc(var(--i)*-.1s)}@keyframes opusBlink{50%{opacity:.35;transform:scale(.8)}}
.opus-sparkles{position:absolute;inset:0;font-size:22px}.opus-sparkles span{position:absolute;animation:opusTwinkle 2s ease-in-out infinite}.opus-sparkles span:nth-child(1){top:12%;left:9%}.opus-sparkles span:nth-child(2){top:20%;right:14%;animation-delay:.5s}.opus-sparkles span:nth-child(3){bottom:20%;left:17%;animation-delay:1s}.opus-sparkles span:nth-child(4){bottom:15%;right:18%;animation-delay:1.5s}.opus-sparkles span:nth-child(5){top:42%;left:50%;animation-delay:.8s}@keyframes opusTwinkle{50%{opacity:.3;transform:scale(.7) rotate(15deg)}}
.opus-hearts,.opus-eggs,.opus-bats{position:absolute;inset:0}.opus-hearts span,.opus-eggs span,.opus-bats span{position:absolute;font-size:28px;animation:opusFloat 4s ease-in-out infinite}.opus-hearts span:nth-child(1){top:18%;left:8%}.opus-hearts span:nth-child(2){top:28%;right:10%;animation-delay:1s}.opus-hearts span:nth-child(3){bottom:18%;left:50%;animation-delay:2s}.opus-eggs span:nth-child(1){top:16%;left:8%}.opus-eggs span:nth-child(2){top:24%;right:10%;animation-delay:1s}.opus-eggs span:nth-child(3){bottom:18%;left:14%;animation-delay:2s}.opus-bats span:nth-child(1){top:16%;left:8%}.opus-bats span:nth-child(2){top:28%;right:12%;animation-delay:1s}.opus-bats span:nth-child(3){bottom:16%;left:15%;animation-delay:2s}@keyframes opusFloat{50%{transform:translateY(-10px) rotate(3deg)}}
.opus-sun{position:absolute;top:86px;right:24px;font-size:42px;opacity:.24;animation:opusPulse 3s ease-in-out infinite}@keyframes opusPulse{50%{opacity:.4;transform:scale(1.05)}}
@media(max-width:600px){.opus-gifts{right:8px;bottom:78px;font-size:24px}.opus-lights{padding:0 2vw}.opus-sparkles,.opus-hearts,.opus-eggs,.opus-bats{opacity:.8}}


/* =========================================================
   OPUS — PERSONALIZADO / ESTRUTURA DE PRODUTO
========================================================= */
.custom-product{padding:145px 5% 55px;background:var(--opus-cream,#F7F3EC);}
.custom-product-layout{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:72px;align-items:start;}
.custom-product-gallery{position:relative;top:auto;}
.custom-photo-gallery{display:grid;grid-template-columns:88px minmax(0,1fr);gap:16px;align-items:stretch;}
.custom-photo-thumbs{display:flex;flex-direction:column;gap:12px;}
.custom-photo-thumb{border:1px solid rgba(47,64,56,.12);background:#fff;border-radius:16px;padding:7px;cursor:pointer;text-align:left;transition:.25s ease;color:#6f625b;}
.custom-photo-thumb:hover,.custom-photo-thumb.active{border-color:var(--terracotta,#F05A24);box-shadow:0 10px 24px rgba(66,34,13,.08);transform:translateY(-1px);}
.custom-photo-thumb>span{display:block;font-size:8px;font-weight:700;letter-spacing:.08em;margin:3px 4px 7px;}
.custom-photo-thumb-media{aspect-ratio:3/4;border-radius:10px;background:linear-gradient(145deg,#ebe5da,#d7c8b5);display:grid;place-items:center;overflow:hidden;font-size:9px;color:#8d7e76;}
.custom-photo-thumb.is-ready .custom-photo-thumb-media{background:#eee;}
.custom-photo-main{position:relative;min-height:620px;border-radius:24px 74px 24px 24px;overflow:hidden;background:linear-gradient(145deg,#eee8df,#d9cbb9);box-shadow:0 24px 55px rgba(66,34,13,.11);display:grid;place-items:center;}
.custom-photo-main::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(255,255,255,.08),transparent 45%,rgba(28,20,14,.08));}
.custom-photo-main-image{display:none;width:100%;height:100%;object-fit:cover;position:absolute;inset:0;z-index:1;}
.custom-photo-main-image.visible{display:block;}
.custom-photo-empty{position:relative;z-index:2;text-align:center;max-width:360px;padding:40px;}
.custom-photo-empty[hidden]{display:none;}
.custom-photo-empty strong{display:block;margin:16px 0 10px;font:500 clamp(36px,4vw,58px)/.95 Montserrat,Georgia,serif;color:#42220D;letter-spacing:-.04em;}
.custom-photo-empty strong em{font-style:normal;color:var(--terracotta,#F05A24);}
.custom-photo-empty p{color:#766c66;line-height:1.7;font-size:13px;}
.custom-photo-main-badge{position:absolute;z-index:3;left:20px;bottom:20px;background:rgba(255,255,255,.88);backdrop-filter:blur(10px);border-radius:999px;padding:9px 13px;font-size:8px;font-weight:700;letter-spacing:.12em;color:#42220D;}
.custom-gallery-note{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-top:20px;padding:18px 0 0;border-top:1px solid rgba(47,64,56,.1);}
.custom-gallery-note span{font-size:8px;letter-spacing:.16em;font-weight:700;color:var(--terracotta,#F05A24);white-space:nowrap;}
.custom-gallery-note p{margin:0;max-width:420px;color:#766c66;font-size:12px;line-height:1.6;}
.custom-product-info{padding-top:12px;}
.custom-preview-section{padding:105px 5% 120px;background:#fff;}
.custom-preview-section-heading{max-width:760px;margin:0 auto 50px;text-align:center;}
.custom-preview-section-heading h2{margin:15px 0;font:500 clamp(42px,5vw,68px)/.98 Montserrat,Georgia,serif;color:#42220D;letter-spacing:-.04em;}
.custom-preview-section-heading h2 em{font-style:normal;color:#F05A24;}
.custom-preview-section-heading p{max-width:680px;margin:auto;color:#766c66;line-height:1.75;font-size:14px;}
.custom-preview-showcase{max-width:1120px;margin:auto;}
.custom-preview-card{background:#f5f1e9;border-radius:28px;padding:22px;box-shadow:0 20px 60px rgba(66,34,13,.08);}
.custom-preview-card .custom-preview{min-height:640px;border-radius:20px;overflow:hidden;}
.custom-room-editor{max-width:1120px;margin:70px auto 0;}
.custom-room-editor-head{text-align:center;margin-bottom:26px;}
.custom-room-editor-head h2{font:500 36px/1.1 Montserrat,Georgia,serif;color:#42220D;margin:12px 0;}
.custom-room-editor-head p{color:#766c66;font-size:13px;}
.custom-recommendations{padding:100px 5% 110px;background:var(--opus-cream,#F7F3EC);}
.custom-recommendations-heading{max-width:1240px;margin:0 auto 34px;display:flex;align-items:end;justify-content:space-between;gap:25px;}
.custom-recommendations-heading h2{margin:12px 0 0;font:500 clamp(38px,4vw,58px)/1 Montserrat,Georgia,serif;color:#42220D;letter-spacing:-.04em;}
.custom-recommendations-track{max-width:1240px;margin:auto;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.custom-recommendation-card{min-width:0;}
.custom-recommendation-card a{display:block;color:inherit;text-decoration:none;}
.custom-recommendation-image{aspect-ratio:4/5;border-radius:18px;overflow:hidden;background:#e9e1d5;}
.custom-recommendation-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease;}
.custom-recommendation-card:hover img{transform:scale(1.035);}
.custom-recommendation-meta{padding:13px 3px;}
.custom-recommendation-meta span{font-size:8px;letter-spacing:.13em;color:#8d7e76;font-weight:700;}
.custom-recommendation-meta h3{font-size:15px;margin:6px 0;color:#42220D;font-weight:600;}
.custom-recommendation-meta strong{font-size:14px;color:#F05A24;}
.custom-recommendations-empty{color:#766c66;}
.custom-product + .custom-preview-section + .custom-recommendations + .custom-reviews{padding-top:105px;}
@media(max-width:900px){.custom-product-layout{grid-template-columns:1fr;gap:45px;}.custom-photo-main{min-height:560px;}.custom-recommendations-track{grid-template-columns:repeat(2,minmax(0,1fr));}.custom-recommendations-heading{align-items:flex-start;flex-direction:column;}}
@media(max-width:600px){.custom-product{padding:110px 16px 50px;}.custom-photo-gallery{grid-template-columns:1fr;}.custom-photo-thumbs{order:2;display:grid;grid-template-columns:1fr 1fr;}.custom-photo-main{min-height:460px;border-radius:20px 48px 20px 20px;}.custom-preview-section{padding:75px 16px 85px;}.custom-preview-card{padding:10px;border-radius:20px;}.custom-preview-card .custom-preview{min-height:430px;border-radius:14px;}.custom-room-editor{margin-top:48px;}.custom-recommendations{padding:75px 16px 80px;}.custom-recommendations-track{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}}

/* Footer partilhado — garante separação consistente em páginas curtas */
#site-footer{width:100%;}
#site-footer footer{margin-top:0;}

/* =========================================================
   OPUS — SIMULAÇÃO REALISTA NA PAREDE
   A cena usa uma fotografia de ambiente realista como fundo;
   a pintura personalizada é aplicada sobre a moldura.
========================================================= */
.room-scene{
  aspect-ratio:16/7;
  min-height:430px;
  background:#d8d0c4;
  border-radius:20px;
  overflow:hidden;
}
.room-wall{
  inset:0;
  background-image:url('../images/themes/opus-room-simulation.jpg');
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}
.room-wall:after,.room-wall .wall-light,.room-wall .room-sofa,.room-wall .room-table,.room-wall .room-plant{display:none!important}
.room-frame-shadow{
  width:25.5%;
  height:58%;
  left:37.25%;
  top:8%;
  transform:perspective(1200px) rotateY(-1.5deg);
  filter:drop-shadow(0 18px 20px rgba(35,25,18,.30));
}
.room-frame{
  background:linear-gradient(135deg,#5c4533,#8b6b4c 46%,#4c392b);
  padding:8px;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.16),inset 0 0 0 5px rgba(42,30,21,.38);
}
.room-mat{inset:8px;padding:9px;background:#eee9df;box-shadow:inset 0 0 0 1px rgba(60,45,32,.12)}
.room-artboard{background:#eee9df;box-shadow:inset 0 0 0 1px rgba(35,25,18,.08)}
.room-art-clip{box-shadow:inset 0 0 24px rgba(40,30,20,.10)}
.room-artwork-image{width:88%;filter:saturate(.92) contrast(1.03)}
.room-selection{width:78%;height:78%}
.custom-room-hint{max-width:820px;margin:12px auto 0;text-align:center;font-size:.78rem}
@media(max-width:760px){
  .room-scene{aspect-ratio:4/3;min-height:340px}
  .room-frame-shadow{width:34%;height:52%;left:33%;top:9%}
}

/* =========================================================
   OPUS — CORREÇÃO FINAL: PERSONALIZADO E MOLDURAS QUADRADAS
========================================================= */
/* A página personalizada volta a usar o layout completo e legível. */
body:has(.custom-product){background:#fff;color:#17382e;}
body:has(.custom-product) #opus-seasonal-layer{display:none!important;}

/* Molduras/imagens dos produtos sem cantos arredondados. */
.product-card,
.product-card .product-image,
.product-card .product-image img,
.collection-product-card,
.collection-product-image,
.collection-product-image img,
.custom-recommendation-image,
.custom-recommendation-image img{border-radius:0!important;}

/* Evita formatos especiais em produtos alternados da coleção. */
.collection-product-card:nth-child(2) .collection-product-image,
.collection-product-card:nth-child(3) .collection-product-image,
.collection-product-card:nth-child(4) .collection-product-image{border-radius:0!important;}

.custom-photo-gallery{display:grid;grid-template-columns:92px minmax(0,1fr);gap:18px;align-items:stretch}.custom-painted-thumbs{display:flex!important;flex-direction:column;gap:12px}.custom-photo-thumb{border:1px solid rgba(17,70,57,.16);background:#fff;padding:7px;border-radius:0!important;cursor:pointer}.custom-photo-thumb.active{border-color:#0c4b3d;box-shadow:0 0 0 1px #0c4b3d}.custom-photo-thumb>span{display:block;font-size:8px;letter-spacing:.08em;font-weight:800;margin-bottom:5px}.custom-photo-thumb-media{aspect-ratio:1/1;border-radius:0!important;overflow:hidden;background:#eee8df}.custom-photo-thumb-media img{width:100%;height:100%;display:block;object-fit:cover}.custom-photo-main{border-radius:0!important;overflow:hidden;position:relative;background:#eee8df}.custom-photo-main img{width:100%;height:100%;min-height:620px;display:block;object-fit:cover}.custom-photo-main-badge{position:absolute;left:16px;bottom:16px;background:#fff;padding:8px 12px;font-size:10px;font-weight:800;letter-spacing:.1em}.custom-recommendations{display:block!important;visibility:visible!important;opacity:1!important}.custom-recommendation-image,.custom-recommendation-image img{border-radius:0!important}@media(max-width:900px){.custom-photo-gallery{grid-template-columns:1fr}.custom-painted-thumbs{order:2;display:grid!important;grid-template-columns:repeat(4,1fr);flex-direction:row}.custom-photo-main img{min-height:420px}}

#opus-cookie-banner{position:fixed;left:20px;right:20px;bottom:20px;z-index:99999;display:flex;justify-content:space-between;align-items:center;gap:24px;padding:18px 20px;background:#073f34;color:#fff;box-shadow:0 12px 40px rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.16)}#opus-cookie-banner p{margin:5px 0 0;max-width:760px;font-size:13px;line-height:1.45;opacity:.9}.opus-cookie-actions{display:flex;gap:10px;flex-shrink:0}.opus-cookie-actions button{border:1px solid rgba(255,255,255,.45);background:transparent;color:#fff;padding:10px 14px;cursor:pointer}.opus-cookie-actions .primary{background:#fff;color:#073f34;border-color:#fff;font-weight:700}@media(max-width:700px){#opus-cookie-banner{left:10px;right:10px;bottom:10px;display:block}.opus-cookie-actions{margin-top:12px;justify-content:flex-end;flex-wrap:wrap}}


/* =========================================================
   OPUS — AJUSTES FINAIS: MENU MOBILE + DESCOBERTA DA COLEÇÃO
========================================================= */
.nav{position:relative;}
.mobile-nav-toggle{display:none;width:42px;height:42px;border:1px solid rgba(32,54,45,.13);border-radius:50%;background:#fff;align-items:center;justify-content:center;flex-direction:column;gap:4px;cursor:pointer;padding:0;flex:0 0 auto;z-index:12;}
.mobile-nav-toggle span{display:block;width:17px;height:2px;border-radius:2px;background:var(--opus-ink,#20362d);transition:transform .2s ease,opacity .2s ease;}
.home-discovery{background:#fff;}
.home-discovery>.home-showcase,.home-discovery>.home-categories{background:transparent!important;}
.home-discovery>.home-showcase::before{display:none;}
.home-random-products{padding:96px 5% 110px;background:var(--opus-paper,#f7f3ec);border-top:1px solid rgba(32,54,45,.08);}
.home-random-products>.home-section-heading{margin-bottom:34px;}
.random-products-intro{max-width:360px;margin:0;color:var(--opus-muted,#737b75);font-size:12px;line-height:1.65;}
.random-products-grid{width:min(1240px,100%);margin:0 auto;display:flex;flex-direction:column;gap:24px;}
.random-products-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.random-product-card{min-width:0!important;flex:initial!important;}
.random-product-card .home-product-image{aspect-ratio:1/1;}
@media(max-width:760px){
  .mobile-nav-toggle{display:flex;}
  .nav-links{display:none;}
  .nav.mobile-menu-open .nav-links{display:flex;position:absolute;left:0;right:0;top:calc(100% + 10px);z-index:20;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:2px;padding:10px;background:rgba(255,255,255,.98);border:1px solid rgba(32,54,45,.10);border-radius:18px;box-shadow:0 18px 45px rgba(32,54,45,.14);}
  .nav.mobile-menu-open .nav-links a{display:block!important;padding:13px 14px;border-radius:11px;font-size:13px;}
  .nav.mobile-menu-open .nav-links a:hover,.nav.mobile-menu-open .nav-links a.active{background:#f7f3ec;}
  .nav.mobile-menu-open .mobile-nav-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  .nav.mobile-menu-open .mobile-nav-toggle span:nth-child(2){opacity:0;}
  .nav.mobile-menu-open .mobile-nav-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
  .home-random-products{padding:72px 4% 82px;}
  .random-products-intro{max-width:100%;}
  .random-products-grid{gap:16px;}
  .random-products-row{display:flex;gap:12px;overflow-x:auto;scrollbar-width:none;padding:2px 1px 12px;scroll-snap-type:x proximity;}
  .random-products-row::-webkit-scrollbar{display:none;}
  .random-product-card{flex:0 0 72vw!important;scroll-snap-align:start;}
}
@media(min-width:761px){
  .custom-product-info{max-width:430px;width:100%;justify-self:end;}
  .custom-product-layout{grid-template-columns:minmax(0,1fr) minmax(390px,430px);gap:56px;}
}


/* =========================================================
   OPUS — CORREÇÃO FINAL: MENU MOBILE + DESCOBERTA UNIFICADA
   + PROPORÇÃO DA PÁGINA PERSONALIZADA
========================================================= */

/* A área de Destaques + Categorias é uma única área visual contínua. */
.home-discovery{
  width:100%;
  background:var(--opus-bg,#f8f6f1)!important;
  overflow:hidden;
  padding:0!important;
}
.home-discovery-inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
}
.home-discovery .home-showcase,
.home-discovery .home-categories{
  width:100%!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.home-discovery .home-showcase{
  padding:88px 5% 38px!important;
}
.home-discovery .home-categories{
  padding:24px 5% 92px!important;
}
.home-discovery .home-category-heading{
  margin-bottom:22px!important;
}
.home-discovery .home-category-heading h2{
  font-size:clamp(28px,3.2vw,42px)!important;
  letter-spacing:-1.2px!important;
}
.home-discovery .home-category-heading .section-label{
  font-size:9px;
}

/* Menu hamburger: força a presença em ecrãs pequenos e coloca-o no lado direito. */
@media(max-width:760px){
  .nav{
    position:relative!important;
    width:92%!important;
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
  }
  .brand-lockup{order:1!important;min-width:0!important;}
  .nav-actions{order:2!important;margin-left:auto!important;gap:6px!important;}
  .mobile-nav-toggle{
    order:3!important;
    display:flex!important;
    visibility:visible!important;
    opacity:1!important;
    position:relative!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    flex:0 0 42px!important;
    margin:0!important;
    padding:0!important;
    border:1px solid rgba(32,54,45,.16)!important;
    border-radius:50%!important;
    background:#fff!important;
    z-index:1002!important;
  }
  .mobile-nav-toggle span{display:block!important;visibility:visible!important;}
  .nav-links{
    display:none!important;
  }
  .nav.mobile-menu-open .nav-links{
    display:flex!important;
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:calc(100% + 10px)!important;
    z-index:1001!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:3px!important;
    padding:10px!important;
    background:rgba(255,255,255,.98)!important;
    border:1px solid rgba(32,54,45,.12)!important;
    border-radius:18px!important;
    box-shadow:0 18px 45px rgba(32,54,45,.18)!important;
  }
  .nav.mobile-menu-open .nav-links a{
    display:block!important;
    width:100%!important;
    box-sizing:border-box!important;
    padding:13px 14px!important;
    border-radius:11px!important;
    font-size:14px!important;
  }
  .nav.mobile-menu-open .nav-links a.active,
  .nav.mobile-menu-open .nav-links a:hover{background:#f7f3ec!important;}

  .home-discovery .home-showcase{padding:66px 4% 30px!important;}
  .home-discovery .home-categories{padding:20px 4% 72px!important;}
  .home-discovery .home-category-heading h2{font-size:34px!important;}
}

/* Desktop: a coluna de compra fica com praticamente a mesma largura da fotografia. */
@media(min-width:1001px){
  .custom-product-layout{
    width:min(980px,100%);
    max-width:980px!important;
    grid-template-columns:minmax(0,510px) minmax(390px,420px)!important;
    gap:50px!important;
  }
  .custom-product-info{
    width:100%!important;
    max-width:420px!important;
    justify-self:end!important;
  }
}

@media(max-width:1000px) and (min-width:761px){
  .custom-product-layout{width:min(920px,100%);max-width:920px!important;}
}

@media(max-width:760px){
  .custom-product-info{width:100%!important;max-width:none!important;}
}

/* =========================================================
   OPUS — ALINHAMENTO PERSONALIZADO: FOTO E COLUNA DIREITA
   A coluna de opções deve começar no mesmo nível do topo da
   fotografia principal, e não ficar visualmente mais abaixo.
========================================================= */
@media(min-width:901px){
  .custom-product-layout{align-items:start!important;}
  .custom-product-info{padding-top:0!important;margin-top:-2px!important;}
  .custom-product-info > .section-label{display:block;margin-top:0!important;}
}

/* =========================================================
   OPUS — PERSONALIZADO: ALINHAMENTO + RECOMENDADOS
   A coluna de compra começa exatamente no topo da galeria.
   Os recomendados usam os mesmos cartões da página de produto.
========================================================= */
@media (min-width: 901px){
  .custom-product-layout{
    align-items:start !important;
  }
  .custom-product-gallery,
  .custom-product-info{
    align-self:start !important;
  }
  .custom-product-info{
    padding-top:0 !important;
    margin-top:0 !important;
  }
}

/* Mantém os recomendados visualmente iguais aos da página de produto. */
.custom-recommendations{
  padding-left:5%;
  padding-right:5%;
}
.custom-recommendations .recommendations-track{
  max-width:1240px;
  margin:0 auto;
}
.custom-recommendations .recommendation-card{
  flex:0 0 270px;
}
.custom-recommendations .recommendation-image{
  aspect-ratio:1/1;
}
.custom-recommendations .recommendation-info{
  padding:15px 16px 17px;
}
@media(max-width:760px){
  .custom-recommendations{
    padding-left:4%;
    padding-right:4%;
  }
  .custom-recommendations .recommendation-card{
    flex-basis:75vw;
  }
}

/* =========================================================
   OPUS — AJUSTE FINAL DAS FILEIRAS DE PRODUTOS
   Cards compactos e proporcionais, sem esticar a seção.
========================================================= */
.home-showcase,.home-categories{padding-top:58px!important;padding-bottom:64px!important;}
.home-section-heading{margin-bottom:20px!important;}
.horizontal-product-carousel,.category-carousel{width:min(1240px,92vw)!important;margin:0 auto!important;padding:0 8px!important;}
.horizontal-product-track,.category-track{gap:14px!important;padding:4px 2px 12px!important;align-items:stretch!important;}
.home-product-card{flex:0 0 248px!important;width:248px!important;border-radius:14px!important;}
.home-product-image{aspect-ratio:1/1!important;}
.home-product-info{padding:13px 14px 14px!important;}
.home-product-info .product-category{margin-bottom:5px!important;font-size:8px!important;}
.home-product-info h3{font-size:15px!important;line-height:1.2!important;margin-bottom:10px!important;}
.home-product-bottom button{padding:8px 11px!important;font-size:10px!important;}
.home-category-card{flex:0 0 205px!important;width:205px!important;border-radius:14px!important;}
.home-category-image{aspect-ratio:1.18/1!important;}
.home-category-card>div:last-child{padding:12px 13px 14px!important;}
.home-category-card strong{font-size:16px!important;}
.home-category-card small{font-size:10px!important;}
.home-random-products{padding-top:68px!important;padding-bottom:78px!important;}
.random-products-grid{width:min(1240px,92vw)!important;}
.random-products-row{gap:14px!important;}
.random-product-card{width:auto!important;flex:initial!important;}
@media(max-width:1100px){
  .home-product-card{flex-basis:225px!important;width:225px!important;}
  .home-category-card{flex-basis:190px!important;width:190px!important;}
}
@media(max-width:760px){
  .home-showcase,.home-categories{padding:48px 4% 58px!important;}
  .home-product-card{flex-basis:72vw!important;width:72vw!important;}
  .home-category-card{flex-basis:64vw!important;width:64vw!important;}
  .home-random-products{padding:58px 4% 68px!important;}
  .random-products-grid{width:100%!important;}
}

/* =========================================================
   OPUS — FILEIRAS COMPACTAS V6
   Reduz o tamanho real dos cards da Home e evita que as
   fileiras ocupem a maior parte da tela.
========================================================= */
@media (min-width:1101px){
  .horizontal-product-carousel,.category-carousel{
    width:min(1240px,92vw)!important;
  }
  .horizontal-product-track,.category-track{
    gap:12px!important;
    padding:3px 2px 10px!important;
  }
  .home-product-card{
    flex:0 0 190px!important;
    width:190px!important;
    border-radius:12px!important;
  }
  .home-product-image{aspect-ratio:1/1!important;}
  .home-product-info{padding:10px 11px 11px!important;}
  .home-product-info .product-category{font-size:7px!important;margin-bottom:4px!important;}
  .home-product-info h3{font-size:13px!important;line-height:1.15!important;margin-bottom:8px!important;}
  .home-product-price strong{font-size:14px!important;}
  .home-product-price del{font-size:9px!important;}
  .home-product-bottom{gap:7px!important;}
  .home-product-bottom button{padding:6px 9px!important;font-size:9px!important;}
  .home-category-card{flex:0 0 165px!important;width:165px!important;border-radius:12px!important;}
  .home-category-image{aspect-ratio:1.18/1!important;}
  .home-category-card>div:last-child{padding:9px 10px 11px!important;}
  .home-category-card strong{font-size:14px!important;}
  .home-category-card small{font-size:9px!important;}

  .home-showcase,.home-categories{
    padding-top:46px!important;
    padding-bottom:50px!important;
  }
  .home-section-heading{margin-bottom:14px!important;}

  .home-random-products{padding-top:52px!important;padding-bottom:60px!important;}
  .random-products-grid{width:min(1240px,92vw)!important;}
  .random-products-row{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:12px!important;}
  .random-product-card{width:100%!important;}
}

@media (min-width:761px) and (max-width:1100px){
  .home-product-card{flex-basis:195px!important;width:195px!important;}
  .home-category-card{flex-basis:170px!important;width:170px!important;}
  .random-products-row{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;}
  .home-product-info{padding:10px 11px 11px!important;}
  .home-product-info h3{font-size:13px!important;}
  .home-product-bottom button{padding:6px 9px!important;font-size:9px!important;}
}

@media (max-width:760px){
  .home-product-card{flex-basis:62vw!important;width:62vw!important;}
  .home-product-info{padding:11px 12px 12px!important;}
  .home-product-info h3{font-size:14px!important;}
}

/* =========================================================
   OPUS — CORREÇÃO DEFINITIVA DAS FILEIRAS DE PRODUTOS 14-09-2026
========================================================= */

/* =========================================================
   OPUS — CORREÇÃO DEFINITIVA DAS FILEIRAS DE PRODUTOS 14-09-2026
   Cards menores para que as pinturas não ocupem a tela inteira.
========================================================= */
.home-showcase .horizontal-product-carousel,
.home-categories .category-carousel,
.home-random-products .random-products-grid{
  max-width: 1180px!important;
}

.home-showcase .horizontal-product-track,
.home-categories .category-track{
  gap: 10px!important;
  padding: 2px 1px 10px!important;
}

.home-showcase .home-product-card{
  flex: 0 0 158px!important;
  width: 158px!important;
  border-radius: 10px!important;
}
.home-showcase .home-product-image{
  aspect-ratio: 1 / 1!important;
}
.home-showcase .home-product-info{
  padding: 9px 10px 10px!important;
}
.home-showcase .home-product-info .product-category{
  font-size: 6.5px!important;
  margin-bottom: 3px!important;
}
.home-showcase .home-product-info h3{
  font-size: 11.5px!important;
  line-height: 1.15!important;
  margin: 0 0 7px!important;
}
.home-showcase .home-product-price strong{font-size: 12px!important;}
.home-showcase .home-product-price del{font-size: 8px!important;}
.home-showcase .home-product-bottom{gap: 5px!important;}
.home-showcase .home-product-bottom button{
  padding: 5px 7px!important;
  font-size: 8px!important;
}
.home-showcase .home-product-tag{
  left: 7px!important;
  top: 7px!important;
  padding: 4px 6px!important;
  font-size: 6.5px!important;
}

.home-categories .home-category-card{
  flex: 0 0 145px!important;
  width: 145px!important;
  border-radius: 10px!important;
}
.home-categories .home-category-image{aspect-ratio: 1.18 / 1!important;}
.home-categories .home-category-card>div:last-child{padding: 8px 9px 10px!important;}
.home-categories .home-category-card span{font-size: 6.5px!important;}
.home-categories .home-category-card strong{font-size: 12px!important;}
.home-categories .home-category-card small{font-size: 8px!important;}

.home-random-products .random-products-row{
  grid-template-columns: repeat(6,minmax(0,1fr))!important;
  gap: 10px!important;
}
.home-random-products .random-product-card{
  width: 100%!important;
  border-radius: 10px!important;
}
.home-random-products .random-product-card .home-product-image{aspect-ratio: 1 / 1!important;}
.home-random-products .random-product-card .home-product-info{padding: 9px 10px 10px!important;}
.home-random-products .random-product-card .home-product-info h3{font-size: 11.5px!important;}
.home-random-products .random-product-card .home-product-price strong{font-size: 12px!important;}
.home-random-products .random-product-card .home-product-bottom button{padding: 5px 7px!important;font-size: 8px!important;}

@media (max-width:1100px) and (min-width:761px){
  .home-showcase .home-product-card{flex-basis:150px!important;width:150px!important;}
  .home-categories .home-category-card{flex-basis:138px!important;width:138px!important;}
  .home-random-products .random-products-row{grid-template-columns:repeat(5,minmax(0,1fr))!important;}
}

@media (max-width:760px){
  .home-showcase .home-product-card{flex-basis:56vw!important;width:56vw!important;}
  .home-categories .home-category-card{flex-basis:52vw!important;width:52vw!important;}
  .home-random-products .random-products-row{display:flex!important;gap:10px!important;overflow-x:auto!important;}
  .home-random-products .random-product-card{flex:0 0 56vw!important;width:56vw!important;}
}
