/*
================================================================
  PRI.ON ASSESSORIA SAÚDE - LANDING PAGE STYLESHEET (PREMIUM)
================================================================
*/

/* Import Typography from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Design Tokens - Colors */
  --primary: #0a2540;            /* Azul institucional profundo */
  --primary-rgb: 10, 37, 64;
  --primary-light: #1e3a5f;      /* Azul intermediário */
  --accent: #10b981;             /* Verde destaque (Esmeralda) */
  --accent-rgb: 16, 185, 129;
  --accent-hover: #059669;       /* Verde hover */
  
  --bg-pure: #ffffff;            /* Branco puro */
  --bg-slate: #f8fafc;           /* Cinza azulado muito claro */
  --bg-card: #ffffff;
  
  --text-main: #0f172a;          /* Slate 900 */
  --text-muted: #475569;         /* Slate 600 */
  --text-light: #94a3b8;         /* Slate 400 */
  --text-white: #ffffff;
  
  --border-light: #f1f5f9;       /* Slate 100 */
  --border-medium: #e2e8f0;      /* Slate 200 */
  
  /* Fonts */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout & Animations */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(10, 37, 64, 0.12);
  --shadow-accent: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
  
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-pure);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-center { text-align: center; }

/* Grid / Flex Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-header span {
  display: inline-block;
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-header h2 { font-size: 30px; }
  .section-header p { font-size: 16px; }
}

/* BUTTON SYSTEM: BREATHING ANIMATION */
@keyframes breathing {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--accent);
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  animation: breathing 3s infinite ease-in-out;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-whatsapp:hover {
  animation: none; /* Pause normal breathing on hover */
  transform: translateY(-4px) scale(1.03);
  background-color: var(--accent-hover);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
  filter: brightness(1.05);
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(1.01);
}

/* Secondary Button outline style */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--border-medium);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--bg-slate);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
  animation: breathing 3s infinite ease-in-out;
  transition: var(--transition-smooth);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1) translateY(-4px);
  background-color: var(--accent-hover);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.6);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: var(--transition-smooth);
}

.header.scrolled .header-container {
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  width: 64px;
  height: 64px;
}

.nav-cta .btn-whatsapp {
  padding: 10px 24px;
  font-size: 14px;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.04) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 20% 50%, rgba(10, 37, 64, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  overflow: hidden;
}

/* Background elements modeled after the 'Power' symbol (curves, circles) */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.08);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(10, 37, 64, 0.04);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--accent-hover);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.15;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Hero Image & Layout */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background gradient ring that floats behind illustration */
.visual-bg-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(10,37,64,0.15));
  animation: floatIllustration 6s ease-in-out infinite;
}

@keyframes floatIllustration {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-indicators {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* BRAND LOGOS BAR (OPERADORAS) - SLIDING CAROUSEL */
.brand-strip {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}

/* Blur overlay shadows on the sides to give a premium fade effect */
.brand-strip::before,
.brand-strip::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.brand-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-slate) 0%, rgba(248, 250, 252, 0) 100%);
}
.brand-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-slate) 0%, rgba(248, 250, 252, 0) 100%);
}

.brand-strip-title {
  text-align: center;
  font-size: 13px;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.brand-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.brand-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollCarousel 30s linear infinite;
}

/* Pause carousel on hover for better user experience */
.brand-carousel-track:hover {
  animation-play-state: paused;
}

.brand-carousel-group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.brand-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

/* Default dimensions rule for all logos */
.brand-logo-item svg,
.brand-logo-item img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* OPTICAL DIMENSIONS NORMALIZATION (To fix Bradesco being too small and achieve harmony) */
.brand-logo-item[aria-label="Bradesco Saúde"] img { height: 38px; } /* Increased to balance */
.brand-logo-item[aria-label="Unimed"] img          { height: 35px; }
.brand-logo-item[aria-label="Amil"] img            { height: 34px; }
.brand-logo-item[aria-label="MedSênior"] img       { height: 33px; }
.brand-logo-item[aria-label="SulAmérica"] img      { height: 26px; }
.brand-logo-item[aria-label="Porto"] svg           { height: 24px; }
.brand-logo-item[aria-label="Hapvida"] img         { height: 24px; }

/* Carousel scroll animation keyframes */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-strip::before,
  .brand-strip::after {
    width: 60px; /* Reduce fade width on mobile */
  }
  .brand-carousel-group {
    gap: 40px;
    padding-right: 40px;
  }
  .brand-logo-item[aria-label="Bradesco Saúde"] img { height: 32px; }
  .brand-logo-item[aria-label="Unimed"] img          { height: 29px; }
  .brand-logo-item[aria-label="Amil"] img            { height: 28px; }
  .brand-logo-item[aria-label="MedSênior"] img       { height: 27px; }
  .brand-logo-item[aria-label="SulAmérica"] img      { height: 22px; }
  .brand-logo-item[aria-label="Porto"] svg           { height: 20px; }
  .brand-logo-item[aria-label="Hapvida"] img         { height: 20px; }
}

