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

:root{
  /* ── Paleta Base ── */
  --bg:          #000000;
  --bg-deep:     #050505;
  --surface:     #0d0d0d;
  --surface2:    #141414;
  --surface3:    #1a0006;

  --accent:      #EE213E;
  --accent2:     #ff0c3a;
  --accent-dark: #c41830;
  --accent-glow: rgba(238,33,62,0.18);
  --accent-dim:  rgba(238,33,62,0.08);

  --white:       #ffffff;
  --gray-100:    rgba(255,255,255,0.90);
  --gray-300:    rgba(255,255,255,0.65);
  --gray-500:    rgba(255,255,255,0.40);
  --gray-700:    rgba(255,255,255,0.15);
  --gray-900:    rgba(255,255,255,0.04);

  --border:      rgba(255,255,255,0.07);
  --border-red:  rgba(238,33,62,0.25);

  /* ── Tipografia ── */
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Inter', sans-serif;
  --font-mono:   'DM Mono', monospace;

  /* ── Sombras e Raios ── */
  --shadow-red:  0 8px 32px rgba(238,33,62,0.30);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.80);
  --r-sm: 4px; --r-md: 10px; --r-lg: 20px; --r-pill: 50px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--gray-100);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ UTILS TIPO ══ */
.t-serif { font-family: var(--font-serif); }
.t-sans { font-family: var(--font-sans); }
.t-mono { font-family: var(--font-mono); }
.t-italic { font-style: italic; }
.t-accent { color: var(--accent); }

/* ══ NAVEGAÇÃO ══ */
nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 999;
  background: rgba(5,5,5,0.85); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 12px 8px 24px;
  display: flex; gap: 4px; align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03);
  animation: slideDown .8s cubic-bezier(.16,1,.3,1) both;
}
@keyframes slideDown{ from{opacity:0; transform:translateX(-50%) translateY(-20px)} to{opacity:1; transform:translateX(-50%) translateY(0)} }

.nav-brand {
  font-family: var(--font-serif); font-size: 18px; color: var(--white);
  text-decoration: none; font-weight: 500; font-style: italic; margin-right: 16px;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--gray-300); text-decoration: none;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r-pill); transition: all .3s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: var(--gray-700); }
.nav-cta {
  background: var(--accent); color: #fff; text-decoration: none;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px; border-radius: var(--r-pill); transition: all .3s ease;
  margin-left: 12px; white-space: nowrap;
}
.nav-cta:hover { background: var(--accent2); box-shadow: var(--shadow-red); transform: translateY(-1px); }

