/* ── BRINGBOLD NINETIES FONT ── */
@font-face {
  font-family: 'BringboldNineties';
  src: url('fonts/BringboldNineties.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── VARIÁVEIS ── */
:root {
  --green: #2B4C13;
  --green-light: #3d6b1c;
  --pink: #F2619C;
  --pink-soft: rgba(242,97,156,0.08);
  --yellow: #FAD062;
  --orange: #FF6237;
  --lavender: #BDB5E8;
  --cream: #F5F0E8;
  --dark: #1a1a1a;
  --gray: #555;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--cream); overflow-x: hidden; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(245,240,232,0.96); backdrop-filter: blur(8px); padding: 0.85rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(43,76,19,0.1); }
.nav-logo-img { height: 40px; object-fit: contain; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--gray); text-decoration: none; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--green); transition: width 0.25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--pink) !important; color: white !important; padding: 0.5rem 1.25rem; border-radius: 100px; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ── BOTÕES ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-primary { background: linear-gradient(90deg, var(--green) 40%, var(--green-light) 50%, var(--green) 60%); background-size: 200% auto; color: var(--yellow); }
.btn-primary:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(43,76,19,0.25); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--yellow); }
.btn-pink { background: var(--pink); color: white; }
.btn-pink:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 7rem 4rem 4rem; gap: 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(242,97,156,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

/* Hero logo — desktop only */
.hero-logo-desktop { height: 80px; object-fit: contain; margin-bottom: 1.25rem; display: block; }

.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--yellow); color: var(--dark); font-family: 'BringboldNineties', 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; color: var(--green); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-sub { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.badge { background: white; border: 1.5px solid rgba(43,76,19,0.18); border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.78rem; font-weight: 500; color: var(--green); }
.badge:hover { animation: subtlePulse 1.2s ease infinite; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image container */
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: 400px; height: 500px; }
.hero-photo-bg { position: absolute; inset: 0; background: var(--pink); border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; opacity: 0.12; }
.hero-photo { position: absolute; inset: 20px; background: var(--green); border-radius: 38% 62% 58% 42% / 48% 42% 58% 52%; overflow: hidden; display: flex; align-items: center; justify-content: center; animation: morphBlob 12s ease-in-out infinite; }

/* Dual-photo swap */
.foto-cor,
.foto-pb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 10%; transition: opacity 0.8s ease; }
.foto-cor { opacity: 1; z-index: 2; }
.foto-pb { opacity: 0; z-index: 1; }

/* Desktop hover → show B&W */
.hero-photo-wrap:hover .foto-cor { opacity: 0; }
.hero-photo-wrap:hover .foto-pb { opacity: 1; }

/* Float tags */
.float-tag { position: absolute; border-radius: 14px; padding: 0.7rem 1rem; font-size: 0.78rem; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.1); white-space: nowrap; }
.float-1 { top: 8%; right: -15px; background: var(--yellow); color: var(--dark); }
.float-2 { bottom: 12%; left: -25px; background: white; color: var(--dark); }

/* ── HERO MOBILE REDESIGN ── */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    gap: 0;
    align-items: stretch;
  }

  /* Photo strip — full width at top, diagonal clip */
  .hero-image {
    order: -1;
    width: 100%;
    height: 58vh;
    max-height: 420px;
    position: relative;
    overflow: hidden;
    background: var(--green);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
    flex-shrink: 0;
    display: block;
  }

  .hero-photo-wrap {
    width: 100%;
    height: 100%;
    border-radius: 0;
    animation: none;
    position: absolute;
    inset: 0;
  }

  .hero-photo-bg { display: none; }

  .hero-photo {
    position: absolute;
    inset: 0;
    border-radius: 0;
    animation: none;
  }

  /* Mobile: auto-cycle between color and B&W */
  .foto-cor { animation: photoSwapColor 9s ease-in-out infinite; }
  .foto-pb  { animation: photoSwapBW 9s ease-in-out infinite; }

  /* Content area */
  .hero-content {
    padding: 5vw 6vw 8vw;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--cream);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hide desktop logo in hero on mobile — it lives in the nav */
  .hero-logo-desktop { display: none; }

  .hero-tag { font-size: 0.68rem; padding: 0.4rem 0.9rem; margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); line-height: 1.15; margin-bottom: 1rem; }
  .hero-sub { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 340px; }
  .hero-badges { justify-content: center; gap: 0.4rem; margin-bottom: 1.5rem; }
  .badge { font-size: 0.72rem; padding: 0.28rem 0.75rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .float-tag { display: none; }
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-tag { display: inline-block; font-family: 'BringboldNineties', 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); line-height: 1.2; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--pink); }
.section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.75; max-width: 560px; }

