/* ============================================
   IMAVI — Resortwear, Moda Feminina Atemporal e Fitness
   Handcrafted aesthetic — NOT a template
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

@font-face { font-family: 'Quicksand'; src: url('../fonts/Quicksand-VariableFont_wght.ttf') format('truetype'); font-weight: 300 700; font-display: swap; }

:root {
  --slate: #7B9BAE;
  --slate-dark: #5C7A8E;
  --slate-light: #A3BCC9;
  --olive: #A8A07A;
  --olive-dark: #8C855F;
  --olive-light: #C4BDAA;
  --borgonha: #3C1518;
  --borgonha-soft: #5A2328;
  --cream: #F5F0EA;
  --cream-warm: #FAF7F2;
  --sand: #E8E0D4;
  --camel: #D4C5AC;
  --chocolate: #8B6E5A;
  --grafite: #3A3A3A;
  --muted: #9A9590;
  --light-line: #D9D4CE;
  --black: #1A1110;
  --white: #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Quicksand', -apple-system, sans-serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--grafite); background: var(--cream); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.no-scroll { overflow: hidden; }

/* Hide native video play button on all browsers */
video::-webkit-media-controls { display: none !important; }
video::-webkit-media-controls-enclosure { display: none !important; }
video::-webkit-media-controls-panel { display: none !important; }
video::-webkit-media-controls-play-button { display: none !important; }
video::-webkit-media-controls-start-playback-button { display: none !important; }
video::-moz-media-controls { display: none !important; }

/* --- Custom Cursor --- */
.cursor { position: fixed; width: 12px; height: 12px; border-radius: 50%; background: var(--borgonha); pointer-events: none; z-index: 9999; transition: transform 0.15s var(--ease), background 0.15s var(--ease); transform: translate(-50%, -50%); }
.cursor--hover { transform: translate(-50%, -50%) scale(3); background: var(--slate); opacity: 0.6; }

@media (max-width: 768px) { .cursor { display: none; } }

/* --- Preloader --- */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--borgonha); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2rem; transition: clip-path 1s var(--ease); clip-path: inset(0); }
.preloader.hidden { clip-path: inset(0 0 100% 0); }
.preloader__logo { font-family: var(--serif); font-size: clamp(4rem, 12vw, 8rem); font-style: italic; color: var(--cream); letter-spacing: 0.05em; font-weight: 400; }
.preloader__line { width: 80px; height: 1px; background: var(--cream); animation: preloaderLine 1.5s var(--ease) infinite; }
@keyframes preloaderLine { 0% { transform: scaleX(0); opacity: 0; } 50% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(0); opacity: 0; } }

/* --- Header --- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); display: flex; align-items: center; padding: 0 clamp(1.5rem, 4vw, 3rem); transition: all 0.5s var(--ease); }
@media (min-width: 969px) { .header:not(.header--solid) { mix-blend-mode: difference; } }
.header--solid { mix-blend-mode: normal; background: rgba(245, 240, 234, 0.97); border-bottom: 1px solid rgba(0,0,0,0.04); }
@media (min-width: 969px) { .header--solid { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(245, 240, 234, 0.92); } }
.header--solid .header__logo, .header--solid .nav__link, .header--solid .menu-toggle span { color: var(--borgonha); }
.header--solid .menu-toggle span { background: var(--borgonha); }

.header__logo { font-family: var(--serif); font-size: 1.8rem; font-style: italic; color: var(--white); letter-spacing: 0.04em; z-index: 1001; display: flex; align-items: center; }
/* Header logo (PNG da marca tingido pela cor do header) */
.logo-mark { display: block; width: clamp(92px, 9vw, 116px); aspect-ratio: 571 / 133; background: currentColor; -webkit-mask: url('../img/brand/logo-imavi-mark.png') center/contain no-repeat; mask: url('../img/brand/logo-imavi-mark.png') center/contain no-repeat; }

.nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); margin-left: auto; }
.nav__link { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--white); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: currentColor; transition: width 0.4s var(--ease); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; width: 26px; z-index: 1001; margin-left: auto; }
.menu-toggle span { display: block; width: 100%; height: 1.5px; background: var(--white); transition: all 0.4s var(--ease); transform-origin: center; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.menu-toggle.active span { background: var(--borgonha); }

@media (max-width: 968px) {
  .header { mix-blend-mode: normal; }
  .menu-toggle { display: flex; }
  .nav { position: fixed; inset: 0; background: var(--cream); flex-direction: column; justify-content: center; gap: 2rem; transform: translateY(-100%); transition: transform 0.6s var(--ease), visibility 0s 0.6s; z-index: 1000; visibility: hidden; pointer-events: none; }
  .nav.open { transform: translateY(0); visibility: visible; pointer-events: auto; transition: transform 0.6s var(--ease), visibility 0s 0s; }
  .nav__link { font-size: 2rem; color: var(--borgonha); text-transform: none; letter-spacing: 0; font-family: var(--serif); font-style: italic; font-weight: 400; }
}

/* --- Hero --- */
.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: url('../img/frame-hero1.jpg') center/cover no-repeat; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,17,16,0.15) 0%, rgba(26,17,16,0.05) 40%, rgba(26,17,16,0.5) 100%); }

.hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(2rem, 6vw, 5rem); z-index: 2; color: var(--cream); }
.hero__tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero__tag::before { content: ''; width: 40px; height: 1px; background: var(--cream); opacity: 0.5; }
.hero__title { font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem); font-weight: 400; font-style: italic; line-height: 0.9; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: var(--cream); }
.hero__title span { display: block; font-style: normal; font-size: 0.4em; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; font-family: var(--sans); margin-top: 0.5em; }

.hero__cta { display: inline-flex; align-items: center; gap: 1rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; color: var(--cream); padding: 1rem 0; border-bottom: 1px solid rgba(245,240,234,0.3); transition: all 0.4s var(--ease); }
.hero__cta:hover { border-color: var(--cream); gap: 1.5rem; }
.hero__cta svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.hero__cta:hover svg { transform: translateX(4px); }

/* --- Marquee Strip --- */
.marquee-strip { padding: 1rem 0; background: var(--borgonha); overflow: hidden; }
.marquee-strip__track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-strip__item { font-family: var(--serif); font-size: 0.9rem; font-style: italic; color: var(--cream); opacity: 0.6; display: flex; align-items: center; gap: 3rem; flex-shrink: 0; }
.marquee-strip__item::after { content: '\2022'; opacity: 0.3; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Editorial Section: Offset Grid --- */
.editorial { padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem); }
.editorial__header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.editorial__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--slate); font-weight: 500; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.editorial__label::before { content: ''; width: 30px; height: 1px; background: var(--slate); }
.editorial__title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; color: var(--borgonha); line-height: 1; }
.editorial__title em { font-style: italic; }

/* Offset Grid: 2-column asymmetric */
.offset-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1rem, 3vw, 2rem); align-items: end; }
.offset-grid__left { transform: translateY(-3rem); }
.offset-grid__right { transform: translateY(3rem); }

@media (max-width: 768px) {
  .offset-grid { grid-template-columns: 1fr; }
  .offset-grid__left, .offset-grid__right { transform: none; }
}

/* --- Product Card (Editorial) --- */
.prod { position: relative; }
.prod__img { overflow: hidden; aspect-ratio: 3/4; background: var(--sand); position: relative; }
.prod__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s var(--ease); }
.prod__img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s var(--ease); z-index: 1; }
.prod:hover .prod__img-hover { opacity: 1; }
.prod:hover .prod__img-main { opacity: 0; }

.prod__tag { position: absolute; top: 1rem; left: 1rem; background: var(--borgonha); color: var(--cream); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; padding: 0.35rem 0.9rem; font-weight: 500; }

.prod__buy { position: absolute; bottom: 1rem; right: 1rem; width: 44px; height: 44px; background: var(--white); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); }
.prod:hover .prod__buy { opacity: 1; transform: translateY(0); }
.prod__buy:hover { background: var(--borgonha); color: var(--cream); }
.prod__buy svg { width: 18px; height: 18px; }

.prod__info { padding: 1rem 0 0; }
.prod__cat { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 0.3rem; }
.prod__name { font-family: var(--serif); font-size: 1.05rem; color: var(--borgonha); font-weight: 400; margin-bottom: 0.2rem; }
.prod__price { font-size: 0.9rem; font-weight: 500; color: var(--grafite); }