/* Botão Hamburguer */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-left: 8px; border-radius: var(--r-pill);
  transition: background .3s;
}
.nav-hamburger:hover { background: var(--gray-700); }
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  transform-origin: center;
}
/* Animação X quando aberto */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══ LAYOUT GLOBAL ══ */
.container { max-width: 1100px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
section { padding: 48px 0; position: relative; }

.section-header { margin-bottom: 64px; text-align: center; }
.section-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
  margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-label::before, .section-label::after { content:''; width: 30px; height: 1px; background: var(--border-red); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(32px, 5vw, 48px);
  font-weight: 300; letter-spacing: -0.01em; color: var(--white); line-height: 1.2;
}
.section-desc { font-size: 16px; color: var(--gray-300); max-width: 540px; margin: 16px auto 0; line-height: 1.7; }

/* ══ BOTOES ══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--r-sm); border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; text-decoration: none;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-story { background: var(--surface2); color: var(--white); border: 1px solid var(--border); position: relative; overflow: hidden; }
.btn-story::before { content:''; position: absolute; top:0; left:0; right:0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .5s; }
.btn-story:hover { transform: translateY(-4px); border-color: var(--border-red); box-shadow: var(--shadow-dark); }
.btn-story:hover::before { opacity: 1; }

/* ══ 1. HERO ══ */
#hero {
  min-height: 100vh; padding: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  position: relative; 
  background-image: url('../fundo_landing_page.png');
  background-size: cover; background-position: center 20%; background-attachment: fixed;
}
#hero::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(5,5,5,0.3) 40%, rgba(0,0,0,1) 100%),
              radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 10; padding: 0 24px; max-width: 800px; margin-top: 60px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  display: block; animation: fadeUp .8s ease both .2s;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(44px, 8vw, 92px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 24px; color: var(--white); text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  animation: fadeUp .8s ease both .4s;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--gray-100); max-width: 580px; 
  margin: 0 auto 40px; line-height: 1.6; text-shadow: 0 4px 12px rgba(0,0,0,0.8);
  animation: fadeUp .8s ease both .6s;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; animation: fadeUp .8s ease both .8s; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 0; width: 100%;
  font-family: var(--font-mono); font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 10;
  animation: fadeUp .8s ease both 1s; opacity: 0.6; transition: opacity .3s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll::after {
  content:''; display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollGlow 2s infinite;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes scrollGlow{0%,100%{transform:scaleY(1);transform-origin:top;opacity:1}50%{transform:scaleY(0.5);opacity:0.3}}

/* ══ 2. SOBRE A TARÓLOGA ══ */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
}
.about-img::after {
  content:''; position: absolute; inset:0;
  box-shadow: inset 0 0 0 1px var(--border); border-radius: inherit; pointer-events: none;
}
.about-img img { width: 100%; height: auto; display: block; filter: contrast(1.1) brightness(0.9) grayscale(20%); transition: transform .8s; }
.about-img:hover img { transform: scale(1.03); filter: contrast(1.1) brightness(1) grayscale(0%); }
.about-text h2 { margin-bottom: 24px; font-family:var(--font-serif); font-size: 44px; font-weight: 300; }
.about-text p { color: var(--gray-300); margin-bottom: 24px; font-size: 17px; line-height: 1.8; }
.about-text p strong { color: var(--white); font-weight: 400; }
.signature { font-family: var(--font-serif); font-size: 28px; font-style: italic; color: var(--accent); margin-top: 32px; }

/* ══ 3. MEUS GUIAS ══ */
#guias .guias-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.guia-card {
  background: var(--surface3); border: 1px solid var(--border-red);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s ease;
  position: relative; display: flex; flex-direction: column;
  min-height: 580px;
}
.guia-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(238,33,62,0.20); }
.guia-img-area {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; overflow: hidden;
}
.guia-img-area::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,0,2,0.6) 0%, rgba(10,0,2,0) 50%);
  pointer-events: none; transition: opacity .5s cubic-bezier(.16,1,.3,1);
}
.guia-img-area img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: brightness(0.85) contrast(1.1) grayscale(10%);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s;
}
.guia-card:hover .guia-img-area img { transform: scale(1.05); filter: brightness(1.05) contrast(1.0) grayscale(0%); }
.guia-card:hover .guia-img-area::after { opacity: 0.8; }
.guia-body { 
  position: relative; z-index: 2; padding: 28px 28px; 
  background: rgba(10, 0, 2, 0.50); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 300px; flex-grow: 1; display: flex; flex-direction: column;
}
.guia-role { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.guia-title { font-family: var(--font-serif); font-size: 26px; color: var(--white); margin-bottom: 12px; font-style: italic; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.guia-desc { color: var(--gray-300); line-height: 1.6; font-size: 14px; text-shadow: 0 1px 3px rgba(0,0,0,0.8); margin-bottom: 0; }

/* ══ 4. SERVIÇOS ══ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 40px 32px;
  display: flex; flex-direction: column; transition: all .4s ease;
  position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--accent); background: var(--surface3); transform: translateY(-5px); }
.service-badge {
  display: inline-block; padding: 4px 12px; background: var(--accent-dim); color: var(--accent);
  border: 1px solid var(--border-red); border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px; align-self: flex-start;
}
.service-title { font-family: var(--font-serif); font-size: 26px; color: var(--white); margin-bottom: 12px; }
.service-desc { color: var(--gray-300); font-size: 14px; line-height: 1.6; margin-bottom: 32px; flex-grow: 1; }
.service-cta {
  color: var(--accent); font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.service-card:hover .service-cta { color: var(--accent2); }

/* ══ MAGIAS E TRABALHOS (EXTRA) ══ */
.magias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.magia-card {
  border-radius: var(--r-md); overflow: hidden; position: relative;
  height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-dark);
}
.magia-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(26,0,6,0.5) 50%, rgba(0,0,0,0) 100%);
  z-index: 1; transition: opacity .4s;
}
.magia-card:hover::after { background: linear-gradient(0deg, rgba(238,33,62,0.85) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%); }
.magia-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) contrast(1.2); transition: transform 1s cubic-bezier(.16,1,.3,1), filter .5s;
}
.magia-card:hover .magia-img { transform: scale(1.08); filter: grayscale(0%) contrast(1.1); }
.magia-content { position: relative; z-index: 2; padding: 32px; transform: translateY(16px); transition: transform .4s ease; }
.magia-card:hover .magia-content { transform: translateY(0); }
.magia-title { font-family: var(--font-serif); font-size: 28px; color: var(--white); margin-bottom: 8px; font-style: italic; }
.magia-desc { color: var(--gray-300); font-size: 14px; opacity: 0; transition: opacity .4s ease .1s; height: 0; overflow: hidden; }
.magia-card:hover .magia-desc { opacity: 1; height: auto; margin-bottom: 16px; }

