@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --cream: #F7F2E9;
  --parchment: #EDE5D0;
  --choco: #2E1A0E;
  --caramel: #B8722A;
  --sage: #7A8C6E;
  --ultrasoft-green: #CECDB4;
  --ink: #1A0F08;
  --chalk: #FDFAF5;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background-color: var(--chalk);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3.5rem);
}

section {
  padding: 64px 0;
  position: relative;
}

@media (min-width: 768px) {
  section {
    padding: 110px 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

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

ul {
  list-style: none;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  height: 64px;
  background-color: var(--parchment);
  border-radius: 0 0 50% 50% / 0 0 15px 15px;
  border-bottom: 4px solid var(--ultrasoft-green);
  box-shadow: 0 4px 20px rgba(74, 44, 17, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--caramel);
}

.nav-logo-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 100;
}

.nav-logo-wrapper img {
  height: 90px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(74, 44, 17, 0.25));
}

.btn-cta-nav {
  display: none;
  color: var(--choco);
  background-color: var(--ultrasoft-green);
  padding: 10px 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

a.btn-cta-nav:hover,
button.btn-cta-nav:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 114, 42, 0.3);
}

@media (min-width: 1100px) {
  .nav-links {
    display: flex;
  }

  .btn-cta-nav {
    display: inline-block;
  }
}

.mobile-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  margin-right: 15px;
}

.mobile-social-icons a {
  color: var(--choco);
  display: flex;
  transition: transform 0.2s ease;
}

.mobile-social-icons a:hover {
  transform: translateY(-2px);
}

.mobile-social-icons svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1100px) {
  .mobile-social-icons {
    display: none;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  order: -1;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
  stroke-width: 2;
}

@media (min-width: 1100px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--parchment);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.close-menu-btn {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 3rem;
}

.mobile-menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.mobile-menu-overlay a {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active {
  color: var(--caramel);
}

/* Hero Section */
.hero {
  height: 95vh;
  position: relative;
  margin-top: -20px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-slide-bg.is-blurred {
  inset: -12px;
  filter: blur(3px);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--choco);
  opacity: 0.60;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 6;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero-dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
  border-color: #fff;
}

.hero-content {
  max-width: 640px;
}

.hero-content h1 {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 52px rgba(0, 0, 0, 0.5);
}

.hero-content h1 em {
  color: var(--cream);
}

.hero-content p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sage);
  color: #fff;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

a.btn-primary:hover,
button.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 135, 107, 0.35);
}

.btn-secondary {
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

a.btn-secondary:hover,
button.btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-wave {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: 70px;
  z-index: 5;
  fill: var(--choco);
}

.hero-wave path {
  stroke: none;
}

@media (min-width: 768px) {
  .hero-wave path {
    stroke: var(--cream);
    stroke-width: 4px;
    vector-effect: non-scaling-stroke;
  }
}

/* Redes Sociais */
.values-banner {
  background: var(--choco);
  padding: 1rem 0;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .values-banner {
    display: none;
  }
}

.values-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.value-item {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--chalk);
  text-align: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: var(--chalk);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
}

.social-link:hover {
  color: var(--caramel);
}

.value-separator {
  color: var(--caramel);
  font-size: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .value-separator {
    display: block;
  }
}

/* Nossa História */
.history {
  background: var(--cream);
  position: relative;
  padding-top: 90px;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.history-grid .col-image,
.history-grid .history-image {
  order: -1;
}

@media (min-width: 768px) {
  .history-grid {
    grid-template-columns: 60% 40%;
    gap: 4rem;
  }

  .history-grid .col-image,
  .history-grid .history-image {
    order: 0;
  }
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--sage);
  background: rgba(122, 140, 110, 0.15);
  border: 1px solid var(--sage);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.history-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.history-content h2 em {
  color: var(--caramel);
}

.history-content p {
  font-family: 'Outfit', sans-serif;
  color: rgba(26, 15, 8, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn-outline {
  border: 1.5px solid var(--caramel);
  background: transparent;
  color: var(--caramel);
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-decoration: none;
}

a.btn-outline:hover,
button.btn-outline:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 114, 42, 0.3);
}

.history-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  clip-path: circle(45%);
}