/* "EMPRESAS QUE ATENDEMOS" SECTION */
.audience-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 37, 64, 0.15);
}

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(10, 37, 64, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.audience-card:hover .audience-icon {
  background-color: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
  transform: scale(1.05);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
}

.audience-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.audience-card .badge-size {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--bg-slate);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.audience-features {
  list-style: none;
  margin-bottom: 24px;
}

.audience-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.audience-features li svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* "POR QUE ESCOLHER A PRI.ON" (DIFFERENTIATORS) */
.why-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf5fd 100%);
  position: relative;
  overflow: hidden;
}

.feature-item {
  display: flex;
  gap: 24px;
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 37, 64, 0.15);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(10, 37, 64, 0.05);
  color: var(--primary);
  border: 1px solid rgba(10, 37, 64, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* "COMO FUNCIONA NOSSA CONSULTORIA" */
.steps-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Vertical Line */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  height: 100%;
  width: 2px;
  background-color: var(--border-medium);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(10, 37, 64, 0.03);
  border: 2px solid rgba(10, 37, 64, 0.08);
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}

.step-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  flex-grow: 1;
}

.step-card:hover .step-content {
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .steps-wrapper::before {
    left: 20px;
  }
  .step-card {
    gap: 16px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .step-content {
    padding: 20px;
  }
}

/* "JÁ POSSUI PLANO?" SECTION */
.switch-section {
  position: relative;
  background-color: var(--primary);
  color: var(--text-white);
  overflow: hidden;
  padding: 100px 0;
}

.switch-section h2 {
  color: var(--text-white);
}

.switch-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.switch-grid-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.switch-lead-text {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.5;
}

.switch-checklist {
  list-style: none;
  margin-bottom: 40px;
}

.switch-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
}

.switch-checklist li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

.switch-checklist li strong {
  display: block;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 2px;
}

.switch-checklist li span {
  color: #94a3b8; /* Slate-400 */
}

/* Card Visual "Simulador/Análise" */
.switch-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
  position: relative;
}

.switch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.switch-card-header {
  margin-bottom: 28px;
}

.switch-card-header h3 {
  color: var(--text-white);
  font-size: 24px;
  margin-bottom: 8px;
}

.switch-card-header p {
  color: #94a3b8;
  font-size: 14px;
}

.comparison-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row.highlighted {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.comp-label {
  font-size: 14px;
  color: #cbd5e1;
}

.comp-value {
  font-weight: 700;
  font-size: 16px;
}

.comp-value.red { color: #f43f5e; }
.comp-value.green { color: var(--accent); }

@media (max-width: 768px) {
  .switch-section {
    padding: 60px 0;
  }
  .switch-card {
    padding: 24px;
  }
}

/* "DEPOIMENTOS" CAROUSEL SECTION */
.testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf5fd 100%);
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px;
}

/* Google style review card */
.google-review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-details h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.reviewer-details span {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.google-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
}

.review-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24; /* Star Yellow */
  margin-bottom: 16px;
}

.review-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background-color: var(--bg-pure);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-medium);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .google-review-card {
    padding: 24px;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* "FAQ" SECTION */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-medium);
  padding: 16px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-medium);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  outline: none;
}

.faq-trigger h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-smooth);
  padding-right: 24px;
}

.faq-icon-box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(10, 37, 64, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-trigger:hover h3 {
  color: var(--accent);
}

.faq-trigger:hover .faq-icon-box {
  background-color: var(--accent);
  color: var(--text-white);
}

.faq-icon-box svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  padding-top: 8px;
  padding-bottom: 16px;
  font-size: 15px;
  color: var(--text-muted);
}

/* Active FAQ state */
.faq-item.active .faq-icon-box svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-trigger h3 {
  color: var(--accent);
}

/* FINAL CTA SECTION */
.final-cta {
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(circle at 90% 80%, rgba(10, 37, 64, 0.03) 0%, rgba(255,255,255,0) 60%);
  border-top: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 44px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .final-cta h2 { font-size: 32px; }
  .final-cta p { font-size: 16px; }
}

/* FOOTER */
.footer {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-pure);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-links-group h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 20px;
}

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

.footer-links-group ul li {
  margin-bottom: 12px;
}

.footer-links-group ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: var(--transition-smooth);
}

.footer-links-group ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #64748b; /* Gray-500 */
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #64748b;
  transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ANIMATION UTILITIES FOR SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* THANK YOU PAGE (TYP) STYLING */
.typ-body {
  background-color: var(--bg-slate);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.typ-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.typ-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}

.typ-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px auto;
  position: relative;
}

.typ-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.3);
  animation: pulseOut 2s infinite ease-out;
}

@keyframes pulseOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.typ-icon svg {
  width: 40px;
  height: 40px;
}

.typ-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.typ-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.typ-redirect-box {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.typ-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(10, 37, 64, 0.05);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 16px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.typ-redirect-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.typ-countdown {
  color: var(--accent-hover);
  font-weight: 700;
}

.typ-btn {
  width: 100%;
}
