:root {
  --bg: #07110d;
  --bg-soft: #0d1915;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f7f5;
  --text-soft: #cfd9d3;
  --muted: #95a69e;
  --green: #22c56e;
  --green-strong: #18a75d;
  --green-soft: rgba(34, 197, 110, 0.12);
  --white: #ffffff;
  --yellow: #f6db76;
  --shadow: 0 24px 60px rgba(1, 10, 7, 0.28);
  --shadow-soft: 0 14px 34px rgba(1, 10, 7, 0.18);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --container: 1240px;
  --header-height: 82px;
  --section-space: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 110, 0.08), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(34, 197, 110, 0.06), transparent 22%),
    linear-gradient(180deg, #07110d 0%, #0b1713 44%, #0c1512 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(10, 20, 17, 0.45);
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 760px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.9rem, 2.9vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(34, 197, 110, 0.18);
  color: #a8f5c9;
  font-weight: 700;
  font-size: 0.8rem;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(5, 13, 10, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  color: var(--white);
}

.logo-subtitle {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  line-height: 1.1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 247, 245, 0.86);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transition: width 0.22s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.icon-button,
.lang-btn {
  transition: 0.22s ease;
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  flex: 0 0 auto;
}

.whatsapp-nav {
  width: 38px;
  height: 38px;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.icon-button svg,
.whatsapp-nav svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.mobile-lang {
  display: flex;
  width: fit-content;
}

.lang-btn {
  min-width: 42px;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  background: rgba(34, 197, 110, 0.95);
  color: var(--white);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 18, 15, 0.98);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  padding: 18px 0 22px;
  display: grid;
  gap: 10px;
}

.mobile-nav a,
.mobile-nav .mobile-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-weight: 700;
}

.mobile-nav .mobile-cta {
  background: var(--green);
  color: var(--white);
  border-color: transparent;
}

/* HERO */

.hero {
  padding: 28px 0 18px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 620px);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  min-width: 0;
}

.hero-copy h1 {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-copy p {
  margin: 0;
  width: 100%;
  max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-actions {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  transition: 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(34, 197, 110, 0.16);
}

.btn-primary:hover {
  background: var(--green-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-visual {
  width: 100%;
  max-width: 620px;
  min-width: 0;
  margin-left: auto;
}

.hero-card {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(34, 197, 110, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #9cf2c1;
  letter-spacing: 0.03em;
}

.rating {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-highlight {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.stat-box,
.number-card,
.service-card,
.testimonial-card,
.faq-item,
.about-card,
.group-card,
.cta-card {
  box-shadow: var(--shadow-soft);
}

.stat-box {
  min-height: 84px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-box strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--green);
  letter-spacing: -0.04em;
}

.stat-box span {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.82rem;
}

.trust-band {
  margin-top: 16px;
}

.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(34, 197, 110, 0.14), rgba(34, 197, 110, 0.05));
  border: 1px solid rgba(34, 197, 110, 0.16);
  color: #ebfff3;
  font-weight: 800;
  text-align: center;
  font-size: 0.9rem;
}

/* CONTENT */

.about-grid,
.group-grid,
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.about-card,
.group-card,
.cta-card,
.service-card,
.testimonial-card,
.faq-item,
.number-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.about-card,
.group-card,
.cta-card {
  padding: 26px;
}

.about-card p,
.group-card p,
.cta-card p,
.service-card p,
.testimonial-card p,
.faq-item p {
  color: var(--text-soft);
  margin: 0 0 16px;
  font-size: 0.94rem;
  line-height: 1.58;
}

.about-list,
.group-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.about-list div,
.group-list div {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.number-card {
  padding: 22px 18px;
  min-height: 138px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.number-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
}

.number-card span {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.service-card li + li {
  margin-top: 8px;
}

.group-price {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.group-price div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.group-price strong {
  color: var(--white);
  white-space: nowrap;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-card .tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #9cf2c1;
  border: 1px solid rgba(34, 197, 110, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonial-card .stars {
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  min-height: 20px;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.3;
}

.quick-info-title {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.cta-card strong {
  color: #fff;
}

/* FOOTER */

.footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 14, 12, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.footer small {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

/* FLOAT */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(34, 197, 110, 0.22);
  z-index: 999;
  transition: 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--green-strong);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

/* LANGUAGE */

[data-lang] {
  display: none;
}

[data-lang-inline] {
  display: none;
}

html.lang-pt [data-lang="pt"] {
  display: block;
}

html.lang-en [data-lang="en"] {
  display: block;
}

html.lang-pt [data-lang-inline="pt"] {
  display: inline;
}

html.lang-en [data-lang-inline="en"] {
  display: inline;
}

/* RESPONSIVO */

@media (max-width: 1180px) {
  .header-inner {
    gap: 14px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 460px) minmax(0, 560px);
    gap: 26px;
  }

  .hero-copy {
    max-width: 460px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 3.7vw, 3.5rem);
  }

  .hero-visual {
    max-width: 560px;
  }
}

@media (max-width: 1080px) {
  :root {
    --section-space: 74px;
  }

  .desktop-nav,
  .whatsapp-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-shell,
  .about-grid,
  .group-grid,
  .cta-grid,
  .services-grid,
  .numbers-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell {
    gap: 24px;
  }

  .hero-copy,
  .hero-visual {
    max-width: 100%;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 5vw, 3.2rem);
  }

  .hero-photo {
    aspect-ratio: 4 / 3.2;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 74px;
    --section-space: 62px;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header {
    height: auto;
  }

  .header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    gap: 10px;
  }

  .logo-image {
    width: 44px;
    height: 44px;
  }

  .logo-title {
    font-size: 0.86rem;
  }

  .logo-subtitle {
    font-size: 0.64rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch {
    display: none;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 14px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 0.93rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .chip {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-photo {
    aspect-ratio: 4 / 3.28;
  }

  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-band-inner {
    justify-content: flex-start;
    text-align: left;
    padding: 16px;
  }

  .about-card,
  .group-card,
  .cta-card,
  .service-card,
  .testimonial-card,
  .faq-item,
  .number-card {
    border-radius: 18px;
  }

  .group-price div {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}