.products-wrapper {
  background: var(--parchment);
  position: relative;
}

.products {
  padding-top: 110px;
  padding-bottom: 64px;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--ink);
}

.products-header h2 em {
  color: var(--caramel);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--chalk);
  border: 1px solid rgba(46, 26, 14, 0.07);
  padding: 1.4rem 1rem;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(46, 26, 14, 0.06);
}

@media (min-width: 768px) {
  .product-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(46, 26, 14, 0.12);
}

.product-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--caramel);
  margin-bottom: 1rem;
  background: rgba(180, 100, 40, 0.09);
  padding: 10px;
  border-radius: 50%;
  box-sizing: content-box;
  transition: background 0.25s ease;
}

@media (min-width: 768px) {
  .product-icon {
    width: 40px;
    height: 40px;
    padding: 14px;
    margin-bottom: 1.8rem;
  }
}

.product-card:hover .product-icon {
  background: rgba(180, 100, 40, 0.16);
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.product-card p {
  font-family: 'Outfit', sans-serif;
  color: rgba(26, 15, 8, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .product-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.products-action {
  text-align: center;
}

/* Seja um Parceiro */
.partner-wrapper {
  background: var(--choco);
  position: relative;
}

.partner {
  padding-top: 110px;
  padding-bottom: 64px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-image img {
  width: 100%;
  aspect-ratio: 3/3.3;
  object-fit: cover;
  border: 4px solid #fff;
  transform: rotate(1.5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.partner-content h2 em {
  color: var(--caramel);
}

.partner-content p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.btn-white-outline {
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-decoration: none;
}

a.btn-white-outline:hover,
button.btn-white-outline:hover {
  background: #fff;
  color: var(--choco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* Section Waves */
.section-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.section-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.section-wave-top svg,
.section-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 52px;
}

@media (min-width: 768px) {

  .section-wave-top svg,
  .section-wave-bottom svg {
    height: 82px;
  }
}

/* Diferenciais */
.features {
  background: var(--cream);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .feature-item {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .feature-item:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.feature-number {
  font-family: 'Outfit', serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--caramel);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.feature-item p {
  font-family: 'Outfit', sans-serif;
  color: rgba(26, 15, 8, 0.7);
  line-height: 1.6;
}

/* Depoimentos */
.testimonials {
  background: var(--parchment);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--ink);
}

.testimonials-header h2 em {
  color: var(--caramel);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--chalk);
  border: 1px solid rgba(46, 26, 14, 0.06);
  border-top: 3px solid var(--caramel);
  padding: 2.8rem 2rem 2rem;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 6px 28px rgba(46, 26, 14, 0.07);
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--caramel);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card p {
  font-family: 'Outfit', sans-serif;
  color: rgba(26, 15, 8, 0.78);
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--caramel);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(46, 26, 14, 0.1);
  position: relative;
  z-index: 2;
}

.testimonial-author::before {
  content: '— ';
}

/* Encontre a Loja */
.location {
  background: var(--cream);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--ink);
}

.location-content h2 em {
  color: var(--caramel);
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-info-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--caramel);
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info-item div {
  font-family: 'Outfit', sans-serif;
  color: rgba(26, 15, 8, 0.7);
  line-height: 1.6;
}

.location-info-item strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.location-map {
  border: 4px solid var(--chalk);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--choco);
  padding: 64px 0 32px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 111px;
  object-fit: contain;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  text-transform: lowercase;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: #128C7E;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  background: #0f7a6e;
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Na página de produtos, sobe o botão acima do category-nav fixo */
@media (max-width: 899px) {
  .page-produtos .whatsapp-btn {
    bottom: calc(56px + 16px);
  }
}

/* ─── Utilities ─────────────────────────────────────────────── */

.section-label--light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.content-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.content-centered p {
  margin-left: auto;
  margin-right: auto;
}

.img-organic-1 {
  border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
}

.img-organic-2 {
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */

.stats-bar {
  background: var(--ultrasoft-green);
  padding: 2.5rem 0;
  position: relative;
  z-index: 3;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: 'Outfit', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}

/* ─── Two-column content grid ────────────────────────────────── */

.content-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.content-2col .col-image {
  order: -1;
}

@media (min-width: 768px) {
  .content-2col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .content-2col .col-image {
    order: 0;
  }

  .content-2col.reverse .col-text {
    order: 2;
  }

  .content-2col.reverse .col-image {
    order: 1;
  }
}

.col-image img {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
}

/* ─── Timeline Block ─────────────────────────────────────────── */

.timeline-block {
  background: var(--choco);
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}

.timeline-block .section-label {
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

/* Linha conectora horizontal */
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--caramel), var(--caramel), transparent);
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1rem;
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--caramel);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--caramel);
  border: 3px solid var(--choco);
  box-shadow: 0 0 0 2px var(--caramel);
  position: relative;
  z-index: 2;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 3px var(--caramel), 0 0 20px rgba(196, 155, 87, 0.3);
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* Mobile: timeline vertical */
@media (max-width: 767px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 2rem;
    text-align: left;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0;
  }

  .timeline-year {
    min-width: 52px;
    margin-bottom: 0;
    text-align: right;
    font-size: 1.1rem;
  }

  .timeline-dot {
    margin-bottom: 0;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .timeline-content h3 {
    font-size: 1rem;
  }

  .timeline-content p {
    max-width: none;
  }
}

/* ─── Video Embed ────────────────────────────────────────────── */

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 600px;
  border: none;
}

/* ─── Video Thumb + Modal ────────────────────────────────────── */

.video-thumb {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(46, 26, 14, 0.18);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.video-thumb:hover img {
  transform: scale(1.04);
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46, 26, 14, 0.15) 0%, rgba(46, 26, 14, 0.45) 100%);
  transition: opacity 0.3s ease;
}

.video-thumb:hover::after {
  opacity: 0.6;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.video-play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--choco);
  margin-left: 4px;
}