/* --- Split Section (text left, image right or vice versa) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media { position: relative; overflow: hidden; }
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; }

.split__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 6rem); }
.split__content--dark { background: var(--borgonha); color: var(--cream); }
.split__content--dark h2 { color: var(--cream); }

.split__eyebrow { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--slate); font-weight: 500; margin-bottom: 1.5rem; }
.split__content--dark .split__eyebrow { color: var(--slate-light); }

.split__heading { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; color: var(--borgonha); margin-bottom: 1.5rem; }
.split__heading em { font-style: italic; }

.split__body { font-size: 0.95rem; line-height: 1.9; color: var(--chocolate); margin-bottom: 2rem; max-width: 450px; }
.split__content--dark .split__body { color: rgba(245,240,234,0.75); }

.split__features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.split__feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; }
.split__feature::before { content: ''; width: 20px; height: 1px; background: var(--slate); flex-shrink: 0; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split__media { height: 50vh; }
  .split--reverse { direction: ltr; }
}

/* --- Big Statement --- */
.statement { padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem); text-align: center; background: var(--white); }
.statement__text { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4rem); font-weight: 400; font-style: italic; color: var(--borgonha); line-height: 1.3; max-width: 900px; margin: 0 auto; }
.statement__text span { color: var(--slate); }

/* --- Editorial Products Row (horizontal scroll on mobile) --- */
.products-row { padding: clamp(4rem, 8vw, 7rem) 0; }
.products-row__header { padding: 0 clamp(1.5rem, 4vw, 3rem); margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: end; }
.products-row__link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--borgonha); display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--borgonha); padding-bottom: 0.25rem; transition: gap 0.3s var(--ease); }
.products-row__link:hover { gap: 1rem; }
.products-row__link svg { width: 14px; height: 14px; }

.products-row__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.75rem, 2vw, 1.5rem); padding: 0 clamp(1.5rem, 4vw, 3rem); }

@media (max-width: 968px) {
  .products-row__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-row__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* --- Video Reel --- */
.video-reel { position: relative; height: 70vh; min-height: 400px; overflow: hidden; background: var(--sand); }
.video-reel video { width: 100%; height: 100%; object-fit: cover; }
.video-reel__overlay { position: absolute; inset: 0; background: rgba(60,21,24,0.25); display: flex; align-items: center; justify-content: center; }
.video-reel__text { font-family: var(--serif); font-size: clamp(3rem, 8vw, 7rem); font-style: italic; color: var(--cream); text-align: center; line-height: 0.95; pointer-events: none; }

/* --- Testimonials (editorial style) --- */
.testimonials { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem); background: var(--sand); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { padding: 2.5rem; background: var(--cream); position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--serif); font-size: 5rem; color: var(--slate); opacity: 0.2; position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testimonial__text { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--borgonha); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial__author { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* --- Blog Cards (magazine layout) --- */
.blog-magazine { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem); }
.blog-mag-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.blog-mag-grid .blog-entry:first-child { grid-row: 1 / 3; }

.blog-entry { position: relative; overflow: hidden; }
.blog-entry__img { overflow: hidden; aspect-ratio: 16/11; }
.blog-entry:first-child .blog-entry__img { aspect-ratio: auto; height: 100%; }
.blog-entry__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-entry:hover .blog-entry__img img { transform: scale(1.04); }
.blog-entry__body { padding: 1.2rem 0 0; }
.blog-entry__cat { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate); font-weight: 500; margin-bottom: 0.4rem; }
.blog-entry__title { font-family: var(--serif); font-size: 1.1rem; color: var(--borgonha); line-height: 1.35; margin-bottom: 0.3rem; }
.blog-entry__date { font-size: 0.72rem; color: var(--muted); }

.blog-entry:first-child .blog-entry__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(0deg, rgba(26,17,16,0.7) 0%, transparent 100%); }
.blog-entry:first-child .blog-entry__cat { color: var(--slate-light); }
.blog-entry:first-child .blog-entry__title { color: var(--cream); font-size: 1.4rem; }
.blog-entry:first-child .blog-entry__date { color: rgba(245,240,234,0.6); }

@media (max-width: 768px) {
  .blog-mag-grid { grid-template-columns: 1fr; }
  .blog-mag-grid .blog-entry:first-child { grid-row: auto; }
  .blog-entry:first-child .blog-entry__img { aspect-ratio: 16/10; }
}

