/* ============================================================
   FAZENDA SERRA VERDE — style.css
   Design: Earthy greens + deep coffee + gold accents
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --verde:       #2D5016;
  --verde-mid:   #3D6B1E;
  --verde-light: #5C8A30;
  --cafe:        #3B1F0A;
  --cafe-mid:    #6B3B1A;
  --gold:        #C8961A;
  --gold-light:  #E4B84A;
  --cream:       #F9F4EC;
  --cream-dark:  #EDE3D4;
  --earth:       #7C5C3E;
  --text:        #2A1F14;
  --text-muted:  #7A6855;
  --white:       #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(45,80,22,.12);
  --shadow-lg:   0 12px 48px rgba(45,80,22,.2);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; }

a { text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

/* ── Cursor personalizado ─────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: .1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: .25s ease;
  opacity: .7;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--verde-mid); border-radius: 3px; }

/* ── Loading Screen ───────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--cafe);
  z-index: 19999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity .6s, visibility .6s;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: .05em;
}
.loader-bar-wrap {
  width: 220px; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Particles canvas ─────────────────────────────────────── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── Navbar ───────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: .9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-nav.scrolled {
  background: var(--cafe) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding: .55rem 0;
}
.site-nav .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: .03em;
}
.site-nav .navbar-brand span { color: var(--gold); }
.site-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .9rem !important;
  position: relative;
}
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { left: .9rem; right: .9rem; }
.site-nav .nav-link.active { color: var(--gold) !important; }
.btn-nav-cta {
  background: var(--gold);
  color: var(--cafe) !important;
  border-radius: 50px;
  padding: .45rem 1.3rem !important;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-nav-cta::after { display: none !important; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cafe);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e1007 0%, var(--cafe) 40%, #1a3008 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,150,26,.12) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,150,26,.15);
  border: 1px solid rgba(200,150,26,.35);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero p.lead {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-hero-primary {
  background: var(--gold);
  color: var(--cafe);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,150,26,.4); color: var(--cafe); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-3px); color: var(--white); }
.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .2rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Coffee beans 3d floating elements */
.hero-float {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-circle {
  width: min(520px, 100%);
  height: min(520px, 100%);
  border-radius: 50%;
  border: 1px solid rgba(200,150,26,.15);
  position: relative;
  animation: rotateSlow 30s linear infinite;
}
.hero-float-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,26,.08);
}
.orbit-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: -5px; left: calc(50% - 5px);
  box-shadow: 0 0 12px var(--gold);
}
.orbit-dot:nth-child(2) { top: calc(50% - 5px); left: calc(100% - 5px); background: var(--verde-light); box-shadow: 0 0 12px var(--verde-light); }
.orbit-dot:nth-child(3) { top: calc(100% - 5px); left: calc(50% - 5px); }
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-badge {
  position: absolute;
  width: 130px; height: 130px;
  background: radial-gradient(circle at 40% 40%, var(--verde-mid), var(--verde));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--font-display);
  box-shadow: 0 8px 32px rgba(45,80,22,.4);
  border: 2px solid rgba(200,150,26,.3);
}
.hero-badge .num { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-badge .lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }

/* ── Section base ─────────────────────────────────────────── */
section { padding: 6rem 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--verde-mid);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
.section-title span { color: var(--verde-mid); }
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: .75rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-fz {
  background: var(--verde);
  color: var(--white);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-fz:hover { background: var(--verde-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--gold);
  color: var(--cafe);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-gold:hover { background: var(--gold-light); color: var(--cafe); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,26,.35); }
.btn-outline-fz {
  background: transparent;
  color: var(--verde);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--verde);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-fz:hover { background: var(--verde); color: var(--white); transform: translateY(-2px); }

/* ── Counters ────────────────────────────────────────────── */
.counter-band {
  background: var(--verde);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.counter-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .4rem;
}

/* ── About Section ────────────────────────────────────────── */
.about-section { background: var(--cream); }
.about-img-wrap {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.about-img-main {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-since {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--verde);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-since .year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-since .txt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.about-cert {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: .4rem .85rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--verde);
  margin: .25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.about-cert i { color: var(--gold); }

/* ── Process Section ──────────────────────────────────────── */
.process-section { background: var(--white); }
.process-timeline {
  position: relative;
  padding-left: 60px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--verde-light), var(--gold), var(--verde-light));
}
.process-step {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s, transform .6s;
}
.process-step.visible { opacity: 1; transform: translateX(0); }
.process-step-icon {
  position: absolute;
  left: -49px;
  top: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--verde-light);
  z-index: 1;
}
.process-step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); }
.process-step-text { color: var(--text-muted); margin-top: .25rem; font-size: .95rem; }

