/* ============================================================
   ACELERADORA DE MATRÍCULAS - Landing Page
   Paleta: Verde Solidez + Dourado Sofisticação + Off-white Credibilidade
   ============================================================ */

:root {
  --c-green: #0F4035;
  --c-green-dark: #082721;
  --c-gold: #B8893D;
  --c-gold-light: #D4A85A;
  --c-off-white: #E8E4D6;
  --c-off-white-dim: rgba(232, 228, 214, 0.75);
  --c-off-white-faint: rgba(232, 228, 214, 0.5);
  --c-black: #0A0A0A;
  --c-gold-line: rgba(184, 137, 61, 0.3);
  --c-gold-line-strong: rgba(184, 137, 61, 0.6);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad-y: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-green);
  color: var(--c-off-white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TIPOGRAFIA E DECORAÇÕES
   ============================================================ */

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  color: var(--c-gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-off-white);
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-off-white-dim);
  line-height: 1.7;
  max-width: 640px;
  text-wrap: pretty;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto;
}

/* ============================================================
   BOTÃO CTA
   ============================================================ */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-gold);
  color: var(--c-green);
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta:hover::before { transform: translateX(0); }
.cta:hover { animation: none; box-shadow: 0 0 0 6px rgba(184, 137, 61, 0.25); }
.cta span, .cta svg { position: relative; z-index: 1; }
.cta svg { transition: transform 0.3s ease; }
.cta:hover svg { transform: translateX(4px); }

@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0px rgba(184, 137, 61, 0.55); }
  50%  { box-shadow: 0 0 0 10px rgba(184, 137, 61, 0); }
  100% { box-shadow: 0 0 0 0px rgba(184, 137, 61, 0); }
}

/* ============================================================
   1. HERO
   ============================================================ */

.hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--c-green);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 137, 61, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { text-align: center; position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 1.5rem;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}
.hero-subhead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--c-off-white-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}
.hero-subhead .accent { color: var(--c-gold); font-weight: 600; }

.hero-cta-wrap { margin-bottom: 4rem; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-gold-line);
}
.metric { text-align: center; }
.metric-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--c-gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--c-off-white-faint);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   2. BARRA DESLIZANTE
   ============================================================ */

.marquee {
  background: var(--c-green-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--c-gold-line);
  border-bottom: 1px solid var(--c-gold-line);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 35s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--c-off-white);
  font-weight: 400;
  font-style: italic;
}
.marquee-item::after {
  content: '✦';
  color: var(--c-gold);
  margin-left: 3rem;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   3. FAIXA DE LOGOS
   ============================================================ */

.logos {
  padding: var(--section-pad-y) 0;
  background: var(--c-green);
  overflow: hidden;
}
.logos-header { text-align: center; margin-bottom: 3rem; }
.logos-header .eyebrow { margin-bottom: 1rem; }
.logos-header .section-title { margin: 0 auto; max-width: 18ch; }

.logos-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 1.5rem 0;
}
.logos-track {
  display: flex;
  gap: 2.5rem;
  animation: logos-slide 45s linear infinite;
  width: max-content;
  align-items: center;
}
.logo-item {
  width: 120px;
  height: 120px;
  background: var(--c-off-white);
  border: 1px solid var(--c-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.logo-item:hover {
  transform: scale(1.05);
  border-color: var(--c-gold);
}
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes logos-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos-footnote {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-off-white-faint);
  padding: 0 1rem;
}

/* ============================================================
   4. AVISO + FORMULÁRIO
   ============================================================ */

.form-section {
  padding: var(--section-pad-y) 0;
  background: var(--c-green-dark);
  border-top: 1px solid var(--c-gold-line);
  border-bottom: 1px solid var(--c-gold-line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.form-info .eyebrow {
  background: var(--c-gold);
  color: var(--c-green-dark);
  border-color: var(--c-gold);
  margin-bottom: 1.5rem;
}
.form-info h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.form-info h2 em { color: var(--c-gold); font-style: italic; font-weight: 400; }

.form-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.form-step:last-child { margin-bottom: 0; }
.form-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}
.form-step-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--c-off-white);
}
.form-step-content p {
  font-size: 0.95rem;
  color: var(--c-off-white-dim);
  line-height: 1.65;
}