/* --- CTA Banner (editorial) --- */
.cta-editorial { padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem); text-align: center; background: var(--slate); position: relative; overflow: hidden; }
.cta-editorial::before { content: 'imavi'; font-family: var(--serif); font-size: clamp(8rem, 25vw, 20rem); font-style: italic; color: rgba(255,255,255,0.04); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
.cta-editorial h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 400; font-style: italic; margin-bottom: 0.75rem; position: relative; }
.cta-editorial p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 0.95rem; position: relative; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2.5rem; font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; transition: all 0.4s var(--ease); position: relative; }
.btn--fill { background: var(--borgonha); color: var(--cream); }
.btn--fill:hover { background: var(--black); }
.btn--outline { border: 1px solid var(--borgonha); color: var(--borgonha); }
.btn--outline:hover { background: var(--borgonha); color: var(--cream); }
.btn--white { background: var(--cream); color: var(--borgonha); }
.btn--white:hover { background: var(--white); }
.btn--ghost { color: var(--cream); border: 1px solid rgba(245,240,234,0.3); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(245,240,234,0.1); }

/* --- Newsletter (minimal) --- */
.newsletter { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); background: var(--borgonha) url('../img/brand/estampa-logos-olive.png') center/350px repeat; background-blend-mode: screen; text-align: center; border: none; position: relative; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: var(--borgonha); opacity: 0.88; }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h3 { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--cream); font-weight: 400; font-style: italic; margin-bottom: 0.5rem; }
.newsletter h3 em { color: var(--slate-light); }
.newsletter p { color: rgba(245,240,234,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }
.newsletter__form { display: flex; max-width: 420px; margin: 0 auto; }
.newsletter__input { flex: 1; padding: 0.85rem 1.2rem; border: 1px solid rgba(245,240,234,0.2); border-right: none; background: rgba(245,240,234,0.1); font-size: 0.85rem; outline: none; color: var(--cream); }
.newsletter__input::placeholder { color: rgba(245,240,234,0.45); }
.newsletter__input:focus { border-color: var(--slate-light); }
.newsletter__submit { padding: 0.85rem 1.5rem; background: var(--cream); color: var(--borgonha); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; cursor: pointer; transition: background 0.3s var(--ease); border: 1px solid var(--cream); }
.newsletter__submit:hover { background: var(--white); border-color: var(--white); }
@media (max-width: 480px) { .newsletter__form { flex-direction: column; } .newsletter__input { border-right: 1px solid rgba(245,240,234,0.2); border-bottom: none; } }

/* --- Footer (editorial) --- */
.footer { background: var(--black); color: var(--muted); padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem) 2rem; position: relative; }
.footer::after { content: ''; position: absolute; inset: 0; background: url('../img/brand/estampa-logos-olive.png') center/400px repeat; opacity: 0.06; pointer-events: none; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; position: relative; z-index: 1; }
.footer__logo { font-family: var(--serif); font-size: 2.5rem; font-style: italic; color: var(--cream); margin-bottom: 1.5rem; display: block; }
.footer__desc { font-size: 0.85rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; max-width: 320px; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.footer__social a:hover { border-color: var(--slate); background: var(--slate); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; }
.footer__col-title { font-family: var(--serif); font-size: 0.95rem; color: var(--cream); margin-bottom: 1.2rem; font-weight: 400; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--cream); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer__contact-row svg { width: 16px; height: 16px; color: var(--slate); flex-shrink: 0; margin-top: 3px; }
.footer__contact-row span { font-size: 0.8rem; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.72rem; position: relative; z-index: 1; }
.footer__bottom a { color: var(--slate); }
.footer__bottom a:hover { color: var(--cream); }
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } .footer__bottom { flex-direction: column; gap: 0.5rem; } }

/* --- WhatsApp Float --- */
.wpp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wpp-float svg { width: 26px; height: 26px; color: var(--white); }
@media (max-width: 768px) { .wpp-float { bottom: 1.5rem; right: 1.5rem; width: 48px; height: 48px; } }

/* --- Back to Top --- */
.btt { position: fixed; bottom: 2rem; left: 2rem; width: 42px; height: 42px; background: var(--borgonha); color: var(--cream); display: flex; align-items: center; justify-content: center; z-index: 998; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.btt.visible { opacity: 1; visibility: visible; }
.btt:hover { background: var(--black); transform: translateY(-2px); }
.btt svg { width: 18px; height: 18px; }
@media (max-width: 768px) { .btt { left: 1.5rem; bottom: 5rem; } }

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }

