:root {
  --bg-dark: #0f0f0f;
  --bg-light: #ffffff;
  --bg-gray: #f3f3f3;
  --primary: #0166f8;
  --text-dark: #111;
  --text-light: #fff;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

/* Direções */
.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Estado ativo */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}



/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont;
  background: #050508;
  color: #ffffff;
}

/* HEAD */
.head{
  background: transparent;
  position: absolute; /* ou fixed */
  top: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
}

.head img{
  margin-top: 30px;
  margin-right: 80px;
  width: 80px;
  height: 40px;
}

/* P */
p{
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  background: radial-gradient(
      circle at top left,
      rgba(98, 135, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 0, 0, 0.9),
      #050508 70%
    );
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

/* HEADLINE */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: #0166f8;
}

/* SUBTEXTO */
.hero p {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8bccf;
}

/* CTA */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: #0166f8;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(108, 155, 255, 0.336);
}

.btn span {
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(108, 167, 255, 0.45);
}

.btn:hover span {
  transform: translateX(4px);
}

/* PROBLEM SECTION */
.problem {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle at top right, #0b1c36, #050505 70%);
}

.problem-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.problem h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}

.problem h2 span {
  color: #0166f8;
}

/* LIST */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ITEM */
.problem-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: #d6d8e5;
  font-size: 1rem;
  text-align: left;
}

/* ICON */
.problem-list .icon {
  width: 34px;
  height: 34px;
  min-width: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 80, 80, 0.15);
  position: relative;
}

/* CRIA O X COM CSS */
.problem-list .icon::before,
.problem-list .icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #ff5a5a;
  border-radius: 2px;
}

.problem-list .icon::before {
  transform: rotate(45deg);
}

.problem-list .icon::after {
  transform: rotate(-45deg);
}

/* ALIGN SECTION */
.align {
  padding: 6rem 1.5rem;
  background: radial-gradient(
      circle at center,
      rgba(92, 164, 247, 0.08),
      transparent 65%
    ),
    #050508;
}

.align-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.align h2 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

.align h2 span {
  color: #0166f8;
}

/* TEXT */
.align p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #b8bccf;
}

/* METHOD SECTION */
.method {
  padding: 6.5rem 1.5rem;
  background: radial-gradient(
      circle at top left,
      rgba(2, 53, 95, 0.301),
      transparent 60%
    ),
    #050508;
}

.method-container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
.method-header {
  text-align: center;
  margin-bottom: 4rem;
}

.method-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.method-header h2 span {
  color: #0166f8;
}

.method-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8bccf;
}

/* LIST */
.method-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* CARD */
.method-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

/* BADGE */
.method-card .badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #0166f8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CONTENT */
.method-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.method-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c7cbe0;
}

/* DELIVERABLES SECTION */
.deliverables {
  padding: 6.5rem 1.5rem;
  background: radial-gradient(circle at bottom, #0b1c36, #050505 70%);
}

.deliverables-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.deliverables-header {
  text-align: center;
  margin-bottom: 4rem;
}

.deliverables-header h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.deliverables-header h2 span {
  color: #0166f8;
}

.deliverables-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8bccf;
}

/* GRID */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

/* CARD */
.deliverable-card {
  padding: 2rem 1.8rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON */
.deliverable-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(108, 160, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.deliverable-card .icon img{
  width: 27px;
  height: 27px;
}

/* TEXT */
.deliverable-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.deliverable-card p {
  font-size: 0.9rem;
  color: #c7cbe0;
  line-height: 1.6;
}

/* HOVER */
.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(102, 155, 253, 0.25);
}

.before-after {
  padding: 6rem 1.5rem;
  background: radial-gradient(
      circle at center,
      rgba(73, 151, 240, 0.08),
      transparent 60%
    ),
    #030405;
}

.before-after-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */
.before-after-title {
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 4rem;
}

.before-after-title span {
  color: #0166f8;
  margin: 0 0.3rem;
}

/* GRID */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* CARD BASE */
.comparison-card {
  padding: 2.5rem;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
}

/* BEFORE CARD */
.comparison-card.before {
  border: 1px solid rgba(255, 80, 80, 0.25);
}

.comparison-card.before h3 {
  color: #ff5a5a;
}

/* AFTER CARD */
.comparison-card.after {
  border: 1px solid rgba(108, 167, 255, 0.35);
}

.comparison-card.after h3 {
  color: #0166f8;
}

/* HEADINGS */
.comparison-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}