/* Formulário */
.lead-form {
  background: var(--c-green);
  border: 1px solid var(--c-gold-line);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-off-white-dim);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-green-dark);
  border: 1px solid var(--c-gold-line);
  border-radius: 4px;
  color: var(--c-off-white);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  font-family: var(--font-body);
}
.field input::placeholder { color: rgba(232, 228, 214, 0.35); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-gold);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23B8893D' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 36px;
  cursor: pointer;
}
.field select option {
  background: var(--c-green-dark);
  color: var(--c-off-white);
}

.field-conditional {
  display: none;
  animation: fadeSlide 0.4s ease;
}
.field-conditional.visible { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 16px 24px;
  background: var(--c-gold);
  color: var(--c-green-dark);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.form-submit:hover { background: var(--c-gold-light); }

.form-success {
  display: none;
  background: rgba(184, 137, 61, 0.1);
  border: 1px solid var(--c-gold);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  color: var(--c-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   5. DEPOIMENTOS
   ============================================================ */

.testimonials {
  padding: var(--section-pad-y) 0;
  background: var(--c-green);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header .eyebrow { margin-bottom: 1.25rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
}

.testimonial-card { display: flex; flex-direction: column; gap: 0.875rem; }
.testimonial-tag {
  align-self: center;
  padding: 5px 12px;
  background: var(--c-gold);
  color: var(--c-green-dark);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 700;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-black);
  border: 1px solid var(--c-gold-line);
  cursor: pointer;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrap .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.3);
  transition: opacity 0.3s ease, background 0.3s ease;
}
.video-wrap .play-overlay:hover { background: rgba(10, 10, 10, 0.15); }
.video-wrap.playing .play-overlay { opacity: 0; pointer-events: none; }
.play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.video-wrap:hover .play-button { transform: scale(1.1); }
.play-button svg { width: 22px; height: 22px; margin-left: 3px; color: var(--c-green-dark); }

.testimonials-cta { text-align: center; }

/* ============================================================
   6. QUEM SOMOS
   ============================================================ */

.about {
  padding: var(--section-pad-y) 0;
  background: var(--c-green-dark);
  border-top: 1px solid var(--c-gold-line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-text .eyebrow { margin-bottom: 1.5rem; }
.about-text .section-title { margin-bottom: 1.75rem; }
.about-text p {
  color: var(--c-off-white-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-text .accent { color: var(--c-gold); font-weight: 500; }

.about-image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-dark) 100%);
  border: 1px solid var(--c-gold-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--c-gold-line);
  border-radius: 4px;
}
.about-image-placeholder-content {
  text-align: center;
  color: var(--c-gold);
  padding: 2rem;
  position: relative;
}
.about-image-placeholder-content svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}
.about-image-placeholder-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* ============================================================
   7. O QUE FAZEMOS
   ============================================================ */

.services {
  padding: var(--section-pad-y) 0;
  background: var(--c-green);
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-header .eyebrow { margin-bottom: 1.25rem; }
.services-header .section-title { margin: 0 auto 1.5rem; }
.services-header .section-subtitle { margin: 0 auto; }

.services-group { margin-bottom: 4rem; }
.services-group:last-of-type { margin-bottom: 0; }

.services-group-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-gold-line);
}
.services-group-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--c-gold);
  line-height: 1;
  font-weight: 400;
}
.services-group-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
}
.services-group-title em { color: var(--c-gold); font-style: italic; font-weight: 400; }

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--c-green-dark);
  border: 1px solid var(--c-gold-line);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}
.service-card.featured {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, var(--c-green-dark) 0%, rgba(184, 137, 61, 0.08) 100%);
}
.service-card.featured::before {
  content: 'Diferencial';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: var(--c-gold);
  color: var(--c-green-dark);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--c-gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--c-off-white-dim);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================
   8. PLANOS
   ============================================================ */

.plans {
  padding: var(--section-pad-y) 0;
  background: var(--c-green-dark);
  border-top: 1px solid var(--c-gold-line);
}
.plans-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.plans-inner .eyebrow { margin-bottom: 1.5rem; }
.plans-inner .section-title { margin-bottom: 1.5rem; }
.plans-inner .section-subtitle { margin: 0 auto 2.5rem; }

/* ============================================================
   9. TIME EXCLUSIVO
   ============================================================ */