/* --- Catalog Page --- */
.page-head { padding: calc(var(--header-h) + 3rem) clamp(1.5rem, 4vw, 3rem) 2rem; }
.page-head__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--slate); font-weight: 500; display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.page-head__label::before { content: ''; width: 30px; height: 1px; background: var(--slate); }
.page-head__title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--borgonha); font-weight: 400; margin-bottom: 0.5rem; }
.page-head__breadcrumb { font-size: 0.75rem; color: var(--muted); display: flex; gap: 0.5rem; }
.page-head__breadcrumb a:hover { color: var(--borgonha); }

.catalog-controls { display: flex; justify-content: space-between; align-items: center; padding: 0 clamp(1.5rem, 4vw, 3rem); margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn { padding: 0.55rem 1.2rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grafite); border: 1px solid var(--light-line); background: transparent; cursor: pointer; transition: all 0.3s var(--ease); font-weight: 500; }
.filter-btn:hover, .filter-btn.active { background: var(--borgonha); color: var(--cream); border-color: var(--borgonha); }
.catalog-count { font-size: 0.8rem; color: var(--muted); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; padding: 0 clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 968px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .catalog-grid { grid-template-columns: 1fr; } }

/* --- About Page --- */
.about-hero { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.about-hero img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay { position: absolute; inset: 0; background: rgba(26,17,16,0.4); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; }
.about-hero__overlay h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5rem); color: var(--cream); font-weight: 400; font-style: italic; }
.about-hero__overlay span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--cream); opacity: 0.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem); text-align: center; }
.value-card { padding: 2rem; }
.value-card svg { width: 40px; height: 40px; color: var(--slate); margin: 0 auto 1rem; }
.value-card h4 { font-family: var(--serif); color: var(--borgonha); font-weight: 400; margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; color: var(--chocolate); max-width: 280px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); text-align: center; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.number__val { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--slate); font-weight: 400; margin-bottom: 0.25rem; }
.number__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--chocolate); }
@media (max-width: 768px) { .numbers { grid-template-columns: repeat(2, 1fr); } }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.contact-card { display: flex; gap: 1rem; padding: 1.5rem; background: var(--white); margin-bottom: 1rem; transition: box-shadow 0.3s var(--ease); }
.contact-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-card svg { width: 22px; height: 22px; color: var(--slate); flex-shrink: 0; }
.contact-card h4 { font-family: var(--serif); font-size: 0.95rem; color: var(--borgonha); font-weight: 400; margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.85rem; color: var(--chocolate); margin: 0; line-height: 1.6; }
.contact-map { width: 100%; height: 100%; min-height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-wrap { max-width: 600px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grafite); margin-bottom: 0.4rem; font-weight: 500; }
.form-input, .form-textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--light-line); background: var(--white); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--slate); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 650px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); }
.faq details { border-bottom: 1px solid var(--light-line); padding: 1.2rem 0; }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--borgonha); font-weight: 400; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--muted); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details p { margin-top: 0.75rem; color: var(--chocolate); line-height: 1.8; font-size: 0.9rem; }

/* --- Blog Article --- */
.article-hero { padding: calc(var(--header-h) + 3rem) clamp(1.5rem, 4vw, 3rem) 2rem; max-width: 800px; margin: 0 auto; text-align: center; }
.article-hero__cat { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--slate); font-weight: 500; margin-bottom: 1rem; }
.article-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--borgonha); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.article-hero__meta { font-size: 0.8rem; color: var(--muted); display: flex; justify-content: center; gap: 1.5rem; }

.article-img { max-width: 900px; margin: 0 auto 3rem; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.article-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.article-body { max-width: 680px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem) 4rem; }
.article-body h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--borgonha); font-weight: 400; margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--borgonha); font-weight: 400; margin: 2rem 0 0.75rem; }
.article-body p { font-size: 0.95rem; line-height: 1.9; color: var(--grafite); margin-bottom: 1.2rem; }
.article-body strong { color: var(--borgonha); }
.article-body ul { margin-bottom: 1.2rem; padding-left: 0; }
.article-body li { font-size: 0.95rem; line-height: 1.8; color: var(--grafite); padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.article-body li::before { content: ''; width: 6px; height: 1px; background: var(--slate); position: absolute; left: 0; top: 0.85em; }
.article-body blockquote { border-left: 2px solid var(--slate); padding: 1rem 0 1rem 1.5rem; margin: 2rem 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--borgonha); }