/* ── MANIFESTO ── */
.manifesto { background: var(--green); padding: 5rem 2rem; }
.manifesto-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.manifesto blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-style: italic; line-height: 1.65; color: white; margin-bottom: 1.5rem; }
.manifesto blockquote em { color: var(--yellow); font-style: normal; }
.manifesto p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 540px; margin: 0 auto; }

/* ── PARA QUEM ── */
.para-quem { background: white; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.card { border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.card::after { content: attr(data-emoji); position: absolute; right: -0.5rem; bottom: -1rem; font-size: 5rem; opacity: 0.1; line-height: 1; }
.card:hover { transform: translateY(-6px) rotate(0.3deg); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-1 { background: var(--cream); border: 2px solid rgba(43,76,19,0.12); }
.card-2 { background: var(--pink); }
.card-3 { background: var(--green); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.75rem; }
.card-1 h3 { color: var(--green); }
.card-2 h3, .card-3 h3 { color: white; }
.card p { font-size: 0.875rem; line-height: 1.65; }
.card-1 p { color: var(--gray); }
.card-2 p, .card-3 p { color: rgba(255,255,255,0.88); }

/* ── MÉTODO ── */
.metodo { background: var(--cream); }
.metodo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.metodo-items { display: flex; flex-direction: column; gap: 1.5rem; }
.metodo-item { display: flex; gap: 1rem; align-items: flex-start; }
.metodo-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.metodo-item:nth-child(1) .metodo-icon { background: var(--yellow); }
.metodo-item:nth-child(2) .metodo-icon { background: rgba(242,97,156,0.15); }
.metodo-item:nth-child(3) .metodo-icon { background: rgba(43,76,19,0.1); }
.metodo-item:nth-child(4) .metodo-icon { background: rgba(189,181,232,0.4); }
.metodo-text h4 { font-weight: 700; font-size: 0.92rem; color: var(--green); margin-bottom: 0.3rem; }
.metodo-text p { font-size: 0.855rem; color: var(--gray); line-height: 1.65; }
.metodo-visual { background: var(--green); border-radius: 22px; padding: 2.5rem; }
.metodo-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--yellow); margin-bottom: 1.25rem; }
.metodo-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.metodo-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.855rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.metodo-list li::before { content: '✦'; color: var(--yellow); font-size: 0.65rem; margin-top: 0.3rem; flex-shrink: 0; }
@media (max-width: 768px) { .metodo-grid { grid-template-columns: 1fr; } }

/* ── PLANTS BREAK ── */
.plants-break {
  height: 320px;
  background: url('img/plantas.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.plants-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,76,19,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.plants-break-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-style: italic;
  color: white;
  text-align: center;
  max-width: 620px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .plants-break { height: 220px; }
  .plants-break-text { font-size: 1.1rem; }
}

/* ── INVESTIMENTO ── */
.investimento { background: white; }
.planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.plano { border-radius: 20px; padding: 2rem; border: 2px solid rgba(43,76,19,0.12); background: white; transition: transform 0.2s, box-shadow 0.2s; }
.plano:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.07); }
.plano.destaque { background: var(--green); border-color: var(--green); }
.plano-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem; }
.plano .plano-tag { background: var(--cream); color: var(--green); }
.plano.destaque .plano-tag { background: var(--yellow); color: var(--dark); }
.plano h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.35rem; }
.plano.destaque h3 { color: white; }
.plano-desc { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.25rem; }
.plano.destaque .plano-desc { color: rgba(255,255,255,0.65); }
.preco { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 0.25rem; }
.plano.destaque .preco { color: var(--yellow); }
.preco-detalhe { font-size: 0.76rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.5; }
.plano.destaque .preco-detalhe { color: rgba(255,255,255,0.6); }
.plano-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.plano-features li { font-size: 0.84rem; display: flex; align-items: center; gap: 0.5rem; color: var(--gray); }
.plano.destaque .plano-features li { color: rgba(255,255,255,0.85); }
.plano-features li::before { content: '✓'; color: var(--pink); font-weight: 700; flex-shrink: 0; }
.plano.destaque .plano-features li::before { color: var(--yellow); }
.plano .btn { width: 100%; justify-content: center; }