/* ── Cafes Grid ───────────────────────────────────────────── */
.cafes-section { background: var(--cream); }
.cafe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cafe-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cafe-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--verde), var(--cafe));
  position: relative;
  overflow: hidden;
}
.cafe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cafe-card:hover .cafe-card-img img { transform: scale(1.08); }
.cafe-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .3;
  color: var(--gold);
}
.cafe-pontuacao {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--cafe);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.cafe-pontuacao small { font-size: .6rem; font-weight: 400; }
.cafe-destaque-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--verde);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
}
.cafe-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.cafe-card-nome { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--text); }
.cafe-card-variedade { font-size: .8rem; color: var(--verde-mid); font-weight: 600; margin-bottom: .6rem; }
.cafe-card-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
.cafe-tag {
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-weight: 500;
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--cream-dark);
}
.cafe-tag.processo { background: rgba(93,138,48,.1); color: var(--verde); border-color: rgba(93,138,48,.25); }
.cafe-notas { font-style: italic; color: var(--text-muted); font-size: .9rem; margin-bottom: .75rem; flex: 1; }
.cafe-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--cream-dark);
}
.cafe-preco { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--verde); }
.cafe-preco small { font-family: var(--font-body); font-size: .75rem; font-weight: 400; color: var(--text-muted); }

/* filter tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-tab {
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--white);
}

/* ── Premiações ───────────────────────────────────────────── */
.premiacoes-section { background: var(--cafe); }
.premio-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.premio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.premio-card:hover::before { transform: scaleX(1); }
.premio-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.premio-icon {
  width: 52px; height: 52px;
  background: rgba(200,150,26,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.premio-titulo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.premio-ano { color: var(--gold); font-size: .82rem; font-weight: 600; margin-bottom: .5rem; }
.premio-desc { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ── Carrossel Depoimentos ────────────────────────────────── */
.testimonials-section { background: var(--cream); overflow: hidden; }
.testimonial-swiper { overflow: visible; }
.swiper-testimonial .swiper-slide { padding: 1rem .5rem 2rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-stars { margin-bottom: .75rem; }
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--text); }
.testimonial-company { font-size: .8rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--verde) !important; opacity: .3; }
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* ── Galeria ─────────────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) {
  grid-column: span 2;
}
.gallery-img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}
.gallery-placeholder {
  width: 100%; min-height: 200px;
  background: linear-gradient(135deg, var(--verde), var(--cafe));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,80,22,.7);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.gallery-overlay-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .75; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-section { background: var(--cream); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--verde), var(--cafe));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.15);
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem; display: flex; align-items: center; gap: .35rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; flex: 1; }
.blog-card-title a { color: inherit; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--verde-mid); }
.blog-card-resumo { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { color: var(--verde); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .3rem; }
.blog-read-more:hover { color: var(--verde-mid); gap: .6rem; }

/* ── Paralax CTA ──────────────────────────────────────────── */
.cta-paralax {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--verde) 0%, var(--cafe) 100%);
  overflow: hidden;
}
.cta-paralax::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,26,.15) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.cta-paralax::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,26,.08) 0%, transparent 70%);
  bottom: -150px; left: -50px;
}
.cta-paralax-content { position: relative; z-index: 2; }
.cta-paralax h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
}
.cta-paralax h2 em { font-style: italic; color: var(--gold); }
.cta-paralax p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; }

/* ── Contato ─────────────────────────────────────────────── */
.contato-section { background: var(--white); }
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.contact-info-value { font-size: .95rem; font-weight: 500; color: var(--text); }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(45,80,22,.1);
  background: var(--white);
}
.contact-form-wrap label { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--cafe) 0%, var(--verde) 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
}
.page-hero-sub { color: rgba(255,255,255,.65); font-size: 1rem; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.5); font-size: .82rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.3); }

/* ── Single Post ─────────────────────────────────────────── */
.post-content { max-width: 760px; }
.post-content h2, .post-content h3 { font-family: var(--font-display); color: var(--text); margin: 2rem 0 .75rem; }
.post-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: .4rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--cafe);
  color: rgba(255,255,255,.6);
  padding: 5rem 0 1.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: .9rem; max-width: 280px; margin-top: .5rem; }
.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-link { display: block; color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: .5rem; transition: color var(--transition), padding-left var(--transition); }
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin-right: .4rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--cafe); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 3rem 0 1.5rem; }
.footer-bottom { font-size: .8rem; }
.footer-certs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.footer-cert {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  padding: .3rem .7rem;
  border-radius: 50px;
  letter-spacing: .06em;
}

/* ── Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
  opacity: 0;
  transform: scale(.88);
  transition: opacity .6s ease, transform .6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* delay helpers */
.d-100 { transition-delay: .1s !important; }
.d-200 { transition-delay: .2s !important; }
.d-300 { transition-delay: .3s !important; }
.d-400 { transition-delay: .4s !important; }
.d-500 { transition-delay: .5s !important; }
.d-600 { transition-delay: .6s !important; }
.d-700 { transition-delay: .7s !important; }

/* ── WhatsApp float btn ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-float { display: none; }
  .about-since { left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
}
@media (max-width: 767.98px) {
  section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.5rem; }
  .cursor-dot, .cursor-ring { display: none; }
}
