/* DESIGN SYSTEM & RESET */
:root {
  /* Colors */
  --color-primary: #00C896;
  --color-primary-hover: #00B184;
  --color-teal: #0ABFBC;
  --color-bg: #0D1B2A;
  --color-bg-light: #15263a;
  --color-bg-lighter: #1d3148;
  --color-text-gray: #8DA8B8;
  --color-text-light: #F0F4F8;
  --color-accent: #B8FF6A;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

h1, h2, h3, h4, .logo-text, .stat-number {
  font-family: var(--font-display);
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.mt-10 { margin-top: 5rem; }

/* UTILITY CLASSES */
.badge {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background-color: rgba(0, 200, 150, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #0D1B2A;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 200, 150, 0.2);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--color-text-light);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: background-color 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--color-primary);
  font-weight: 500;
  margin-left: 2px;
}

.nav-links {
  display: none;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, rgba(13,27,42,0) 60%);
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,191,188,0.08) 0%, rgba(13,27,42,0) 60%);
  border-radius: 50%;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.125rem;
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--color-text-gray);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.trust-text {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-gray);
  margin-top: 0.5rem;
}

.trust-text i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-social-proof p {
  font-size: 0.875rem;
  color: var(--color-text-gray);
}
.hero-social-proof strong {
  color: var(--color-text-light);
}

.avatars {
  display: flex;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  background-color: var(--color-bg-light);
  background-size: cover;
  background-position: center;
  margin-left: -12px;
}
.avatar:first-child { margin-left: 0; background-image: url('https://images.unsplash.com/photo-1542385262-cea68ce37fb5?auto=format&fit=crop&q=80&w=100&h=100'); }
.avatar:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&q=80&w=100&h=100'); }
.avatar:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=100&h=100'); }

.avatar-count {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  background-color: var(--color-primary);
  color: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: -12px;
  z-index: 2;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.visual-placeholder {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-lighter));
  border-radius: 24px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  background-image: url('./Imagens/hero.webp');
  background-size: cover;
  background-position: center;
}



.glass-card {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 3;
}

.glass-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
}

.glass-card .stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-gray);
  font-weight: 500;
}

.glass-card .stat h3 {
  font-size: 1.75rem;
  margin: 0;
  color: var(--color-text-light);
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* SECTION HEADERS */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 4rem;
  color: var(--color-text-gray);
}

/* BENEFITS SECTION */
.benefits {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg);
}

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

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

.benefit-card {
  background-color: var(--color-bg-light);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 150, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), rgba(10, 191, 188, 0.05));
  border: 1px solid rgba(0, 200, 150, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* WHY US GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.why-us-content h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.why-us-content p {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  color: var(--color-text-gray);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 1.05rem;
}

.check-list i {
  color: var(--color-accent);
  font-size: 1.75rem;
}

.why-us-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0; /* IMPEDE A EXPANSÃO INFINITA DO GRID */
  overflow: hidden; /* Mantém o Swiper preso */
}

.why-us-image .image-box {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--color-bg-lighter);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Swiper Customizations */
.why-us-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.why-us-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}
.why-us-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-swiper .swiper-button-next,
.why-us-swiper .swiper-button-prev {
  color: var(--color-primary);
  background: rgba(13, 27, 42, 0.7);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: scale(0.8);
  border: 1px solid rgba(0, 200, 150, 0.3);
}
.why-us-swiper .swiper-button-next:after,
.why-us-swiper .swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}
.why-us-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.why-us-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

.why-us-image::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed rgba(0, 200, 150, 0.3);
  border-radius: 24px;
  z-index: -1;
}

/* AUTHORITY SECTION */
.authority {
  padding: 8rem 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.authority-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) {
  .authority-wrapper {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 6rem;
  }
}

.auth-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.auth-header p {
  color: var(--color-text-gray);
  font-size: 1.125rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.stat-label {
  font-weight: 500;
  color: var(--color-text-light);
  font-size: 1.125rem;
}

/* RESULTS SECTION */
.results {
  padding: var(--space-2xl) 0;
}

.results-layout {
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  background: var(--color-bg-light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 400px;
}

.before-img, .after-img {
  position: relative;
  background-size: cover;
  background-position: center;
}

.before-img, .after-img {
  display: none;
}

.text-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(13,27,42,0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}

.result-info {
  padding: 3rem;
  text-align: center;
}

.result-info h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.result-info p {
  color: var(--color-text-gray);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* CTA FINAL */
.cta-final {
  padding: 10rem 0;
  position: relative;
  background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.98), rgba(13,27,42,0.85));
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
}

.cta-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
  color: var(--color-text-light);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.cta-trust i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

/* FOOTER */
.site-footer {
  background-color: var(--color-bg-lighter);
  padding: 6rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.footer-brand p {
  margin: 1.5rem 0 2rem;
  max-width: 300px;
  color: var(--color-text-gray);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.05);
}

.social-links a:hover {
  background: var(--color-primary);
  color: #0D1B2A;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-family: var(--font-display);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-text-gray);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--color-text-gray);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact i {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
  background-color: var(--color-bg);
}

.flex-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-gray);
}

@media (min-width: 768px) {
  .flex-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.fade-left.visible {
  opacity: 1;
  transform: translate(0);
}

/* Base Responsive Typography */
@media (max-width: 768px) {
  .hero-title { letter-spacing: -0.5px; }
  .section-title { letter-spacing: -0.5px; }
  .glass-card { left: 0; bottom: 0; right: 0; border-radius: 0 0 24px 24px; padding: 1rem; }
  .result-images { height: auto; grid-template-columns: 1fr; }
  .before-img, .after-img { height: 250px; }
}
