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

:root {
  --verde:       #1C2E1A;
  --verde-med:   #5A7A56;
  --dourado:     #B8963C;
  --dourado-lt:  #D4AF6A;
  --terracota:   #6B1A2A;
  --creme:       #F8F3EA;
  --creme-dk:    #EDE3D0;
  --escuro:      #1A1208;
  --texto:       #2C1A0E;
  --cinza:       #7A6A58;
  --white:       #ffffff;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--texto);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--creme-dk); }
::-webkit-scrollbar-thumb { background: var(--dourado); border-radius: 3px; }

/* ── CONTAINER ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── REVEAL ANIMATION ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--verde);
}
.section-sub {
  font-size: 14px;
  color: var(--cinza);
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
em { font-style: italic; color: inherit; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--verde);
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--verde-med); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

.btn-large { padding: 20px 52px; font-size: 14px; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(28, 46, 26, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--creme);
  text-decoration: none;
  letter-spacing: 0.5px;
  flex: 1;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(248,243,234,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--dourado-lt); }
.btn-nav {
  background: var(--dourado);
  color: var(--escuro);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--dourado-lt); transform: translateY(-1px); }

/* ── HAMBURGER ────────────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--creme);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--verde);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(184,150,60,0.15);
}
.mobile-menu-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--creme);
  letter-spacing: 0.5px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: clamp(40px, 10vw, 56px);
  font-weight: 300;
  color: rgba(248,243,234,0.75);
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1.3;
  padding: 8px 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.2s ease, transform 0.45s ease, opacity 0.45s ease;
}
.mobile-menu.open .mobile-link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-link:hover { color: var(--dourado-lt); }
.mobile-menu-cta {
  transform: translateY(20px);
  opacity: 0;
  transition: background var(--transition), transform 0.45s ease, opacity 0.45s ease;
}
.mobile-menu.open .mobile-menu-cta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.31s;
}
.mobile-menu-phone {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(248,243,234,0.35);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.mobile-menu.open .mobile-menu-phone {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.38s;
}

body.menu-open { overflow: hidden; }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  animation: waPulse 3s ease 1s infinite;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
  transform: translateY(-2px) scale(1.03);
}
.whatsapp-float-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}
@keyframes waPulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%  { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
}
@media (max-width: 768px) {
  .whatsapp-float { padding: 15px; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-logo { font-size: 17px; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 0; justify-content: space-between; }
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--verde);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90,122,86,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184,150,60,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #0f1a0e 0%, #1C2E1A 50%, #0a120a 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 16, 8, 0.72) 0%,
    rgba(18, 30, 16, 0.65) 50%,
    rgba(5, 12, 5, 0.78) 100%
  );
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  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.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 32px 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 32px;
  transition-delay: 0.1s;
}
.hero-title {
  margin-bottom: 24px;
  transition-delay: 0.2s;
}
.hero-title-main {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 130px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--creme);
  letter-spacing: -2px;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--dourado-lt);
  letter-spacing: 3px;
  margin-top: 8px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(248,243,234,0.65);
  margin-bottom: 48px;
  line-height: 1.6;
  transition-delay: 0.3s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dourado));
  animation: scrollLine 2s ease infinite;
  margin: 0 auto;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── FAIXA ────────────────────────────────────────────────────────────────── */
.faixa {
  background: var(--dourado);
  overflow: hidden;
  padding: 14px 0;
}
.faixa-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.faixa-inner span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--escuro);
  flex-shrink: 0;
}
.faixa-dot { color: var(--verde) !important; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── INTRO ────────────────────────────────────────────────────────────────── */
.intro {
  padding: 120px 0;
  background: var(--creme);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--verde);
  margin-bottom: 28px;
}
.intro-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--cinza);
  line-height: 1.8;
  margin-bottom: 16px;
}
.ornament-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.ornament-circle::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,60,0.3);
}
.ornament-inner {
  text-align: center;
}
.orn-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--verde);
  line-height: 1;
}
.orn-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 16px;
}
.orn-divider {
  width: 30px;
  height: 1px;
  background: var(--dourado);
  margin: 10px auto 14px;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .ornament-circle { width: 260px; height: 260px; }
  .orn-num { font-size: 40px; }
}

/* ── CESTAS ───────────────────────────────────────────────────────────────── */
.cestas {
  padding: 80px 0 120px;
  background: var(--verde);
}
.cestas .section-title { color: var(--creme); }
.cestas .section-sub { color: rgba(248,243,234,0.5); }
.section-header { margin-bottom: 64px; }