.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
}

.video-thumb-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.88);
  backdrop-filter: blur(5px);
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 0 1rem;
}

.video-modal-close {
  position: absolute;
  top: -2.8rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem;
  line-height: 0;
  transition: color 0.2s ease;
}

.video-modal-close:hover {
  color: #fff;
}

.video-modal-close svg {
  width: 28px;
  height: 28px;
}

.video-modal-embed iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 12px;
  display: block;
}

/* ─── Page CTA ───────────────────────────────────────────────── */

.page-cta {
  background: var(--ultrasoft-green);
  text-align: center;
}

.page-cta h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-cta p {
  color: rgba(26, 15, 8, 0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Nossa História ─────────────────────────────────────────── */

.hero-story {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 70px;
  margin-top: -20px;
  overflow: hidden;
}

.hero-story::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('../images/fachada-frutaice-5.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: blur(3px);
  z-index: 0;
}

.hero-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--choco);
  opacity: 0.75;
  z-index: 1;
}

.hero-story .hero-wave path {
  stroke: var(--ultrasoft-green);
}

.hero-story .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 760px;
}

.page-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 52px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.story-section {
  background: var(--cream);
  position: relative;
  padding-top: 90px;
}

.story-section.alt {
  background: var(--chalk);
}

/* ─── Produtos ───────────────────────────────────────────────── */

body.page-produtos {
  padding-bottom: 72px;
}

.products-hero {
  background: var(--choco);
  color: #fff;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  margin-top: -20px;
}

.products-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.products-hero h1 em {
  color: var(--caramel);
}

.products-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.8;
}

.products-hero .hero-wave {
  fill: var(--ultrasoft-green);
}

.products-hero .hero-wave path {
  stroke: var(--ultrasoft-green);
}

.selo-vegano {
  height: 2.8em;
  width: auto;
  object-fit: contain;
  vertical-align: bottom;
  margin-top: -0.6em;
}

