:root {
  --bg: #0b0b0f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.55);
  --border: rgba(168, 85, 247, 0.26);
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --container: 92rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(11, 11, 15, 0.92), transparent);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: transparent;
  font-size: 0;
  transform: skew(-10deg);
}

.main-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 0.5rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-button {
  display: none;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 1rem 2.25rem rgba(124, 58, 237, 0.26);
  font-size: 0.95rem;
}

.menu-button {
  display: grid;
  gap: 0.34rem;
  width: 2.75rem;
  padding: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 0.11rem;
  background: var(--text);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 90px);
  align-items: center;
  padding: 56px 0 80px;
  background:
    radial-gradient(circle at 72% 35%, rgba(124, 58, 237, 0.24), transparent 36%),
    #0b0b0f;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 4;
  max-width: 620px;
}

.hero-right {
  position: static;
}

.fk-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
}

.fk-hero-fade {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 62%;
  height: 100%;
  background:
    linear-gradient(to right, #0b0b0f 0%, #0b0b0f 8%, transparent 42%),
    linear-gradient(to top, #0b0b0f 0%, transparent 30%),
    linear-gradient(to bottom, #0b0b0f 0%, transparent 18%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a855f7;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #a855f7;
}

.hero-left h1 {
  margin: 24px 0;
  font-size: clamp(2.8rem, 4.1vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(2.75rem, 12vw, 4.9rem);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.55);
}

h1 span,
.hero-subtitle span {
  color: var(--purple-light);
}

.hero-left h1 span {
  display: inline;
  color: #a855f7;
}

.hero-subtitle {
  max-width: 520px;
  margin-top: 0;
  color: #d1d5db;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 3.6rem;
  padding: 0.95rem 1.35rem;
  font-size: 0.98rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 1rem 2.6rem rgba(124, 58, 237, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.button-icon {
  font-size: 1.25rem;
}

.section-metrics {
  background: #0b0b0f;
  padding: 20px 0 40px;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.metric-item {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.metric-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-number {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  display: block;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-proof {
  background: #0b0b0f;
  padding: 32px 0 72px;
}

.proof-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.proof-card {
  min-height: 210px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(17, 17, 24, 0.88));
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.08);
  padding: 28px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.proof-card:hover {
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.18);
  transform: translateY(-4px);
}

.proof-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 2px solid #a855f7;
  border-radius: 50%;
  color: #a855f7;
  font-size: 2rem;
}

.proof-card h3 {
  margin-bottom: 12px;
  color: #a855f7;
  font-size: 1.35rem;
}

.proof-card p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.55;
}

.header-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.header-button:hover {
  box-shadow: 0 1.25rem 3rem rgba(124, 58, 237, 0.45);
}

.button-secondary:hover {
  border-color: rgba(168, 85, 247, 0.72);
  background: rgba(124, 58, 237, 0.12);
}

@media (min-width: 620px) {
  .header-button {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .hero-actions {
    max-width: 23rem;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

}

@media (min-width: 1024px) {
  .container {
    width: min(100% - 6rem, var(--container));
  }

  .header-content {
    min-height: 6.7rem;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 800;
  }

  .main-nav a {
    transition: color 180ms ease;
  }

  .main-nav a:hover {
    color: var(--purple-light);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 72px;
  }

  .hero-left {
    max-width: 600px;
  }

  .hero-actions {
    max-width: 24rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-right {
    position: static;
  }

  .section-metrics .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 760px;
  }

  .metric-item {
    min-height: auto;
    align-items: flex-start;
    padding-right: 12px;
    text-align: left;
  }

  .metric-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
  }

}

@media (min-width: 768px) {
  .proof-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .proof-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 48px 0 24px;
  }

  .hero-grid {
    min-height: auto;
    align-content: center;
  }

  .hero-left h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 24rem;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 3.75rem;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    text-align: left;
  }

  .hero-right {
    position: static;
    max-width: 100%;
  }

  .section-metrics {
    padding: 0 0 34px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
  }

  .fk-hero-img {
    position: absolute;
    inset: auto 0 0;
    width: 100%;
    height: 58%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.5;
    z-index: 1;
  }

  .fk-hero-fade {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
      linear-gradient(to bottom, #0b0b0f 0%, rgba(11, 11, 15, 0.72) 28%, rgba(11, 11, 15, 0.88) 68%, #0b0b0f 100%),
      linear-gradient(to right, #0b0b0f 0%, rgba(11, 11, 15, 0.62) 45%, rgba(11, 11, 15, 0.2) 100%);
  }
}

.section-dor {
  background: #0f0f14;
  padding: 5rem 0;
}

.section-dor h2 {
  max-width: 44rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.dor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.dor-card {
  min-height: 10rem;
  border: 1px solid #222;
  border-radius: 12px;
  background: #111;
  padding: 1.6rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.dor-card span {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  line-height: 1;
}

.dor-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

.dor-card-featured {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), #111);
}

.dor-card-featured p {
  color: var(--text);
  font-size: 1.25rem;
}

.dor-card:hover {
  border-color: var(--purple);
  box-shadow: 0 1rem 2.6rem rgba(124, 58, 237, 0.2);
  transform: translateY(-3px);
}

@media (min-width: 700px) {
  .section-dor {
    padding: 6rem 0;
  }

  .dor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-dor {
    padding: 7rem 0;
  }

  .dor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.section-produtos {
  background: var(--bg);
  padding: 5rem 0;
}

.section-produtos h2 {
  max-width: 52rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.25rem;
}

.produto-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid #222;
  border-radius: 16px;
  background: #111;
  padding: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.produto-card:hover {
  border-color: var(--purple);
  box-shadow: 0 1.5rem 3.5rem rgba(124, 58, 237, 0.24);
  transform: translateY(-4px);
}

.produto-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  background: #0f0f14;
  box-shadow: 0 1rem 2.8rem rgba(124, 58, 237, 0.2);
}

.produto-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.produto-card h3 {
  color: var(--text);
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
}

.produto-card p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.produto-card .button {
  width: 100%;
  margin-top: 1.5rem;
}

@media (min-width: 760px) {
  .section-produtos {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section-produtos {
    padding: 7rem 0;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .produto-card .button {
    width: auto;
    margin-top: auto;
  }
}

.section-templates {
  background: #0f0f14;
  overflow: hidden;
  padding: 5rem 0;
}

.section-templates h2 {
  max-width: 56rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.templates-subtitle {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.55;
  text-align: center;
}

.templates-carousel-wrapper {
  position: relative;
  width: 100%;
}

.templates-carousel {
  width: 100%;
  margin-top: 3.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 18px;
}

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

.carousel-arrow {
  display: none;
  border: 0;
  font-family: inherit;
}

.templates-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.template-card {
  flex: 0 0 82vw;
  max-width: 320px;
  scroll-snap-align: start;
  border: 1px solid #222;
  border-radius: 18px;
  background: #111;
  padding: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.template-card:hover {
  border-color: var(--purple);
  box-shadow: 0 1.2rem 3rem rgba(124, 58, 237, 0.24);
  transform: translateY(-3px);
}

.template-image {
  overflow: hidden;
  border-radius: 10px;
}

.template-image img {
  width: 100%;
  height: 190px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  background: #0b0b0f;
  transition: transform 180ms ease;
}

.template-card:hover .template-image img {
  transform: scale(1.04);
}

.template-card span {
  display: block;
  margin-top: 1rem;
  color: #a855f7;
  font-size: 0.78rem;
  font-weight: 800;
}

.template-card h3 {
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
}

.template-card .button {
  width: 100%;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 760px) {
  .section-templates {
    padding: 6rem 0;
  }

  .template-card {
    flex-basis: 280px;
    max-width: 280px;
  }

  .template-card img {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .section-templates {
    padding: 7rem 0;
  }

  .templates-carousel {
    padding-inline: 2px;
  }

  .templates-track {
    gap: 24px;
  }

  .template-card {
    flex-basis: 292px;
    max-width: 292px;
  }

  .carousel-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 999px;
    background: rgba(17, 17, 24, 0.96);
    color: #ffffff;
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.28);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease;
  }

  .carousel-arrow:hover {
    background: #7c3aed;
    border-color: #a855f7;
  }

  .carousel-arrow-left {
    left: 8px;
    transform: translateY(-50%);
  }

  .carousel-arrow-right {
    right: 8px;
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .template-card {
    flex-basis: 300px;
    max-width: 300px;
  }
}

.section-ia {
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.18), transparent 30rem),
    var(--bg);
  padding: 5rem 0;
}

.section-ia h2 {
  max-width: 54rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.ia-subtitle {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}

.ia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.25rem;
}

.ia-card {
  border: 1px solid #222;
  border-radius: 16px;
  background: #111;
  padding: 1.5rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ia-card span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 0.75rem;
  color: #a855f7;
  font-size: 1.65rem;
  line-height: 1;
}

.ia-card h3 {
  margin-top: 1.35rem;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 900;
}

.ia-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ia-card:hover {
  border-color: var(--purple);
  box-shadow: 0 1.2rem 3rem rgba(124, 58, 237, 0.22);
  transform: translateY(-3px);
}

@media (min-width: 700px) {
  .section-ia {
    padding: 6rem 0;
  }

  .ia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1120px) {
  .section-ia {
    padding: 7rem 0;
  }

  .ia-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.section-depoimentos {
  background: #0f0f14;
  padding: 5rem 0;
}

.section-depoimentos h2 {
  max-width: 56rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.depoimentos-subtitle {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}

.depoimentos-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3.25rem;
}

.depoimento-card,
.testimonial-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #222;
  border-radius: 18px;
  background: #111;
  padding: 24px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.depoimento-card:hover,
.testimonial-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.depoimento-stars,
.testimonial-stars {
  margin-bottom: 18px;
  color: #a855f7;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 2px;
}

.testimonial-text {
  margin-bottom: 28px;
  color: #f3f4f6;
  font-size: 1.05rem;
  line-height: 1.75;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 2px solid rgba(168, 85, 247, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
}

.testimonial-meta span {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.3;
}

@media (min-width: 760px) {
  .section-depoimentos {
    padding: 6rem 0;
  }

  .depoimentos-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .section-depoimentos {
    padding: 7rem 0;
  }

  .depoimentos-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-contato {
  background: var(--bg);
  padding: 5rem 0;
}

.contato-cta {
  position: relative;
  overflow: hidden;
  max-width: 68rem;
  margin-inline: auto;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(15, 15, 20, 0.92));
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.08),
    0 2rem 5rem rgba(124, 58, 237, 0.18);
  padding: 3rem 1.25rem;
  text-align: center;
}

.contato-cta h2 {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
}

.contato-cta p {
  max-width: 43rem;
  margin: 1.15rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.6;
}

.contato-button {
  width: 100%;
  max-width: 24rem;
  min-height: 3.75rem;
  margin-top: 2rem;
  font-size: 1rem;
}

.contato-beneficios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 44rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

.contato-beneficios span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 1rem;
}

@media (min-width: 760px) {
  .section-contato {
    padding: 6rem 0;
  }

  .contato-cta {
    padding: 4.5rem 2rem;
  }

  .contato-beneficios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-contato {
    padding: 7rem 0;
  }

  .contato-cta {
    padding: 5.5rem 3rem;
  }
}

.section-faq {
  background: #0f0f14;
  padding: 5rem 0;
}

.section-faq h2 {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 3rem auto 0;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #222;
  border-radius: 12px;
  background: #111;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--purple);
  box-shadow: 0 1rem 2.4rem rgba(124, 58, 237, 0.18);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  padding: 1.25rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.faq-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  max-height: 14rem;
}

@media (min-width: 760px) {
  .section-faq {
    padding: 6rem 0;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-faq {
    padding: 7rem 0;
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0b0f;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: inline-block;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
}

.footer p,
.footer a {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer p {
  max-width: 24rem;
  margin-top: 0.9rem;
}

.footer h2 {
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  color: #aaa;
}

@media (min-width: 900px) {
  .footer {
    padding-top: 4.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 3rem;
  }
}