/* Collections page */
.collection-hero { position: relative; aspect-ratio: 21/9; overflow: hidden; margin: 0 clamp(1.5rem, 4vw, 3rem); }
.collection-hero img { width: 100%; height: 100%; object-fit: cover; }
.collection-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,17,16,0.6) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.collection-hero__overlay h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--cream); font-style: italic; font-weight: 400; margin-bottom: 0.75rem; }
.collection-hero__overlay p { color: rgba(245,240,234,0.8); max-width: 400px; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
@media (max-width: 768px) { .collection-hero { aspect-ratio: 4/3; } }

/* --- Mobile: Conceito foto abaixo do texto --- */
@media (max-width: 768px) {
  .split--mobile-img-below { display: flex; flex-direction: column-reverse; }
  .split--mobile-img-below .split__media { height: auto; aspect-ratio: 3/4; position: relative; }
  .split--mobile-img-below .split__content { padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem); }
}

/* Botão overlay dentro da foto (mobile) */
.split__btn-overlay { display: none; }
@media (max-width: 768px) {
  .split__btn-overlay { display: inline-flex; position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; background: rgba(245,240,234,0.95); color: var(--borgonha); backdrop-filter: blur(8px); }
  .split--mobile-img-below .split__media { position: relative; }
  .split--mobile-img-below .btn:not(.split__btn-overlay) { display: none; }
}
@media (min-width: 769px) {
  .split__btn-overlay { display: none !important; }
}

/* Paleta — seção SEM foto, fundo com estampa */
.paleta-estampa { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem); background: var(--cream) url('../img/brand/estampa-logos-white.png') center/300px repeat; }
.paleta-estampa .split__content { max-width: 600px; padding: 0; }

/* --- Viés Section (vídeo de fundo + estampa overlay) --- */
.vies-section { position: relative; padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem); background: var(--borgonha); min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.vies-section video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vies-section::before { content: ''; position: absolute; inset: 0; background: rgba(60,21,24,0.72); z-index: 1; }
.vies-section::after { content: ''; position: absolute; inset: 0; background: url('../img/brand/estampa-logos-olive.png') center/400px repeat; opacity: 0.12; z-index: 2; }
.vies-section__content { position: relative; z-index: 3; max-width: 550px; }
.vies-section__content .split__eyebrow { color: var(--slate-light); }
.vies-section__content h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem; }
.vies-section__content h2 em { font-style: italic; }
.vies-section__content p { font-size: 0.95rem; line-height: 1.9; color: rgba(245,240,234,0.75); margin-bottom: 2rem; max-width: 450px; }

/* --- Statement with video background --- */
.statement--video { position: relative; overflow: hidden; background: var(--borgonha); }
.statement--video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.statement--video::after { content: ''; position: absolute; inset: 0; background: rgba(60,21,24,0.6); }
.statement--video .statement__text,
.statement--video p { position: relative; z-index: 1; }
.statement--video .statement__text { color: var(--cream); }
.statement--video .statement__text span { color: var(--slate-light); }

/* --- CTA with video background --- */
.cta-editorial--video { position: relative; overflow: hidden; }
.cta-editorial--video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-editorial--video::before { content: 'imavi'; z-index: 1; }
.cta-editorial--video::after { content: ''; position: absolute; inset: 0; background: rgba(26,17,16,0.65); }
.cta-editorial--video h2,
.cta-editorial--video p,
.cta-editorial--video .btn { position: relative; z-index: 1; }

