/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  /* --red: #f03e3e; */
  --green: #2d6a4f;
  --green-mid: #40916c;
  --green-lt: #74c69d;
  --cream: #f8f5ef;
  --dark: #111714;
  --dark-2: #1c2b22;
  --mid: #3d5a47;
  --gray: #6b7c73;
  --gray-lt: #e8ede9;
  --white: #ffffff;
  --accent: #b7e4c7;
  --gold: #d4a843;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);

  --section-py: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: italic;
  color: var(--green-mid);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ===== LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--gray-lt);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-lt);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.nav-logo span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--green-mid);
  display: block;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--green-mid);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-lt);
  padding: 16px 24px 24px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-lt);
}
.mobile-menu .mm-cta {
  color: var(--green);
  font-weight: 700;
  border: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-shape.s1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}
.hero-shape.s2 {
  width: 400px;
  height: 400px;
  background: var(--green-lt);
  bottom: -100px;
  left: -100px;
  opacity: 0.2;
}
.hero-shape.s3 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 30%;
  left: 40%;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gray-lt);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  display: block;
  color: var(--green-mid);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.stat span {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--gray-lt);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-img-wrap {
  position: relative;
  width: 340px;
}
.hero-img-placeholder {
  width: 340px;
  height: 420px;
  background: linear-gradient(145deg, var(--dark-2), var(--green));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 70%,
    rgba(116, 198, 157, 0.25) 0%,
    transparent 70%
  );
}
.img-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}
.img-tag {
  position: absolute;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.floating-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.floating-card small {
  font-size: 0.75rem;
  color: var(--gray);
}
.ion-iconzap {
  font-size: 1.4rem;
  color: #2d6a4f;
}

.fc1 {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}
.fc2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 2s;
}

/* ===== SOBRE ===== */
.sobre {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}
.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--green-mid), var(--dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.sobre-initials {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
}
.sobre-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
  text-align: center;
}
.sobre-badge-float span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.sobre-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sobre-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.sobre-content strong {
  color: var(--dark);
}

.sobre-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}
.check {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== MÉTODO ===== */
.metodo {
  padding: var(--section-py) 0;
  background: var(--dark);
  color: var(--white);
}
.metodo .section-header h2 {
  color: var(--white);
}
.metodo .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.metodo-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}
.step:hover {
  background: rgba(255, 255, 255, 0.08);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  align-self: center;
  padding: 0 4px;
  display: flex;
  align-self: center;
  margin-top: -40px;
}

/* ===== PLANOS ===== */
.planos {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--gray-lt);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plano-card.destaque {
  border-color: var(--green);
  background: var(--dark);
  color: var(--white);
  transform: scale(1.03);
}
.plano-card.destaque:hover {
  transform: scale(1.03) translateY(-4px);
}

.plano-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plano-header {
  margin-bottom: 28px;
}
.plano-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  background: var(--gray-lt);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.plano-card.destaque .plano-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-lt);
}

.plano-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.plano-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.plano-card.destaque .plano-price {
  color: var(--white);
}
.currency {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}
.plano-card.destaque .period {
  color: rgba(255, 255, 255, 0.6);
}

.plano-economy {
  display: block;
  font-size: 0.78rem;
  color: var(--green-lt);
  margin-top: 6px;
}

.plano-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.plano-features li span {
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--green);
  color: var(--white);
}
.plano-features li.no span {
  background: var(--gray-lt);
  color: var(--gray);
}
.plano-features li.no {
  color: var(--gray);
}
.plano-card.destaque .plano-features li {
  color: rgba(255, 255, 255, 0.85);
}
.plano-card.destaque .plano-features li.no {
  color: rgba(255, 255, 255, 0.3);
}

.planos-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
}

/* ===== COMPARATIVO ===== */
.comparativo {
  padding: var(--section-py) 0;
  background: var(--white);
}

.comp-table-wrap {
  overflow-x: auto;
}
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comp-table thead {
  background: var(--dark);
  color: var(--white);
}
.comp-table th {
  padding: 18px 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: left;
}
.comp-table th.col-wr {
  color: var(--green-lt);
}
.comp-table th.col-outros {
  color: rgba(255, 255, 255, 0.4);
}
.comp-table tbody tr {
  background: var(--white);
  transition: background 0.15s;
}
.comp-table tbody tr:nth-child(even) {
  background: var(--cream);
}
.comp-table tbody tr:hover {
  background: var(--gray-lt);
}
.comp-table td {
  padding: 16px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-lt);
}
.comp-table td.col-wr {
  color: var(--green);
  font-weight: 700;
}
.comp-table td.col-outros {
  color: var(--gray);
}

/* ===== RESULTADOS ===== */
.resultados {
  padding: var(--section-py) 0;
  background: var(--dark);
  color: var(--white);
}
.resultados .section-header h2 {
  color: var(--white);
}
.resultados .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 700;
}
.t-author small {
  font-size: 0.78rem;
  color: var(--green-lt);
}

/* ===== BENEFÍCIOS ===== */
.beneficios {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.beneficio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid var(--gray-lt);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.beneficio-card:hover {
  border-color: var(--green-lt);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.b-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}
.beneficio-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.beneficio-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--green-lt);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--gray-lt);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
  padding: var(--section-py) 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-2) 50%,
    var(--green) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(116, 198, 157, 0.1);
  right: -200px;
  top: -200px;
  pointer-events: none;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

.contato-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.contato-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  margin-bottom: 36px;
}

.contato-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.contato-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contato-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.contato-links a:hover {
  color: var(--white);
}

.contato-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contato-form h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contato-form p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group select option {
  color: var(--dark);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-lt);
}

.contato-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-lt);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== STICKY BAR ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--gray-lt);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background 0.15s;
}
.sticky-btn:hover {
  background: var(--gray-lt);
}
.sticky-btn svg {
  flex-shrink: 0;
}

.sticky-whats {
  color: #25d366;
}
.sticky-call {
  color: #d62976;
}
.sticky-book {
  color: var(--dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== RESPONSIVE ===== */
.br-hide {
  display: none;
}

@media (min-width: 768px) {
  .br-hide {
    display: block;
  }
  .sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 1024px) {
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 28px;
  }
  .plano-card.destaque {
    transform: none;
  }
  .plano-card.destaque:hover {
    transform: translateY(-4px);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
  }

  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
  }
  .hero-img-wrap {
    margin: 0 auto;
    width: 280px;
  }
  .hero-img-placeholder {
    width: 280px;
    height: 340px;
  }
  .fc1 {
    right: -20px;
    top: -16px;
  }
  .fc2 {
    left: -20px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-badge-float {
    right: 0;
  }

  .metodo-steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: -8px 0;
  }
  .step {
    max-width: 100%;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .comp-table th,
  .comp-table td {
    padding: 12px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .btn {
    padding: 13px 22px;
    font-size: 0.9rem;
  }
  .btn-lg {
    padding: 15px 26px;
  }
  .contato-form {
    padding: 24px 20px;
  }
}