.category-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--choco);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.category-nav-scroll {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.category-nav-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-hint {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
  background: linear-gradient(to right, transparent, var(--choco) 70%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: pulse-horizontal 1.5s infinite;
}

@keyframes pulse-horizontal {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (min-width: 900px) {
  .scroll-hint {
    display: none;
  }

  .category-nav-scroll {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.2rem 0;
  }
}

.cat-pill {
  flex: 0 0 auto;
  padding: 0.45rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.cat-pill:hover {
  background: var(--parchment);
  border-color: var(--parchment);
  color: var(--ink);
}

.cat-pill.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.cat-section {
  padding: 5rem 0 4rem;
}

.cat-section.bg-cream {
  background: var(--cream);
}

.cat-section.bg-parchment {
  background: var(--parchment);
}

.cat-section.bg-choco {
  background: var(--choco);
  color: #fff;
}

.cat-section.bg-choco .cat-header h2,
.cat-section.bg-choco .cat-header h2 em {
  color: #fff;
}

.cat-section.bg-choco .cat-header p {
  color: rgba(255, 255, 255, 0.72);
}

.cat-section.bg-choco .section-label {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cat-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .cat-header {
    margin-bottom: 3rem;
  }
}

.cat-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 1rem 0;
}

.cat-header h2 em {
  color: var(--caramel);
}

.cat-header p {
  color: rgba(26, 15, 8, 0.72);
  line-height: 1.75;
  font-size: 1rem;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .p-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

.p-card {
  background: var(--chalk);
  border: 1px solid rgba(46, 26, 14, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46, 26, 14, 0.12);
}

.p-thumb {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cream), var(--parchment));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 600px) {
  .p-thumb {
    aspect-ratio: 4 / 5;
  }
}

.p-thumb svg {
  width: 40px;
  height: 40px;
  stroke: var(--caramel);
  opacity: 0.6;
}

@media (min-width: 600px) {
  .p-thumb svg {
    width: 64px;
    height: 64px;
  }
}

.p-thumb::after {
  content: 'foto em breve';
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 15, 8, 0.4);
}

.p-thumb--premium {
  background: linear-gradient(135deg, #4a2a14, #2E1A0E);
}

.p-thumb--premium svg {
  stroke: var(--caramel);
  opacity: 0.9;
}

.p-thumb--premium::after {
  color: rgba(255, 255, 255, 0.45);
}

.p-thumb--vegan {
  background: linear-gradient(135deg, #c8d8b6, #9bbf7e);
}

.p-thumb--zero {
  background: linear-gradient(135deg, #e8e2d0, #c9bfa3);
}

.p-thumb--acai {
  background: linear-gradient(135deg, #4a2358, #2c1037);
}

.p-thumb--acai svg {
  stroke: #d9b3e8;
  opacity: 0.7;
}

.p-thumb--acai::after {
  color: rgba(255, 255, 255, 0.4);
}

.p-body {
  padding: 0.65rem 0.75rem 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .p-body {
    padding: 1.1rem 1.2rem 1.3rem;
  }
}

.p-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

@media (min-width: 600px) {
  .p-name {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
}

.p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
}

.p-tag {
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  line-height: 1.2;
}

@media (min-width: 600px) {
  .p-tag {
    font-size: 0.66rem;
    padding: 0.22rem 0.55rem;
  }
}

.p-tag--good {
  background: #e3efd9;
  color: #3d6b1f;
}

.p-tag--vegan {
  background: #c5e0a8;
  color: #2d5a14;
  font-weight: 600;
}

.p-tag--warn {
  background: #f4e9d8;
  color: #8a5a1e;
}

.p-tag--neutral {
  background: rgba(46, 26, 14, 0.06);
  color: var(--ink);
}

.p-tag--fruit {
  background: #f7d8d8;
  color: #8a2727;
}

.p-tag--premium {
  background: #2E1A0E;
  color: var(--caramel);
}

.alergenos-banner {
  background: var(--choco);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  line-height: 1.7;
}

.alergenos-banner .container {
  max-width: 900px;
  text-align: center;
}

.alergenos-banner strong {
  color: var(--caramel);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  display: block;
  margin-bottom: 0.6rem;
}

.svb-section {
  background: var(--cream);
  padding: 5rem 0;
}

.svb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .svb-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.svb-seal {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.svb-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.svb-content h2 em {
  color: var(--caramel);
}

.svb-content p {
  color: rgba(26, 15, 8, 0.72);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — Página de Listagem (conteudo.php)
═══════════════════════════════════════════════════════════════ */

/* Hero */
.conteudo-hero {
  background: var(--choco);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}

.conteudo-hero-content {
  padding-top: 2rem;
}

.conteudo-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin: 1rem 0 1.2rem;
}

.conteudo-hero h1 em {
  color: var(--caramel);
}

.conteudo-hero p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

.conteudo-hero .hero-wave path {
  fill: var(--chalk);
}

/* Listagem */
.blog-listing {
  background: var(--chalk);
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.blog-empty {
  text-align: center;
  color: rgba(26, 15, 8, 0.5);
  padding: 4rem 0;
  font-style: italic;
}

/* Card em destaque */
.blog-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--chalk);
  border: 1px solid rgba(46, 26, 14, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 24px rgba(46, 26, 14, 0.07);
  transition: box-shadow 0.3s ease;
}

.blog-card--featured:hover {
  box-shadow: 0 12px 40px rgba(46, 26, 14, 0.13);
}

@media (min-width: 768px) {
  .blog-card--featured {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card--featured .blog-card-image {
  min-height: 260px;
}

@media (min-width: 768px) {
  .blog-card--featured .blog-card-image {
    min-height: 380px;
  }
}

.blog-card--featured .blog-card-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--featured .blog-card-title a {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* Grid dos demais posts */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card genérico */
.blog-card {
  background: var(--chalk);
  border: 1px solid rgba(46, 26, 14, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(46, 26, 14, 0.12);
}

.blog-card-image-link {
  display: block;
}

.blog-card-image {
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

.blog-card-image-link {
  overflow: hidden;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-cat {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--caramel);
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--caramel);
}

.blog-card-resumo {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: rgba(26, 15, 8, 0.68);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-card-data,
.blog-card-leitura,
.blog-card-sep {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: rgba(26, 15, 8, 0.45);
}

.blog-card-link {
  margin-left: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--caramel);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-link:hover {
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — Página de Post Individual
═══════════════════════════════════════════════════════════════ */

/* Hero do post */
.post-hero {
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
  margin-top: -20px;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 8, 0.92) 0%, rgba(26, 15, 8, 0.45) 60%, rgba(26, 15, 8, 0.15) 100%);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 3.5rem;
}

.post-back-link {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}

.post-back-link:hover {
  color: #fff;
}

.post-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
  max-width: 800px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Corpo do artigo */
.post-body {
  background: var(--chalk);
  padding: 4rem 0 5rem;
}

.post-container {
  max-width: 720px;
}

.post-lead {
  font-size: 1.2rem !important;
  line-height: 1.75 !important;
  color: rgba(26, 15, 8, 0.8) !important;
  font-weight: 400;
  margin-bottom: 2rem !important;
}

.post-container p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 15, 8, 0.75);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.post-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.2;
  margin: 3rem 0 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 26, 14, 0.08);
}

.post-container em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(26, 15, 8, 0.82);
}

.post-container strong {
  color: var(--ink);
  font-weight: 600;
}

/* Blockquote */
.post-quote {
  border-left: 3px solid var(--caramel);
  margin: 2.5rem 0;
  padding: 1.5rem 1.8rem;
  background: rgba(184, 114, 42, 0.05);
  border-radius: 0 8px 8px 0;
}

.post-quote p {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--ink) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* Figure / Imagem */
.post-figure {
  margin: 2.5rem 0;
}

.post-figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.post-figure figcaption {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(26, 15, 8, 0.45);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* CTA Block */
.post-cta-block {
  background: var(--choco);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.post-cta-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.post-cta-block p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.95rem !important;
  margin-bottom: 1.5rem !important;
}

/* Nav footer do post */
.post-footer-nav {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(46, 26, 14, 0.08);
  margin-top: 2rem;
}