/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* CSS Variables for Color Control */
:root {
  /* Primary Colors */
  --primary-blue: #64b5f6;
  --primary-blue-light: #42a5f5;
  --primary-blue-dark: #1976d2;

  /* Accent Colors */
  --accent-red: #f44336;
  --accent-green: #4caf50;
  --accent-green-light: #66bb6a;

  /* Background Colors */
  --bg-gradient-start: #020b1f;
  --bg-gradient-middle: #091b44;
  --bg-gradient-end: #030f1a;
  --bg-overlay: rgba(0, 0, 0, 0.3);
  --bg-overlay-dark: rgba(0, 0, 0, 0.4);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b3d9ff;
  --text-light: #e3f2fd;
  --text-accent: #ffcdd2;
  --text-accent-positive: #c2ffc5;
  --text-dark: #0f2027;

  /* Card & Glass Effects */
  --glass-bg: rgba(100, 181, 246, 0.1);
  --glass-bg-light: rgba(100, 181, 246, 0.05);
  --glass-bg-strong: rgba(100, 181, 246, 0.15);
  --glass-border: rgba(100, 181, 246, 0.2);
  --glass-border-strong: rgba(100, 181, 246, 0.3);

  /* Accent Backgrounds */
  --red-bg: rgba(244, 67, 54, 0.1);
  --green-bg: rgba(76, 175, 80, 0.3);

  /* Typography */
  --font-headline: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-esp: "Oxygen", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Spacing & Sizing */
  --border-radius: 16px;
  --border-radius-large: 24px;
  --border-radius-small: 8px;
  --border-radius-pill: 50px;

  /* Shadows */
  --shadow-hover: 0 10px 30px var(--green-bg);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h2 {
  line-height: 1.2;
}
.sp-white {
  color: white;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(
    135deg,
    var(--bg-gradient-start) 0%,
    var(--bg-gradient-middle) 50%,
    var(--bg-gradient-end) 100%
  );
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 20px;
}
.col-2 {
  display: flex;
  justify-content: space-between;
  flex: 50%;
}
.col-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding-right: 2rem;
}

.col-right {
  flex: 1; /* vazio, só para dar espaço ao fundo */
}
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0;

  background: url("hero-bg-dsk.png") no-repeat center right;
  background-size: cover;
  padding: 60px 0;
}

.hero .subtitle {
  font-family: var(--font-body);
  padding: 0 1rem;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}