/* --- Product Card improvements --- */
.prod { position: relative; }
.prod__link { display: block; text-decoration: none; color: inherit; }
.prod__img { overflow: hidden; aspect-ratio: 3/4; background: var(--sand); position: relative; border-radius: 2px; }
.prod__img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(0,0,0,0.04); pointer-events: none; border-radius: 2px; }
.prod:hover { transform: translateY(-2px); transition: transform 0.4s var(--ease); }
.prod:hover .prod__img { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

/* --- Carousel System --- */
.carousel { position: relative; overflow: hidden; }
.carousel__header { display: flex; justify-content: space-between; align-items: center; padding: 0 clamp(1.5rem, 4vw, 3rem); margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.carousel__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; color: var(--borgonha); }
.carousel__title em { font-style: italic; }
.carousel__nav { display: flex; gap: 0.5rem; align-items: center; }
.carousel__count { font-size: 0.72rem; color: var(--muted); margin-right: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.carousel__arrow { width: 42px; height: 42px; border: 1px solid var(--light-line); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s var(--ease); background: var(--white); }
.carousel__arrow:hover { background: var(--borgonha); border-color: var(--borgonha); color: var(--cream); }
.carousel__arrow:disabled { opacity: 0.3; cursor: default; }
.carousel__arrow:disabled:hover { background: var(--white); color: var(--grafite); border-color: var(--light-line); }
.carousel__arrow svg { width: 18px; height: 18px; }

.carousel__track { display: flex; gap: clamp(1rem, 2vw, 1.5rem); padding: 0 clamp(2rem, 5vw, 4rem); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .prod { flex: 0 0 calc(25% - 1.5rem); scroll-snap-align: start; min-width: 200px; }
@media (max-width: 968px) { .carousel__track .prod { flex: 0 0 calc(50% - 0.75rem); min-width: 180px; } }
@media (max-width: 480px) { .carousel__track .prod { flex: 0 0 70vw; min-width: 0; } }

.carousel__link { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--borgonha); display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--borgonha); padding-bottom: 0.2rem; transition: gap 0.3s var(--ease); margin-top: 2rem; padding-left: clamp(1.5rem, 4vw, 3rem); }
.carousel__link:hover { gap: 1rem; }
.carousel__link svg { width: 14px; height: 14px; }

@media (max-width: 768px) { .carousel__nav { display: none; } }

/* --- Editorial Break (between carousels) --- */
.editorial-break { position: relative; height: 50vh; min-height: 300px; overflow: hidden; margin: clamp(2rem, 5vw, 4rem) 0; }
.editorial-break img { width: 100%; height: 100%; object-fit: cover; }
.editorial-break__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,17,16,0.5) 100%); display: flex; align-items: flex-end; padding: clamp(2rem, 4vw, 3rem); }
.editorial-break__text { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--cream); font-style: italic; font-weight: 400; }

/* --- Catalog Hero Banner (redesigned) --- */
.catalog-hero { position: relative; overflow: hidden; margin-bottom: clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1fr 1fr; height: clamp(280px, 38vh, 420px); }
.catalog-hero__pattern { background: var(--cream) url('../img/brand/estampa-logos-white.png') center/300px repeat; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: calc(var(--header-h) + 0.25rem) clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 1.5rem); text-align: center; gap: 0.75rem; }
.catalog-hero__seal { width: clamp(50px, 6vw, 70px); height: auto; opacity: 0.3; }
.catalog-hero__pattern h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--borgonha); font-weight: 400; font-style: italic; line-height: 1.1; }
.catalog-hero__tagline { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--olive); font-weight: 600; }
.catalog-hero__pattern p { color: var(--chocolate); font-size: 0.85rem; max-width: 360px; line-height: 1.7; }
.catalog-hero__cats { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.catalog-hero__cats a { padding: 0.45rem 1rem; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--borgonha); border: 1px solid var(--light-line); transition: all 0.3s var(--ease); }
.catalog-hero__cats a:hover { background: var(--borgonha); color: var(--cream); border-color: var(--borgonha); }
.catalog-hero__img { position: relative; overflow: hidden; max-height: 100%; }
.catalog-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 768px) {
  .catalog-hero { grid-template-columns: 1fr; min-height: auto; }
  .catalog-hero__pattern { padding: calc(var(--header-h) + 1.5rem) clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem); background-image: url('../img/produtos/look-short-vermelho.jpg'), url('../img/brand/estampa-logos-white.png'); background-size: cover, 300px; background-position: center top, center; background-blend-mode: overlay; position: relative; }
  .catalog-hero__pattern::before { content: ''; position: absolute; inset: 0; background: rgba(245,240,234,0.88); }
  .catalog-hero__pattern > * { position: relative; z-index: 1; }
  .catalog-hero__img { display: none; }
}
/* Catalog page: logo preta no mobile */
.header--solid .header__logo { color: var(--borgonha); }

/* --- Catalog: View All Grid (toggle) --- */
.catalog-all { display: none; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); }
.catalog-all.active { display: block; }
.catalog-all__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.catalog-all__close { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; color: var(--borgonha); border: 1px solid var(--borgonha); padding: 0.5rem 1.2rem; cursor: pointer; transition: all 0.3s; }
.catalog-all__close:hover { background: var(--borgonha); color: var(--cream); }

/* --- Product Detail Page --- */
.product-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); max-width: 1280px; margin: 0 auto; }