/* Conversa box — substitui aula avulsa */
.conversa-box {
  margin-top: 2rem;
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border: 2px solid rgba(43,76,19,0.1);
}
.conversa-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.4rem;
  font-style: italic;
}
.conversa-sub {
  font-size: 0.855rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 420px;
}
@media (max-width: 640px) {
  .conversa-box { flex-direction: column; text-align: center; }
  .conversa-sub { max-width: 100%; }
  .conversa-box .btn { width: 100%; justify-content: center; }
}

.pagamento-info { margin-top: 1.25rem; text-align: center; font-size: 0.8rem; color: var(--gray); }

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--cream); }
.dep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.dep-card { background: white; border-radius: 16px; padding: 1.75rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-left: 4px solid var(--pink); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.dep-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.dep-card blockquote { font-size: 0.875rem; line-height: 1.75; color: var(--dark); margin-bottom: 1rem; font-style: italic; }
.dep-card blockquote strong { font-style: normal; color: var(--green); font-weight: 700; background: rgba(43,76,19,0.06); padding: 0 2px; border-radius: 3px; }
.dep-author { font-weight: 700; font-size: 0.8rem; color: var(--green); }

/* ── FAQ ── */
.faq { background: white; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 700px; }
.faq-item { border: 1.5px solid rgba(43,76,19,0.12); border-radius: 14px; overflow: hidden; }
.faq-question { padding: 1.1rem 1.5rem; font-weight: 600; font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--green); user-select: none; transition: background 0.15s; }
.faq-question:hover, .faq-item.open .faq-question { background: var(--cream); }
.faq-question .arrow { transition: transform 0.25s; font-size: 0.68rem; flex-shrink: 0; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 1.5rem; font-size: 0.855rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ── BEREADY ── */
.beready { background: var(--lavender); padding: 4rem 2rem; }
.beready-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.beready h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--green); margin-bottom: 1rem; }
.beready p { font-size: 0.92rem; color: var(--dark); line-height: 1.75; margin-bottom: 1.75rem; opacity: 0.85; }
.beready-inner--side { display: flex; align-items: center; gap: 3rem; text-align: left; max-width: 800px; }
.beready-inner--side .beready-text h2 { text-align: left; }
.beready-inner--side .beready-text p { text-align: left; }
.beready-inner--side .beready-text > div { justify-content: flex-start; }
@media (max-width: 640px) {
  .beready-inner--side { flex-direction: column; text-align: center; gap: 1.5rem; }
  .beready-inner--side .beready-text h2, .beready-inner--side .beready-text p { text-align: center; }
  .beready-inner--side .beready-text > div { justify-content: center; }
  .beready-inner--side img { height: 130px !important; }
}

