:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF4;
  --espresso: #1C1410;
  --clay: #8B6F5E;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --terracota: #C17A5A;
  --text: #2A1F1A;
  --text-muted: #7A6A5E;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 165px;
}

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s;
  overflow: hidden;
  isolation: isolate;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 250, 244, 0.98), rgba(245, 240, 232, 0.95) 48%, rgba(233, 223, 208, 0.9));
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow: 0 10px 30px rgba(28, 20, 16, 0.08);
  z-index: -1;
}

nav::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0), rgba(201, 169, 110, 0.95), rgba(201, 169, 110, 0));
  opacity: 0.9;
}

nav.scrolled {
  background: rgba(253, 250, 244, 0.78);
  backdrop-filter: blur(12px);
  padding: 14px 54px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.16);
}

nav .nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

nav .nav-logo img {
  height: 84px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}

.nav-links a:hover {
  color: var(--terracota);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--warm-white);
  text-decoration: none;
  border: 1px solid rgba(28, 20, 16, 0.08);
  background: linear-gradient(135deg, var(--gold), var(--terracota));
  padding: 10px 24px;
  box-shadow: 0 10px 24px rgba(193, 122, 90, 0.18);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--espresso), #403029);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(28, 20, 16, 0.16);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 2;
  background: var(--warm-white);
}

.slide-eyebrow {
  font-size: 0.77rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--espresso);
  margin-bottom: 28px;
}

.slide-title em {
  font-style: italic;
  color: var(--clay);
}

.slide-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 48px;
}

.slide-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.btn-secondary {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.btn-secondary::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}

.btn-secondary:hover {
  color: var(--espresso);
}

.btn-secondary:hover::before {
  width: 52px;
}

.slide-right {
  position: relative;
  overflow: hidden;
}

.slide:nth-child(1) .slide-right {
  background: linear-gradient(135deg, #E8DDD0, #C9B89A);
}

.slide:nth-child(2) .slide-right {
  background: linear-gradient(135deg, #D4DDD0, #B8C9B4);
}

.slide:nth-child(3) .slide-right {
  background: linear-gradient(135deg, #DDD4C8, #C4AE98);
}

.slide-right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-visual-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15));
  box-shadow: 40px 40px 80px rgba(28, 20, 16, 0.18), -10px -10px 30px rgba(255, 255, 255, 0.5), inset 2px 2px 8px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.slide-visual-circle svg {
  width: 150px;
  height: 150px;
  opacity: 0.45;
}

.slide-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.72rem;
  color: var(--gold);
  line-height: 1;
}

.slide-badge span {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 5px;
  padding: 0 10px;
}

.carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.carousel-dot {
  width: 34px;
  height: 5px;
  background: rgba(201, 169, 110, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.4s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 62px;
}

.carousel-arrows {
  display: none;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.carousel-arrow:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

/* MIN STRIP */
.min-strip {
  background: var(--espresso);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
}

.min-strip-main {
  flex: 1;
  padding: 48px 0;
  display: flex;
  align-items: center;
  gap: 48px;
}

.min-strip-amount {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.37rem;
  color: var(--gold);
  line-height: 1;
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  padding-right: 48px;
}

.min-strip-amount sup {
  font-size: 1.38rem;
  vertical-align: super;
}

.min-strip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.84rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.min-strip-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.55);
  max-width: 560px;
}

.min-strip-cta {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 48px;
  display: flex;
  align-items: center;
}

.btn-gold {
  display: inline-block;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--cream);
}

/* STATS */
.stats-strip {
  background: var(--cream);
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(139, 111, 94, 0.18);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SECTIONS */
section {
  padding: 110px 60px;
}

section[id] {
  scroll-margin-top: 165px;
}

.section-eyebrow {
  font-size: 0.77rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--clay);
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 520px;
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 540px;
}