.product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.product-gallery__main { aspect-ratio: 3/4; overflow: hidden; background: var(--sand); border-radius: 2px; position: relative; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s var(--ease); }
.product-gallery__main img.hidden { opacity: 0; position: absolute; inset: 0; }
.product-gallery__thumbs { display: flex; gap: 0.5rem; }
.product-gallery__thumb { width: 72px; height: 96px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s; background: var(--sand); border-radius: 2px; }
.product-gallery__thumb.active { border-color: var(--borgonha); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; justify-content: center; padding-top: 1rem; }
.product-info__breadcrumb { font-size: 0.72rem; color: var(--muted); display: flex; gap: 0.4rem; margin-bottom: 2rem; flex-wrap: wrap; }
.product-info__breadcrumb a { transition: color 0.2s; }
.product-info__breadcrumb a:hover { color: var(--borgonha); }
.product-info__cat { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--slate); font-weight: 500; margin-bottom: 0.5rem; }
.product-info__name { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--borgonha); font-weight: 400; margin-bottom: 0.5rem; }
.product-info__price { font-size: 1.3rem; font-weight: 600; color: var(--grafite); margin-bottom: 2rem; }
.product-info__desc { font-size: 0.95rem; line-height: 1.9; color: var(--chocolate); margin-bottom: 2rem; }
.product-info__composition { font-size: 0.8rem; color: var(--muted); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 0.5rem; }
.product-info__composition::before { content: ''; width: 16px; height: 1px; background: var(--muted); }

.product-options { margin-bottom: 2rem; }
.product-options__label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--grafite); margin-bottom: 0.75rem; display: block; }
.product-options__row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.size-btn, .color-btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; font-weight: 500; border: 1px solid var(--light-line); cursor: pointer; transition: all 0.3s var(--ease); background: var(--white); color: var(--grafite); min-width: 44px; text-align: center; }
.size-btn:hover, .color-btn:hover { border-color: var(--borgonha); }
.size-btn.active, .color-btn.active { background: var(--borgonha); color: var(--cream); border-color: var(--borgonha); }

.product-cta { display: flex; gap: 1rem; margin-bottom: 3rem; }
.product-cta .btn { flex: 1; justify-content: center; padding: 1.1rem 2rem; }

.product-related { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); border-top: 1px solid var(--light-line); }
.product-related__title { font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--borgonha); font-weight: 400; margin-bottom: 2rem; }
.product-related__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 968px) { .product-related__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-cta { flex-direction: column; }
  .product-cta .btn { width: 100%; }
}

/* --- Utility --- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Home: Provador + Turismo (duo) --- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem); }
.duo__item { position: relative; overflow: hidden; min-height: clamp(420px, 48vw, 620px); transition: transform 0.5s var(--ease); }
.duo__item:hover { transform: translateY(-4px); }
.duo__item--pv { background: var(--white); display: grid; grid-template-columns: 0.9fr 1fr; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.5rem, 3vw, 2.5rem); }
.duo__stack { display: flex; flex-direction: column; gap: 3px; box-shadow: 0 18px 40px -22px rgba(60,21,24,0.35); }
.duo__stack img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.duo__item--pv:hover .duo__stack img:first-child { transform: translateX(-6px); }
.duo__item--pv:hover .duo__stack img:last-child { transform: translateX(6px); }
.duo__title { font-family: var(--serif); font-weight: 400; color: var(--borgonha); font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.1; margin: 0.25rem 0 1rem; }
.duo__title em { font-style: italic; color: var(--slate-dark); }
.duo__text p { font-size: 0.92rem; line-height: 1.75; color: var(--chocolate); margin-bottom: 1.5rem; }
.duo__text .products-row__link { display: inline-flex; }
.duo__item--tour img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.9s var(--ease); }
.duo__item--tour:hover img { transform: scale(1.04); }
.duo__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 3vw, 2.5rem); background: linear-gradient(180deg, rgba(26,17,16,0) 45%, rgba(26,17,16,0.62) 100%); }
.duo__overlay .editorial__label { color: var(--cream); }
.duo__overlay .editorial__label::before { background: var(--cream); }
.duo__overlay .duo__title { color: var(--cream); }
.duo__overlay .duo__title em { color: var(--slate-light); }
.duo__cta { align-self: flex-start; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid rgba(245,240,234,0.5); padding-bottom: 0.25rem; }
@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .duo__item--pv { grid-template-columns: 0.8fr 1fr; min-height: 0; }
}
@media (max-width: 480px) {
  .duo__item--pv { grid-template-columns: 1fr; }
  .duo__stack { max-width: 260px; }
}