/* LIST */
.comparison-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #c7cbe0;
}

/* ICONS (CENTRALIZADOS) */
.icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.icon.x {
  background: rgba(255, 80, 80, 0.15);
  color: #ff5a5a;
}

.icon.check {
  background: rgba(108, 167, 255, 0.18);
  color: #0166f8;
}

.why-accord {
  padding: 120px 8%;
  background: radial-gradient(circle at left, #0b1c36, #050505 70%);
  color: #fff;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.why-header h2 span {
  color: #0166f8;
}

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

.why-card {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 18px;
  padding: 48px 36px;
  border: 1px solid rgba(83, 182, 248, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(108, 177, 255, 0.12);
}

.card-number {
  display: block;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  color: rgba(108, 172, 255, 0.322);
  letter-spacing: -0.04em;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #bdbdbd;
}

/* Responsivo */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.final-cta {
  padding: 140px 24px;
  background: radial-gradient(circle at top, #0b1c36, #050505 70%);
  text-align: center;
}

.final-container {
  max-width: 960px;
  margin: 0 auto;
}

/* LOGO */
.cta-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 48px;
  border-radius: 20px;
  background: rgba(1, 102, 248, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo img {
  max-width: 90%;
}

/* TÍTULO */
.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.final-cta h2 span {
  color: #0166f8;
}

/* TEXTO */
.final-cta p {
  font-size: 1.05rem;
  color: #b9c6e0;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* BOTÃO */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 14px;
  background: #0166f8;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button span {
  font-size: 1.2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(1, 102, 248, 0.35);
}

/* SOCIAL */
.cta-social {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-social span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #7a8bb3;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background: rgba(1, 102, 248, 0.15);
  transform: translateY(-2px);
}

.social-icon img {
  width: 18px;
}


.footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}


/* =========================
   AJUSTES RESPONSIVOS ACCORD
   ========================= */

/* GERAL */
img {
  max-width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

/* HEADER */
.head {
  position: absolute;
  padding: 16px 0;
}

.head img {
  margin: 0 auto;
  display: block;
  width: 72px;
  height: auto;
}

/* HERO */
@media (max-width: 768px) {
  .hero {
    padding: 0 1.2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    width: 380px;
  }

  .hero p {
    font-size: 0.95rem;
    width: 350px;
  }

  .btn {
    width: 80%;
    justify-content: center;
  }
}

/* PROBLEM LIST */
@media (max-width: 768px) {
  .problem {
    padding: 4rem 1.2rem;
  }

  .problem-list li {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

}

/* METHOD */
@media (max-width: 768px) {
  .method {
    padding: 4.5rem 1.2rem;
  }

  .method-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .method-card .badge {
    margin-bottom: 0.6rem;
  }
}

/* DELIVERABLES */
@media (max-width: 768px) {
  .deliverables {
    padding: 4.5rem 1.2rem;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card {
    padding: 1.6rem;
  }
}

/* BEFORE / AFTER */
@media (max-width: 768px) {
  .comparison-card {
    padding: 1.8rem;
  }

  .comparison-card h3 {
    font-size: 1.2rem;
  }
}

/* WHY ACCORD */
@media (max-width: 1024px) {
  .why-accord {
    padding: 80px 6%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 36px 28px;
  }

  .card-number {
    font-size: 4rem;
  }
}

/* FINAL CTA */
@media (max-width: 768px) {
  .final-cta {
    padding: 90px 20px;
  }

  .cta-logo {
    width: 72px;
    height: 72px;
  }

  .final-cta p {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* FOOTER */
.footer {
  padding: 1.5rem 1rem;
}