/* ══ 5. COMO FUNCIONA ══ */
.timeline { display: flex; gap: 24px; position: relative; }
.step {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  padding: 40px 32px; border-radius: var(--r-md); position: relative;
}
.step-number {
  font-family: var(--font-serif); font-size: 48px; font-style: italic;
  color: var(--gray-900); position: absolute; top: 16px; right: 24px; line-height: 1;
  transition: color .4s;
}
.step:hover .step-number { color: var(--accent-dim); }
.step-title { font-size: 18px; color: var(--white); margin-bottom: 12px; font-weight: 500; position: relative; z-index: 2; }
.step-desc { color: var(--gray-300); font-size: 14px; line-height: 1.6; position: relative; z-index: 2; }

/* ══ 6. DIFERENCIAIS ══ */
#diferenciais { background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.dif-item { padding: 32px 16px; }
.dif-icon { font-size: 32px; color: var(--accent); margin-bottom: 24px; display: inline-block; }
.dif-title { font-family: var(--font-serif); font-size: 24px; color: var(--white); margin-bottom: 12px; }
.dif-desc { color: var(--gray-500); font-size: 14px; }

/* ══ 7. DEPOIMENTOS (CARROSSEL) ══ */
.carousel-wrapper {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 24px 0; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 calc(33.333% - 16px); scroll-snap-align: center;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-dark);
  transition: transform .3s, border-color .3s;
}
.carousel-slide:hover { border-color: var(--border-red); transform: translateY(-4px); }
.feedback-img {
  width: 100%; height: 500px; object-fit: cover; display: block; object-position: top;
  cursor: pointer; filter: grayscale(10%) contrast(1.1); transition: filter .3s, transform .3s;
}
.feedback-img:hover { filter: grayscale(0%) contrast(1.2); transform: scale(1.02); }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--surface2); border: 1px solid var(--border-red); border-radius: 50%;
  width: 48px; height: 48px; color: var(--accent); font-size: 18px;
  cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
  transition: all .3s; box-shadow: var(--shadow-red);
}
.carousel-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-50%) scale(1.1); }
.prev-btn { left: -24px; }
.next-btn { right: -24px; }

/* ══ LIGHTBOX (ZOOM) ══ */
.lightbox {
  display: none; position: fixed; z-index: 9999; padding-top: 60px;
  left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px); opacity: 0; transition: opacity .4s ease;
}
.lightbox.show { display: flex; justify-content: center; align-items: center; opacity: 1; padding: 40px; }
.lightbox-content {
  margin: auto; display: block; max-width: 90vw; max-height: 90vh;
  border-radius: var(--r-md); border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(0,0,0,1); transform: scale(0.9); transition: transform .4s cubic-bezier(.16,1,.3,1);
  object-fit: contain;
}
.lightbox.show .lightbox-content { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 40px; color: var(--gray-300);
  font-size: 40px; font-weight: 300; transition: .3s; cursor: pointer;
}
.lightbox-close:hover { color: var(--white); text-decoration: none; cursor: pointer; }

