/* ========================================
   EJA ONLINE — INSTITUTIONAL DESIGN SYSTEM
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Brazil Flag Colors */
  --green-dark: #006B2D;
  --green: #009739;
  --green-light: #00A843;
  --green-pale: #e8f5e9;
  --yellow: #FFDF00;
  --yellow-dark: #E5C800;
  --yellow-light: #FFF176;
  --blue-dark: #001D5E;
  --blue: #002776;
  --blue-light: #1A3A8A;
  --blue-pale: #e3eaf7;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #FAFBFC;
  --gray-100: #F5F7FA;
  --gray-200: #E8ECF1;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --dark: #0d1b2a;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  --gradient-hero-alt: linear-gradient(135deg, var(--blue-dark) 0%, var(--green-dark) 100%);
  --gradient-yellow: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  --gradient-tech: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0a2540 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-green: 0 4px 20px rgba(0, 151, 57, 0.3);
  --shadow-blue: 0 4px 20px rgba(0, 39, 118, 0.3);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Government Top Bar ---- */
.gov-bar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.75rem;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.gov-bar span {
  opacity: 0.85;
}

.gov-bar .brasil-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  background: var(--green);
  border-radius: 2px;
  position: relative;
}

/* ---- Header / Navbar ---- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--green);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-dark);
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-hero);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--shadow-green);
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--border-radius-full);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
  background: var(--green-pale);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 151, 57, 0.4);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--gray-900);
  box-shadow: 0 4px 15px rgba(255, 223, 0, 0.3);
}

.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero Section ---- */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 100px;
}

.hero-content {
  flex: 1;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-features li .icon-check {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gray-900);
  flex-shrink: 0;
}

.hero-image {
  flex: 0 0 420px;
  position: relative;
}

.hero-image-wrapper {
  width: 400px;
  height: 550px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 200px 200px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.hero-image-wrapper img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img.hero-img-3d {
  width: 380px;
  height: auto;
  max-height: 550px;
  border-radius: 0;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  bottom: 0;
  z-index: 1;
  filter: drop-shadow(0 -10px 25px rgba(0, 0, 0, 0.3));
}

/* Floating stats around hero image */
.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.hero-stat:nth-child(2) {
  top: 160px;
  right: -20px;
  animation-delay: 0.5s;
}

.hero-stat:nth-child(3) {
  bottom: 100px;
  left: -30px;
  animation-delay: 1s;
}

.hero-stat:nth-child(4) {
  bottom: 30px;
  right: 10px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-stat-icon.green {
  background: var(--green-pale);
  color: var(--green);
}

.hero-stat-icon.yellow {
  background: #FFF9C4;
  color: #F57F17;
}

.hero-stat-icon.blue {
  background: var(--blue-pale);
  color: var(--blue);
}

.hero-stat-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hero-stat-text span {
  display: block;
  color: var(--gray-500);
  font-weight: 400;
  font-size: 0.65rem;
}

/* ---- Section Base ---- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-100);
}

.section-green {
  background: var(--gradient-hero);
  color: var(--white);
}

.section-dark {
  background: var(--gradient-tech);
  color: var(--white);
}

.section-yellow-strip {
  position: relative;
}

.section-yellow-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-yellow);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-label.white {
  color: var(--yellow);
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-green .section-header h2,
.section-dark .section-header h2 {
  color: var(--white);
}

.section-green .section-header p,
.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon.green {
  background: var(--green-pale);
  color: var(--green);
}

.feature-icon.yellow {
  background: #FFF9C4;
  color: #F57F17;
}

.feature-icon.blue {
  background: var(--blue-pale);
  color: var(--blue);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---- Checklist ---- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}

.checklist li .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  margin-top: 2px;
}

.checklist.white li {
  color: rgba(255, 255, 255, 0.9);
}

.checklist.white li .check {
  background: var(--yellow);
  color: var(--gray-900);
}

/* ---- Split Section ---- */
.split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-content {
  flex: 1;
}

.split-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split-content p {
  color: var(--gray-500);
  font-size: 1.02rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ---- Illustration Cards / Visual Blocks ---- */
.visual-block {
  width: 100%;
  max-width: 460px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.visual-block img {
  width: 100%;
  height: auto;
}

.visual-block-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
}

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ---- Price Card ---- */
.price-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  border: 2px solid var(--green-pale);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-hero);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.price-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 6px 20px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.price-installments {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-main {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.price-main small {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-500);
}

.price-value small {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-500);
}

.price-info {
  color: var(--gray-500);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.payment-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.payment-methods li .icon {
  color: var(--green);
  font-size: 1rem;
}

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--green-pale);
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--green);
}

.faq-question .arrow {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.8rem;
  color: var(--gray-500);
}

.faq-item.active .faq-question .arrow {
  background: var(--green);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Form Styles (Tech Look) ---- */
.form-section {
  background: var(--gradient-tech);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 151, 57, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 39, 118, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid lines effect */
.form-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  backdrop-filter: blur(20px);
}

.form-card h2 {
  color: var(--white);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  transition: var(--transition);
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 151, 57, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--dark);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 30px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.form-submit .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.form-submit .btn:active::after {
  width: 300px;
  height: 300px;
}

.form-lgpd {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-lgpd .lock-icon {
  color: var(--green-light);
  font-size: 1.1rem;
  margin-top: 2px;
}

.form-lgpd p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 223, 0, 0.1) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---- LGPD Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.5s ease;
  border-top: 3px solid var(--green);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner p a {
  color: var(--green-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.cookie-btn-accept {
  background: var(--green);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--green-dark);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--gray-900);
  padding: 10px 16px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Guarantee Section ---- */
.guarantee-box {
  background: var(--green-pale);
  border: 2px solid var(--green);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.guarantee-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.guarantee-box p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* ---- Documents List ---- */
.doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 30px auto 0;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.doc-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.doc-item .doc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.doc-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
    flex: none;
  }

  .hero-image-wrapper {
    width: 280px;
    height: 380px;
    border-radius: 0 0 140px 140px;
  }

  .hero-image-wrapper::before {
    width: 280px;
    height: 280px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-image-wrapper img {
    width: 220px;
    height: 220px;
  }

  .hero-image-wrapper img.hero-img-3d {
    width: 270px;
    max-height: 370px;
  }

  .hero-features {
    align-items: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    margin: 0 auto 28px;
  }

  .split {
    flex-direction: column;
    text-align: center;
  }

  .split .checklist {
    text-align: left;
  }

  .split.reverse {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    gap: 4px;
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .nav a.active::after {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-stat {
    display: none;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 30px 24px;
  }

  .price-card {
    padding: 36px 24px;
  }

  .price-value {
    font-size: 2.8rem;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .doc-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-image-wrapper {
    width: 220px;
    height: 300px;
    border-radius: 0 0 110px 110px;
  }

  .hero-image-wrapper::before {
    width: 220px;
    height: 220px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-image-wrapper img {
    width: 170px;
    height: 170px;
  }

  .hero-image-wrapper img.hero-img-3d {
    width: 210px;
    max-height: 290px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}