.av-main {
  position: absolute;
  left: 0;
  top: 40px;
  width: 72%;
  height: 82%;
  background: linear-gradient(145deg, #EDE4D8, #D8C8B4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-main svg {
  width: 100px;
  height: 100px;
  opacity: 0.2;
}

.av-dark {
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 46%;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.av-dark strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.99rem;
  color: var(--gold);
  line-height: 1;
}

.av-dark span {
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  text-align: center;
  padding: 0 14px;
}

.av-light {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 42%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-light svg {
  width: 60px;
  height: 60px;
  opacity: 0.25;
}

.about-features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.5;
}

.feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.21rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* FEATURED */
.featured-section {
  background: var(--cream);
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.view-all-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.view-all-link::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}

.view-all-link:hover {
  color: var(--espresso);
}

.view-all-link:hover::after {
  width: 48px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.6s;
  position: relative;
}

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

.product-img svg {
  width: 110px;
  height: 110px;
  opacity: 0.22;
  transition: transform 0.6s;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-card:hover .product-img svg {
  transform: scale(1.1);
}

.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--espresso);
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.77rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transform: translateY(8px);
  transition: transform 0.4s;
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.product-info {
  padding: 22px 26px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.70rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 5px;
  line-height: 1.25;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-name a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.6);
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  min-height: 4.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-price span {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'Jost';
  margin-left: 0;
}

.product-footer {
  padding: 8px 26px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  margin-top: auto;
}

.product-badges {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge-feature {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4b3328;
  background: linear-gradient(120deg, #f8e9c8 0%, #f2d8bf 45%, #eac8d9 100%);
  border: 1px solid rgba(193, 122, 90, 0.42);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(139, 111, 94, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.28s, box-shadow 0.28s, filter 0.28s;
}

.badge-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.58) 48%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: -1;
}

.badge-feature:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.04);
  box-shadow: 0 10px 18px rgba(139, 111, 94, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-feature:hover::before {
  transform: translateX(130%);
}

.badge-atacado {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-white);
  background: var(--terracota);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.badge-atacado:hover {
  background: var(--clay);
}

.badge-varejo {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.badge-varejo:hover {
  background: var(--gold-light);
}

.price-pill {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--espresso);
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.26), rgba(201, 169, 110, 0.1));
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 999px;
  padding: 6px 12px 7px;
  box-shadow: 0 8px 18px rgba(28, 20, 16, 0.09);
}

@media (max-height: 900px) and (min-width: 1025px) {
  .product-img {
    aspect-ratio: 16 / 10;
  }

  .product-info {
    padding: 14px 18px 8px;
  }

  .product-category {
    font-size: 0.64rem;
    margin-bottom: 4px;
  }

  .product-name {
    font-size: 1.08rem;
    min-height: 2.35em;
    margin-bottom: 4px;
  }

  .product-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    min-height: 2.9em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .product-badges {
    margin-top: 8px;
    gap: 4px;
  }

  .badge-feature,
  .badge-atacado,
  .badge-varejo {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .product-footer {
    padding: 4px 18px 8px;
  }

  .product-price span {
    font-size: 0.8rem;
  }

  .price-pill {
    font-size: 1.42rem;
    padding: 4px 10px 5px;
  }
}

/* PROCESS */
.process-section {
  background: var(--espresso);
}

.process-section .section-title {
  color: var(--cream);
}

.process-section .section-desc {
  color: rgba(245, 240, 232, 0.55);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.step-card:hover {
  background: rgba(201, 169, 110, 0.07);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.37rem;
  color: rgba(201, 169, 110, 0.12);
  line-height: 1;
  margin-bottom: 18px;
}

.step-icon {
  margin-bottom: 14px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.43rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.45);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(28, 20, 16, 0.07);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 8px;
  left: 26px;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--clay);
}