.team {
  padding: var(--section-pad-y) 0;
  background: var(--c-green);
  position: relative;
  overflow: hidden;
}
.team::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 137, 61, 0.06) 0%, transparent 70%);
}
.team-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.team-inner .eyebrow { margin-bottom: 1.5rem; }
.team-inner .section-title { margin-bottom: 1.5rem; }
.team-inner .section-subtitle { margin: 0 auto 2.5rem; }

.online-badge {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-off-white-dim);
  letter-spacing: 0.1em;
}
.online-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}
.online-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   10. FAQ
   ============================================================ */

.faq {
  padding: var(--section-pad-y) 0;
  background: var(--c-green-dark);
  border-top: 1px solid var(--c-gold-line);
}
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-header .eyebrow { margin-bottom: 1.25rem; }
.faq-header .section-subtitle { margin: 1rem auto 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-gold-line);
}
.faq-item:first-child { border-top: 1px solid var(--c-gold-line); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 2.5rem 1.75rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--c-off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
  gap: 1rem;
}
.faq-question:hover { color: var(--c-gold); }
.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-question .icon {
  background: var(--c-gold);
  color: var(--c-green-dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.75rem;
}
.faq-answer p {
  color: var(--c-off-white-dim);
  font-size: 1rem;
  line-height: 1.75;
  padding-right: 3rem;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================
   11. RODAPÉ
   ============================================================ */

.footer {
  padding: 4rem 0 2.5rem;
  background: var(--c-black);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.footer-logo em { color: var(--c-gold); font-style: italic; font-weight: 400; }
.footer-tagline {
  color: var(--c-off-white-faint);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-divider {
  height: 1px;
  background: var(--c-gold-line);
  max-width: 200px;
  margin: 0 auto 2rem;
}
.footer-copy {
  color: var(--c-off-white-faint);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.footer-copy p { margin-bottom: 0.5rem; }

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVO ESPECÍFICO
   ============================================================ */

@media (max-width: 640px) {
  .hero-metrics { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; }
  .container { padding: 0 1.25rem; }
  .logo-item { width: 100px; height: 100px; padding: 12px; }
}

/* ============================================================
   QUEM SOMOS — duas fotos empilhadas
   ============================================================ */

.about-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-gold-line);
  aspect-ratio: 4 / 3;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo-wrap:hover img { transform: scale(1.03); }

.about-photo-offset {
  margin-left: 1.5rem;
}

@media (max-width: 900px) {
  .about-photo-offset { margin-left: 0; }
}

/* ============================================================
   CARROSSEL DE SERVIÇOS — estilo Alpha
   ============================================================ */

.services-carousel-wrap {
  position: relative;
}

.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.services-carousel::-webkit-scrollbar { display: none; }

.svc-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--c-green-dark);
  border: 1px solid var(--c-gold-line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}

.svc-card--featured {
  border-color: var(--c-gold);
}

.svc-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img img { transform: scale(1.05); }

.svc-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--c-green-dark);
  color: var(--c-off-white);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--c-gold-line);
}

.svc-card-tag--gold {
  background: var(--c-gold);
  color: var(--c-green-dark);
  border-color: var(--c-gold);
}

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

.svc-card-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--c-off-white);
}

.svc-card-body p {
  font-size: 0.9rem;
  color: var(--c-off-white-dim);
  line-height: 1.65;
}

/* Controles do carrossel */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-gold-line);
  background: transparent;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--c-gold);
  color: var(--c-green-dark);
  border-color: var(--c-gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold-line-strong);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.carousel-dot.active {
  background: var(--c-gold);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .svc-card { flex: 0 0 calc(80vw); }
}

@media (max-width: 640px) {
  .svc-card { flex: 0 0 calc(88vw); }
}

/* ============================================================
   CARDS DE SERVIÇO — layout com ícone SVG
   ============================================================ */

.svc-card-icon-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.svc-card-icon-wrap::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,61,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.svc-card-icon-wrap--gold {
  background: linear-gradient(135deg, var(--c-green) 0%, rgba(184,137,61,0.12) 100%);
}

.svc-card-icon-wrap svg {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(184,137,61,0.2));
}

.svc-card-tag-line {
  padding: 0.75rem 1rem 0;
}

.svc-card-tag-line .svc-card-tag {
  position: static;
  display: inline-block;
}