.cestas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── CESTA CARD IMAGE ─────────────────────────────────────────────────────── */
.cesta-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.cesta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cesta-card:hover .cesta-img img {
  transform: scale(1.06);
}
.cesta-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--creme));
  pointer-events: none;
  z-index: 1;
}
.cesta-card.destaque .cesta-img::after {
  background: linear-gradient(to bottom, transparent, #ffffff);
}

.cesta-card {
  background: var(--creme);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cesta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.cesta-card.destaque {
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
  transform: translateY(-8px);
}
.cesta-card.destaque:hover { transform: translateY(-14px); }

.cesta-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--dourado);
  color: var(--escuro);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-bottom-left-radius: 8px;
}

.cesta-header {
  padding: 36px 32px 24px;
  border-bottom: 1px solid var(--creme-dk);
}
.cesta-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 8px;
}
.cesta-linha {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--cinza);
}
.cesta-nome {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--verde);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cesta-preco {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--verde);
}
.cesta-preco span {
  font-size: 22px;
  color: var(--cinza);
}

.cesta-itens {
  list-style: none;
  padding: 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cesta-itens li {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--texto);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.cesta-itens li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dourado);
}

.btn-cesta {
  display: block;
  margin: 0 32px 32px;
  padding: 14px;
  text-align: center;
  background: var(--verde);
  color: var(--creme);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-cesta:hover { background: var(--verde-med); transform: translateY(-2px); }
.cesta-card.destaque .btn-cesta { background: var(--dourado); color: var(--escuro); }
.cesta-card.destaque .btn-cesta:hover { background: var(--dourado-lt); }

@media (max-width: 1024px) {
  .cestas-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cesta-card.destaque { transform: none; }
  .cesta-img { height: 260px; }
}
@media (max-width: 480px) {
  .cesta-img { height: 220px; }
}

/* ── MOMENTOS ─────────────────────────────────────────────────────────────── */
.momentos {
  padding: 120px 0;
  background: var(--creme-dk);
}
.momentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}
.momento {
  background: var(--creme);
  border: 1px solid rgba(184,150,60,0.2);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.momento:hover {
  border-color: var(--dourado);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.momento span { font-size: 32px; display: block; margin-bottom: 12px; }
.momento p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--verde);
  font-weight: 300;
}
.momentos-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.momentos-cta p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--verde);
}

/* ── COMO FUNCIONA ────────────────────────────────────────────────────────── */
.como {
  padding: 120px 0;
  background: var(--creme);
}
.como-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(90,122,86,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--verde);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--cinza);
  line-height: 1.7;
}
.step-line {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.4;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .como-steps { flex-direction: column; gap: 32px; }
  .step-line { width: 1px; height: 40px; }
}

/* ── CONTATO ──────────────────────────────────────────────────────────────── */
.contato {
  padding: 120px 0;
  background: var(--verde);
}
.contato-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contato-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--creme);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contato-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(248,243,234,0.6);
  margin-bottom: 52px;
}
.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.contato-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,60,0.25);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.contato-card:not(.no-link):hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--dourado);
  transform: translateY(-4px);
}
.contato-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.contato-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 6px;
}
.contato-val {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--creme);
}
@media (max-width: 640px) {
  .contato-cards { grid-template-columns: 1fr; }
}

/* ── SMALL PHONE IMPROVEMENTS ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-content { padding: 100px 20px 60px; }

  .intro { padding: 80px 0; }
  .intro-heading { font-size: 36px; }

  .cestas { padding: 60px 0 80px; }
  .section-header { margin-bottom: 40px; }

  .momentos { padding: 80px 0; }
  .momentos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .momento { padding: 20px 12px; }
  .momento span { font-size: 26px; }
  .momento p { font-size: 14px; }

  .como { padding: 80px 0; }

  .contato { padding: 80px 0; }
  .contato-title { font-size: 38px; }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-ghost { width: 100%; justify-content: center; }
  .btn-primary { text-align: center; }
  .btn-large { padding: 18px 36px; }
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--escuro);
  padding: 48px 0;
  border-top: 1px solid rgba(184,150,60,0.15);
}
.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--dourado);
}
.footer-tag {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(248,243,234,0.3);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,243,234,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--dourado); }
.footer-copy {
  font-size: 11px;
  color: rgba(248,243,234,0.2);
}