.hero-content {
  text-align: start;
  width: 100%;
}
.hero-content h1 {
  font-family: var(--font-headline);
  line-height: 1.1;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.hero-content h1 span {
  font-size: 5rem;
  color: var(--primary-blue-light);
}
.hero-content .features {
  padding-left: 2rem;
  margin-bottom: 3rem;
}
.title-features {
  padding-top: 2rem;
  font-size: 0.8rem;
}
.highlight-white {
  color: white;
  font-weight: 800;
}
/* Problem Section */
.problem {
  padding: 80px 0;
  background: var(--bg-overlay);
}

.problem-text {
  font-family: var(--font-body);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Points Section */
.points {
  padding: 80px 0;
}

.points-header {
  text-align: center;
  margin-bottom: 4rem;
}

.points-title {
  padding-top: 2rem;
  font-family: var(--font-body);
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.points-subtitle {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.points-subtitle span {
  color: var(--accent-red);
}
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.point-card {
  position: relative;
  background: linear-gradient(135deg, var(--glass-bg), var(--glass-bg-light));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.point-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.6rem;

  line-height: 1.1;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-red);
  height: 80px;
}
.point-title h3 {
  font-size: 1.2rem;
  max-width: 20rem;
}
.point-title span {
  font-size: 5rem;
  opacity: 0.4;
}
.point-description {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.point-stat {
  font-family: var(--font-body);
  background: var(--red-bg);
  border-left: 3px solid var(--accent-red);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-accent);
  border-radius: 4px;
}

.point-stat-positive {
  font-family: var(--font-body);
  background: var(--green-bg);
  border-left: 3px solid var(--accent-green);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-accent-positive);
  border-radius: 4px;
}

/* Solution Section */
.solution {
  padding: 80px 0;
  background: var(--bg-overlay);
}

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

.solution h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
}

.solution p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Journey Section */
.journey {
  padding: 80px 0;
}

.journey-header {
  text-align: center;
  margin-bottom: 4rem;
}

.journey-title {
  font-family: var(--font-body);
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.journey-subtitle {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.journey-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  background: linear-gradient(135deg, var(--glass-bg-strong), var(--glass-bg));
  border: 1px solid var(--glass-border-strong);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.step-number {
  font-family: var(--font-headline);
  background: var(--primary-blue);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: -3.5rem auto 1.5rem auto;
}

.step-title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.step-description {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-stats {
  font-family: var(--font-body);
  background: var(--glass-bg);
  border-radius: var(--border-radius-small);
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Strategy Section */
.strategy {
  padding: 80px 0;
  background: var(--bg-overlay);
}

.strategy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.strategy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.gmn {
  background: url("bg-google-mn2.png") no-repeat center right;
  background-size: 150%;
  background-position: center top;
}
.onepage {
  background: url("bg-site-onepage.png") no-repeat center right;
  background-size: 160%;
  background-position: center top;
}
.pillar {
  /* Strategy Section
  background: linear-gradient(135deg, var(--glass-bg), var(--glass-bg-light)); */
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);

  padding: 2rem;
  padding-top: 13rem;
  text-align: center;
}

.pillar h3 {
  font-family: var(--font-headline);
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pillar p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem;
}

.benefit h3 {
  font-family: var(--font-headline);
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--bg-overlay-dark);
}

.cta-card {
  background: linear-gradient(135deg, var(--glass-bg-strong), var(--glass-bg));
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--border-radius-large);
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-title {
  font-family: var(--font-body);
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-description {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.pricing {
  margin: 0 -20px 20px;
  text-align: center;
}

.discount-badge {
  background: var(--accent-green);
  color: #0e202f;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 800;
}
.line-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  width: 140px;
  height: 3px;
  background: rgb(201, 46, 46);
}
.or-the {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 240px;
  margin: 0 auto;
}
.or-line {
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.3;
}
.or-the span {
  z-index: 2;
  padding: 5px 10px;
}
.price-from {
  position: relative;
  color: var(--text-color);
  font-size: 1.1rem;
}

.price-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 700;
}

.price-currency {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: var(--text-color);
}

.price-value {
  font-size: 4.5rem;
  color: var(--text-color);
}

.faq-answer .price-value {
  font-size: 1rem;
  font-weight: 500;
}
.faq-answer .price-cents {
  font-size: 1rem;
  font-weight: 500;
}

.price-cents {
  font-size: 1.4rem;
  color: var(--text-color);
}

.price-period {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 5px;
}
.payment-settings {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
}
.installment-line1 {
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  color: white;
  font-size: 1rem;
  background-color: var(--text-color);
}
.installment-line2 {
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  color: var(--text-color);
  font-size: 1rem;
  border: solid 1px white;
}

.dotted-border {
  display: flex;
  justify-content: center;
  border: 2px dashed #e0e0e0;
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
}

.features {
  margin: 10px 0;
}
.features p {
  font-size: 0.8rem;
  margin: 1rem 0;
}
.feature-item {
  text-align: start;
  display: flex;
  align-items: center;

  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.feature-item i {
  margin-top: 0;
  color: var(--accent-green);
}
/* Bonus */
.bonus-section {
  padding: 80px 0;
}
.bonus i {
  margin-top: 0;
  color: orange;
}
.total-bonus-strong {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.total-bonus {
  color: #f39c12;
}
.bonus-box {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.bonus-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5em;
  margin-bottom: 15px;
}
.bonus-box span {
  font-weight: 800;
}
/* Guarantee Section */
.guarantee {
  padding: 80px 0;
  background: rgba(76, 175, 80, 0.1);
}

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

.guarantee-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background-color: #42a5f5;
}
.garantee-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  height: 250px;
  width: 250px;

  border-radius: 50%;
  margin-bottom: 20px;
  border: solid 3rem var(--accent-green-light);
}
.garantee-seal img {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.garantee-seal span {
  font-size: 6rem;
  color: var(--accent-green-light);
  font-weight: 700;
  letter-spacing: -0.5rem;
}
.garantee-seal p {
  position: absolute;
  bottom: 0.2rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-green-light);
}
.guarantee-seal h2 {
  font-size: 1.5;
}
.guarantee-description {
  font-size: 1.3rem;
  color: #e3f2fd;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.guarantee-card {
  display: flex;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.15),
    rgba(102, 187, 106, 0.1)
  );
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.guarantee-seal .text {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.guarantee-text {
  max-width: 60%;
  text-align: start;
  color: #b3d9ff;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #64b5f6;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #b3d9ff;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(100, 181, 246, 0.1),
    rgba(66, 165, 245, 0.05)
  );
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #64b5f6;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(100, 181, 246, 0.1);
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #64b5f6;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #b3d9ff;
  line-height: 1.7;
}

.faq-answer.active {
  padding: 0 2rem 2rem 2rem;
  max-height: 300px;
}

/* BOTÃO 1: Neon Glow Effect */
.btn-neon {
  font-family: "Oxygen";
  background: linear-gradient(90deg, #10b848, #00817b);
  border: none;
  padding: 1.4rem 2.2rem;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 145, 72, 0.3);
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-neon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 80, 20, 0.5);
  filter: brightness(1.1);
}

.btn-neon:active {
  transform: translateY(-1px);
}
.st0 {
  fill: var(--accent-green);
}
.benefit-icon svg {
  width: 60px;
}
/* Final CTA */
.final-cta {
  padding: 80px 0;
}

.faq-answer .price-value {
  font-size: 1ren;
}
/* Responsive Design */
@media (max-width: 768px) {
  .gmn {
    background: url("bg-google-mn2.png") no-repeat center right;
    background-size: 200%;
    background-position: center top;
  }
  .onepage {
    background: url("bg-site-onepage.png") no-repeat center right;
    background-size: 200%;
    background-position: center top;
  }
  .points-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    align-items: stretch;
  }

  .step {
    max-width: 100%;
  }

  .container {
    padding: 0 15px;
    flex-direction: column;
    text-align: center;
  }
  .col-right {
    display: none;
  }
  .col-left {
    padding: 0;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content h1 {
    font-family: var(--font-headline);
    line-height: 1.1;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .hero-content h1 span {
    font-size: 3.5rem;
    color: var(--primary-blue-light);
  }

  .hero-content .features {
    text-align: start;
    padding-left: 3rem;
    margin-bottom: 2rem;
  }

  .hero {
    padding-top: 100%;
    background: url("hero-bg-mobile.png") no-repeat center right;
    background-size: cover;
    background-position: center center;
  }
  .feat-header {
    display: none;
  }
  .guarantee-card {
    flex-direction: column;
    padding: 2rem;
  }
  .guarantee-text {
    max-width: 100%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .hero {
    padding-top: 55%;
  }
}
@media (min-width: 1024px) {
  .hero {
    background-position: center center;
  }
  .points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .point-card {
    padding: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.point-card,
.step,
.cta-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.point-card:nth-child(2) {
  animation-delay: 0.2s;
}
.point-card:nth-child(3) {
  animation-delay: 0.4s;
}

.footer {
  background: linear-gradient(135deg, #0a192f 0%, #1a2f4e 100%);
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #64b5f6;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.footer-column h4 {
  color: #b3d9ff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column p {
  color: #b3d9ff;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-contact {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item i {
  margin-right: 10px;
  color: #64b5f6;
  width: 20px;
}

.footer-cta-btn {
  background: linear-gradient(45deg, #64b5f6, #1e88e5);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.footer-cta-btn:hover {
  background: linear-gradient(45deg, #1e88e5, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b3d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #64b5f6;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #64b5f6;
  transform: translateY(-3px);
}

.trust-seals {
  display: flex;
  gap: 15px;
}

.seal {
  text-align: center;
}

.seal img {
  border-radius: 8px;
  margin-bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.seal span {
  font-size: 0.7rem;
  color: #b3d9ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #b3d9ff;
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}
footer a{
  color:white;
}

.legal-links a {
  color: #b3d9ff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #64b5f6;
}

/* Responsividade */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .trust-seals {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* HEADER BASE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.4); /* escuro transparente */
  transition: background 0.3s, backdrop-filter 0.3s;
}

/* EFEITO QUANDO ROLA */
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

/* LOGO */

.logo-subtitle {
  display:none;
  font-size: 10px;
  color: #fff; /* branco */
  margin-top: 4px;
}

/* NAV MENU */
.nav-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff; /* branco */
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #57a7f2;
}

/* CTA BUTTON */
.button-demo .btn-neon {
  background: #57a7f2;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.button-demo .btn-neon:hover {
  background: #3a8ed9;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff; /* branco */
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 220px;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 18px;
  }
  .button-demo {
    display: none; /* se quiser, posso mover CTA pra dentro do menu */
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu.active {
    right: 0;
  }
}