/* ══ 8. FAQ ══ */
.faq-wrapper { max-width: 760px; margin: 0 auto; }
details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); margin-bottom: 16px; overflow: hidden;
  transition: background .3s;
}
details[open] { background: var(--surface2); border-color: rgba(238,33,62,0.2); }
details.faq-story { position: relative; overflow: hidden; }
details.faq-story::before { content:''; position: absolute; top:0; left:0; right:0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .5s; z-index: 10; pointer-events: none;}
details.faq-story:hover { border-color: var(--border-red); box-shadow: var(--shadow-dark); }
details.faq-story:hover::before { opacity: 1; }
summary {
  padding: 24px 32px; font-weight: 500; font-size: 16px; color: var(--white);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--font-mono); color: var(--accent); font-size: 20px; transition: transform .3s; }
details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-content { padding: 0 32px 32px; color: var(--gray-300); font-size: 15px; line-height: 1.7; }

/* ══ 9. CTA FINAL ══ */
#cta-final {
  text-align: center; padding: 140px 24px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(238,33,62,0.08) 0%, transparent 70%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-final-title { font-family: var(--font-serif); font-size: clamp(36px, 6vw, 64px); color: var(--white); font-weight: 300; margin-bottom: 24px; font-style: italic; }
.cta-final-sub { font-size: 18px; color: var(--gray-300); margin-bottom: 48px; max-width: 600px; margin-inline: auto; }

/* ══ 10. FOOTER ══ */
footer { padding: 64px 32px 40px; text-align: center; background: var(--bg); }
.footer-brand { font-family: var(--font-serif); font-size: 28px; color: var(--white); font-style: italic; margin-bottom: 24px; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border: 1px solid var(--border);
  border-radius: var(--r-pill); color: var(--gray-300); background: var(--surface2);
  font-family: var(--font-sans); font-size: 14px; text-decoration: none;
  transition: all .4s cubic-bezier(.16,1,.3,1); box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--border-red); color: var(--white); background: var(--surface3); transform: translateY(-3px); box-shadow: var(--shadow-dark); }
.footer-disclaimer {
  font-size: 12px; color: var(--gray-700); max-width: 600px; margin: 0 auto; line-height: 1.6;
  border-top: 1px solid var(--border); padding-top: 32px;
}

/* ══ RESPONSIVO ══ */
@media (max-width: 992px) {
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  #guias .guias-grid { grid-template-columns: 1fr; }
  .services-grid, .magias-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc(50% - 12px); }
  .feedback-img { height: 400px; }
}
@media (max-width: 768px) {
  /* Nav mobile: apenas brand + cta + hamburguer */
  nav {
    width: calc(100% - 32px);
    max-width: 480px;
    padding: 10px 12px 10px 20px;
    justify-content: space-between;
    gap: 0;
    /* Desabilita animação de border-radius quando menu abre */
    transition: border-radius .3s;
  }
  nav.menu-open { border-radius: var(--r-md); }

  /* Links ficam escondidos e aparecem como dropdown abaixo da nav */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(5,5,5,0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 8px;
    flex-direction: column;
    gap: 4px;
    animation: fadeDropdown .25s ease both;
  }
  @keyframes fadeDropdown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 12px 20px;
    border-radius: var(--r-sm);
    font-size: 12px;
    width: 100%;
    text-align: left;
  }

  .nav-brand { margin: 0; white-space: nowrap; }
  .nav-cta { margin: 0; padding: 8px 14px; font-size: 10px; }
  .nav-hamburger { display: flex; }

  section { padding: 30px 0; }
  .services-grid, .magias-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  
  /* Corrige o bug da imagem de fundo sumindo em celulares (principalmente iOS) */
  #hero { background-attachment: scroll; }
  .btn { width: 100%; }

  .magia-card { height: 380px; }
  .carousel-slide { flex: 0 0 calc(85% - 12px); }
  .feedback-img { height: 360px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 14px; }
  .prev-btn { left: -8px; }
  .next-btn { right: -8px; }
}