/* ── CONTATO ── */
.contato { background: var(--green); }
.contato .section-title { color: var(--yellow); }
.contato .section-sub { color: rgba(255,255,255,0.7); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.form-group { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid rgba(255,255,255,0.18); border-radius: 10px; background: rgba(255,255,255,0.08); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); }
.field select option { background: var(--green); }
.field textarea { resize: vertical; min-height: 120px; }
.contato-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--yellow); font-style: italic; margin-bottom: 1.25rem; }
.contato-links { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.contato-link { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.contato-link:hover { color: var(--yellow); }
.contato-link .icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.success-msg { display: none; background: var(--yellow); color: var(--dark); border-radius: 10px; padding: 0.9rem 1.25rem; font-weight: 600; font-size: 0.88rem; margin-top: 0.5rem; }
@media (max-width: 768px) { .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; } .form-row { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
footer { background: #111; color: rgba(255,255,255,0.45); text-align: center; padding: 1.5rem; font-size: 0.76rem; }
footer a { color: var(--pink); text-decoration: none; }

/* ── MOBILE SLIDERS (PLANOS) ── */
@media (max-width: 768px) {
  .planos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .planos-grid::-webkit-scrollbar { display: none; }
  .plano { min-width: 80vw; scroll-snap-align: start; flex-shrink: 0; }
  .slider-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
  .slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--green); background: white; color: var(--green); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
  .slider-btn:hover { background: var(--green); color: var(--yellow); }
}
@media (min-width: 769px) { .slider-controls { display: none; } }

/* ── DEPOIMENTOS MOBILE ── */
@media (max-width: 768px) {
  .dep-grid { display: flex; flex-direction: column; gap: 1rem; }
  .dep-card {
    min-width: unset;
    width: 100%;
    flex-shrink: unset;
    padding: 1.25rem;
    border-radius: 16px;
    border-left: none;
    border-top: 4px solid var(--pink);
    display: grid;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }
  .dep-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--pink); line-height: 1; margin-bottom: -0.5rem; }
  .dep-card blockquote { font-size: 0.83rem; line-height: 1.7; }
  .dep-author { font-size: 0.78rem; display: block; padding-top: 0.5rem; border-top: 1px solid rgba(43,76,19,0.1); }
}

/* ── MÉTODO MOBILE ── */
@media (max-width: 768px) {
  .metodo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contato-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .manifesto { padding: 3.5rem 1.25rem; }
  .beready { padding: 3rem 1.25rem; }
}

/* ── COLLAPSIBLE MÉTODO MOBILE ── */
.metodo-toggle {
  display: none;
  width: 100%;
  background: var(--green);
  color: var(--yellow);
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  transition: background 0.2s;
}
.metodo-toggle-arrow { transition: transform 0.3s ease; font-size: 0.75rem; }
.metodo-toggle.open .metodo-toggle-arrow { transform: rotate(180deg); }
.metodo-collapsible { overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s; }

@media (max-width: 768px) {
  .metodo-toggle { display: flex; }
  .metodo-collapsible { max-height: 0; opacity: 0; }
  .metodo-collapsible.open { max-height: 700px; opacity: 1; }
  .metodo-visual { margin-top: 0.75rem; }
}
@media (min-width: 769px) {
  .metodo-collapsible { max-height: none !important; opacity: 1 !important; }
}

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green); text-decoration: none; font-style: italic; }
.mobile-menu .close-btn { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: var(--green); }
@media (max-width: 640px) { .hamburger { display: flex; } }

/* ── ANIMATIONS ── */

/* Hero content entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-content > *:nth-child(6) { animation-delay: 0.55s; }

/* Desktop: photo floats gently */
@media (min-width: 769px) {
  .hero-photo-wrap { animation: floatPhoto 7s ease-in-out infinite; }
}
@keyframes floatPhoto {
  0%   { transform: translateY(0px) rotate(0deg); }
  33%  { transform: translateY(-8px) rotate(0.4deg); }
  66%  { transform: translateY(-4px) rotate(-0.3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Float tags pop in */
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.float-tag { animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
.float-1   { animation-delay: 0.8s; }
.float-2   { animation-delay: 1s; }

/* Blob morphing */
@keyframes morphBlob {
  0%   { border-radius: 38% 62% 58% 42% / 48% 42% 58% 52%; }
  25%  { border-radius: 42% 58% 52% 48% / 55% 38% 62% 45%; }
  50%  { border-radius: 50% 50% 45% 55% / 42% 55% 45% 58%; }
  75%  { border-radius: 44% 56% 60% 40% / 50% 46% 54% 50%; }
  100% { border-radius: 38% 62% 58% 42% / 48% 42% 58% 52%; }
}

/* Mobile photo swap: color → B&W → color cycle */
@keyframes photoSwapColor {
  0%, 38% { opacity: 1; }
  48%, 90% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes photoSwapBW {
  0%, 38% { opacity: 0; }
  48%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.56s; }

/* Badge hover pulse */
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,76,19,0); }
  50%       { box-shadow: 0 0 0 6px rgba(43,76,19,0.06); }
}