.author-name {
  font-weight: 500;
  font-size: 0.99rem;
  color: var(--espresso);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CONTACT */
.contact-section {
  background: var(--espresso);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-section .section-title {
  color: var(--cream);
}

.contact-section .section-desc {
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 52px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.contact-item-text h4 {
  font-size: 0.77rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-text p {
  font-size: 1.03rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
}

.contact-right {
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 52px;
}

.contact-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.62rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}

.contact-right > p {
  font-size: 1.18rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  margin-bottom: 36px;
}

.wa-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 211, 102, 0.25);
  margin-bottom: 20px;
  transition: background 0.3s;
  text-decoration: none;
}

.wa-block:hover {
  background: rgba(37, 211, 102, 0.06);
}

.wa-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.wa-text strong {
  display: block;
  font-size: 1.21rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}

.wa-text span {
  font-size: 1.08rem;
  color: rgba(245, 240, 232, 0.5);
}

.contact-note {
  font-size: 1.03rem;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.7;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 20px;
}

/* FOOTER */
footer {
  background: var(--espresso);
  padding: 56px 60px 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
}

.footer-brand .nav-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.38);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 0.94rem;
  color: rgba(245, 240, 232, 0.38);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.80rem;
  color: rgba(245, 240, 232, 0.25);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s, transform 0.8s;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 130px;
  }

  nav {
    justify-content: flex-start;
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 20px 24px;
  }

  nav .nav-logo img {
    height: 78px;
  }

  .nav-links {
    display: none;
  }

  .hero-carousel {
    height: auto;
    min-height: auto;
  }

  .slide {
    position: relative;
    grid-template-columns: 1fr;
    opacity: 1;
    display: none;
  }

  .slide.active {
    display: grid;
  }

  .slide-left {
    padding: 110px 24px 50px;
  }

  .slide-right {
    height: 300px;
  }

  .min-strip {
    flex-direction: column;
    padding: 40px 24px;
  }

  .min-strip-cta {
    margin-left: 0;
    padding-left: 0;
    padding-top: 24px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
  }

  .stat-item {
    border: none;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(139, 111, 94, 0.12);
  }

  section {
    padding: 72px 24px;
  }

  section[id] {
    scroll-margin-top: 130px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 280px;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-controls,
  .carousel-arrows {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 112px;
  }

  nav {
    justify-content: flex-start;
    padding: 14px 16px;
  }

  nav.scrolled {
    padding: 14px 16px;
  }

  nav .nav-logo {
    max-width: calc(100vw - 130px);
  }

  nav .nav-logo img {
    height: clamp(52px, 12vw, 64px);
    max-width: 100%;
  }

  nav.scrolled .nav-logo img {
    height: clamp(48px, 11vw, 60px);
  }

  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    width: 86px;
    padding: 8px 8px;
  }

  .slide-left {
    padding: 92px 16px 34px;
  }

  .slide-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .slide-title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    margin-bottom: 16px;
  }

  .slide-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: none;
    margin-bottom: 24px;
  }

  .slide-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-gold {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .slide-right {
    height: 220px;
  }

  .slide-visual-circle {
    width: 210px;
    height: 210px;
  }

  .slide-visual-circle svg {
    width: 96px;
    height: 96px;
  }

  .slide-badge {
    width: 92px;
    height: 92px;
    right: 16px;
    bottom: 16px;
  }

  .slide-badge strong {
    font-size: 1.3rem;
  }

  .slide-badge span {
    font-size: 0.54rem;
  }

  .min-strip {
    padding: 28px 16px;
  }

  .min-strip-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0;
  }

  section[id] {
    scroll-margin-top: 112px;
  }

  .min-strip-amount {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding-right: 0;
    padding-bottom: 10px;
    font-size: 3.2rem;
  }

  .min-strip-text h3 {
    font-size: 1.4rem;
  }

  .min-strip-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .min-strip-cta {
    width: 100%;
    padding-top: 16px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    padding: 26px 16px;
  }

  .stat-item {
    padding: 10px 0 14px;
  }

  section {
    padding: 56px 16px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .about-wrap {
    gap: 32px;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .featured-grid,
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 26px 20px;
  }

  .testimonial-card::before {
    font-size: 4.2rem;
    top: 6px;
    left: 12px;
  }

  .contact-inner {
    gap: 32px;
  }

  .contact-right {
    padding: 26px 18px;
  }

  .contact-right h3 {
    font-size: 2.04rem;
  }

  footer {
    padding: 40px 16px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  nav .nav-logo {
    max-width: calc(100vw - 112px);
  }

  nav .nav-logo img {
    height: clamp(44px, 11vw, 54px);
  }

  nav.scrolled .nav-logo img {
    height: clamp(42px, 10.5vw, 50px);
  }

  .nav-cta {
    display: none;
  }

  .slide-title {
    font-size: clamp(1.9rem, 10vw, 2.4rem);
  }

  .product-info {
    padding: 18px 16px 12px;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .product-desc {
    font-size: 0.86rem;
  }

  .product-price {
    gap: 6px;
  }

  .product-price span {
    font-size: 0.86rem;
  }

  .price-pill {
    font-size: 1.7rem;
    padding: 5px 10px 6px;
  }

  .product-footer {
    padding: 8px 16px 12px;
  }
}

/* Adicione isso ao seu index.css ou catalogo.css */
.img-produto {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem esticar */
    display: block;
    border-radius: inherit; /* Mantém o arredondamento se o container tiver */
}

/* No caso do Hero (Carousel), remova a opacidade baixa que estava no SVG */
.slide-visual-circle img {
    opacity: 1; 
    width: 100%;
    height: 100%;
    object-fit: contain; /* 'contain' é melhor para mostrar o produto inteiro no círculo */
}