/* ===== VARIÁVEIS E RESET ===== */
:root {
  --cor-primaria: #0B2C4D;
  --cor-secundaria: #2E7D32;
  --cor-destaque: #1b5e20;
  --cor-verde-claro: #4CAF50;
  --cor-ouro: #D4AF37;
  --cor-fundo: #f8fafc;
  --cor-texto: #333;
  --cor-texto-claro: #666;
  --cor-branco: #ffffff;
  --cor-cinza: #f5f5f5;
  --sombra: 0 10px 30px rgba(0, 0, 0, 0.1);
  --sombra-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
  --transicao: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 18px;
  transition: var(--transicao);
}

.logo-area:hover {
  transform: scale(1.05);
}

.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.2));
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--cor-primaria);
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: 500;
  transition: var(--transicao);
  position: relative;
  font-size: 15px;
}

.nav a:hover {
  color: var(--cor-secundaria);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-verde-claro));
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transicao);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-verde-claro));
  color: var(--cor-branco);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.4);
}

.btn-destaque {
  background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-destaque));
  color: var(--cor-branco);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.35);
}

.btn-destaque:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.5);
}

.btn-pulse {
  animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 10px 25px rgba(46, 125, 50, 0.35); }
  50% { box-shadow: 0 10px 40px rgba(46, 125, 50, 0.6); }
}

.btn-secundario {
  background: transparent;
  color: var(--cor-primaria);
  border: 2px solid var(--cor-primaria);
}

.btn-secundario:hover {
  background: var(--cor-primaria);
  color: var(--cor-branco);
  transform: translateY(-3px);
}

.btn-plano {
  background: var(--cor-primaria);
  color: var(--cor-branco);
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 6px 15px rgba(11, 44, 77, 0.2);
}

.btn-plano:hover {
  background: var(--cor-secundaria);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.btn-grande {
  padding: 16px 40px;
  font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #1a4d7a 100%);
  color: var(--cor-branco);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(46, 125, 50, 0.4);
  top: -100px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(76, 175, 80, 0.3);
  bottom: -50px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: rgba(212, 175, 55, 0.2);
  top: 50%;
  right: 10%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(30px) translateX(20px); }
}

.grid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-hero {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--cor-ouro);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: slideInDown 0.8s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
  animation: slideInDown 0.8s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cor-verde-claro), var(--cor-ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.8;
  animation: slideInDown 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInDown 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  animation: slideInUp 0.8s ease 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--cor-ouro);
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease 0.2s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cor-branco);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transicao);
}

.floating-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-1 {
  top: 20px;
  left: -30px;
  animation: float-card-1 4s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  right: -40px;
  animation: float-card-2 5s ease-in-out infinite;
}

.card-3 {
  bottom: 30px;
  left: 10px;
  animation: float-card-3 6s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float-card-3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(15px); }
}

.circle-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
  width: 300px;
  height: 300px;
  animation: rotate 20s linear infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation: rotate-reverse 15s linear infinite;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 100px;
  background: var(--cor-verde-claro);
  border: none;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ===== SEÇÃO HEADER COMUM ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-verde-claro));
  margin: 0 auto 20px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 60px; }
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--cor-primaria);
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header p {
  font-size: 18px;
  color: var(--cor-texto-claro);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.1s both;
}

/* ===== SEÇÃO SOBRE ===== */
.sobre {
  padding: 80px 20px;
  background: var(--cor-branco);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: linear-gradient(135deg, var(--cor-cinza) 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transicao);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-verde-claro));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transicao);
}

.card:hover .card-glow {
  top: -30%;
  right: -30%;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2);
  border-color: rgba(46, 125, 50, 0.1);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: var(--transicao);
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(10deg);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--cor-primaria);
  font-weight: 700;
}

.card p {
  color: var(--cor-texto-claro);
  line-height: 1.7;
  font-size: 15px;
}

.card-arrow {
  font-size: 24px;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transicao);
}

.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.beneficios {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
  position: relative;
  overflow: hidden;
}

.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.05;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--cor-secundaria);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--cor-primaria);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  animation: float 20s ease-in-out infinite reverse;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.beneficio-item {
  background: var(--cor-branco);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transicao);
  border-left: 5px solid var(--cor-secundaria);
  position: relative;
  overflow: hidden;
}

.beneficio-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transicao);
}

.beneficio-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(46, 125, 50, 0.2);
}

.beneficio-item:hover::after {
  width: 150px;
  height: 150px;
}

.numero-grande {
  font-size: 72px;
  font-weight: 900;
  color: rgba(46, 125, 50, 0.08);
  margin-bottom: -10px;
  line-height: 1;
}

.beneficio-icon {
  font-size: 42px;
  margin-bottom: 15px;
  transition: var(--transicao);
}

.beneficio-item:hover .beneficio-icon {
  transform: scale(1.2) rotate(-10deg);
}

.beneficio-item h3 {
  font-size: 22px;
  color: var(--cor-primaria);
  margin-bottom: 15px;
  font-weight: 700;
}

.beneficio-item p {
  color: var(--cor-texto-claro);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 15px;
}

.beneficio-list {
  list-style: none;
}

.beneficio-list li {
  padding: 10px 0;
  color: var(--cor-texto);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transicao);
}

.beneficio-list li:hover {
  transform: translateX(5px);
  color: var(--cor-secundaria);
}

.beneficio-list li::before {
  content: '✓ ';
  color: var(--cor-secundaria);
  font-weight: bold;
  margin-right: 8px;
}

/* ===== SEÇÃO TESTEMUNHOS ===== */
.testemunhos {
  padding: 80px 20px;
  background: var(--cor-branco);
}

.testemunhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testemunho-card {
  background: linear-gradient(135deg, var(--cor-cinza) 0%, #ffffff 100%);
  padding: 35px;
  border-radius: 15px;
  transition: var(--transicao);
  border-top: 4px solid var(--cor-ouro);
  position: relative;
  overflow: hidden;
}

.testemunho-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.testemunho-card:hover::before {
  opacity: 1;
}

.testemunho-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.testemunho-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.stars {
  font-size: 18px;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.quote-icon {
  font-size: 48px;
  color: var(--cor-ouro);
  opacity: 0.3;
  line-height: 1;
}

.testemunho-texto {
  font-size: 16px;
  color: var(--cor-texto);
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testemunho-autor {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.autor-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-verde-claro));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-branco);
  font-weight: 700;
  font-size: 14px;
}

.testemunho-autor strong {
  color: var(--cor-primaria);
  font-size: 16px;
  display: block;
}

.testemunho-autor span {
  color: var(--cor-texto-claro);
  font-size: 14px;
  display: block;
}

/* ===== SEÇÃO ANTES/DEPOIS ===== */
.antes-depois {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #1a4d7a 100%);
  color: var(--cor-branco);
}

.antes-depois h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.comparacao-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.coluna {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transicao);
}

.coluna:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.coluna h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 700;
}

.coluna ul {
  list-style: none;
}

.coluna li {
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transicao);
}

.coluna li:hover {
  transform: translateX(5px);
  color: var(--cor-ouro);
}

.coluna li:last-child {
  border-bottom: none;
}

.seta-container {
  display: flex;
  justify-content: center;
}

.seta {
  font-size: 48px;
  animation: seta-animation 2s ease-in-out infinite;
}

@keyframes seta-animation {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(10px) scale(1.1); }
}

/* ===== SEÇÃO PLANOS ===== */
.planos {
  padding: 80px 20px;
  background: var(--cor-branco);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.plano-card {
  background: linear-gradient(135deg, var(--cor-cinza) 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  transition: var(--transicao);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.plano-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transicao);
}

.plano-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(46, 125, 50, 0.2);
}

.plano-card:hover::before {
  top: -20%;
  right: -20%;
}

.plano-card.destaque {
  background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-destaque) 100%);
  color: var(--cor-branco);
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
}

.plano-card.destaque:hover {
  transform: scale(1.08) translateY(-15px);
  box-shadow: 0 30px 60px rgba(46, 125, 50, 0.4);
}

.plano-badge {
  display: inline-block;
  background: var(--cor-primaria);
  color: var(--cor-branco);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInDown 0.8s ease;
}

.plano-card.destaque .plano-badge {
  background: var(--cor-ouro);
  color: var(--cor-primaria);
}

.badge-popular {
  background: var(--cor-ouro);
  color: var(--cor-primaria);
}

.plano-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--cor-primaria);
  font-weight: 700;
}

.plano-card.destaque h3 {
  color: var(--cor-branco);
}

.preco {
  font-size: 42px;
  font-weight: 900;
  color: var(--cor-secundaria);
  margin-bottom: 5px;
}

.plano-card.destaque .preco {
  color: var(--cor-ouro);
}

.preco-desc {
  font-size: 14px;
  color: var(--cor-texto-claro);
  margin-bottom: 25px;
}

.plano-card.destaque .preco-desc {
  color: rgba(255, 255, 255, 0.8);
}

.plano-features {
  list-style: none;
  margin-bottom: 30px;
}

.plano-features li {
  padding: 12px 0;
  color: var(--cor-texto);
  border-bottom: 1px solid #ddd;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transicao);
}

.plano-features li:hover {
  transform: translateX(5px);
  color: var(--cor-secundaria);
}

.plano-card.destaque .plano-features li {
  color: var(--cor-branco);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.plano-features li:last-child {
  border-bottom: none;
}

/* ===== SEÇÃO GARANTIA ===== */
.garantia {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--cor-verde-claro) 0%, var(--cor-secundaria) 100%);
  color: var(--cor-branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.garantia::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.garantia::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.garantia-content {
  position: relative;
  z-index: 1;
}

.garantia-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.garantia-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}

.garantia-content p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.garantia-destaque {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

/* ===== CTA PRINCIPAL ===== */
.cta-principal {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #1a4d7a 100%);
  color: var(--cor-branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--cor-verde-claro);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--cor-ouro);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.cta-principal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: slideInDown 0.8s ease;
}

.cta-principal p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== SEÇÃO FAQ ===== */
.faq {
  padding: 80px 20px;
  background: var(--cor-branco);
}

.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--cor-primaria);
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, var(--cor-cinza) 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transicao);
  border-left: 4px solid var(--cor-secundaria);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transicao);
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
  transform: translateX(8px);
}

.faq-item:hover::before {
  width: 120px;
  height: 120px;
}

.faq-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  animation: slideInDown 0.8s ease;
}

.faq-item h4 {
  color: var(--cor-primaria);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.faq-item p {
  color: var(--cor-texto-claro);
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--cor-verde-claro), var(--cor-secundaria));
  color: var(--cor-branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.footer-cta p {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.footer-cta .btn {
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: var(--cor-primaria);
  color: var(--cor-branco);
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--cor-verde-claro);
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transicao);
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--cor-verde-claro);
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #20BA5C);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  transition: var(--transicao);
  z-index: 50;
  animation: bounce 2s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
  font-size: 28px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 48px;
  }

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

  .seta {
    transform: rotate(90deg);
  }

  .plano-card.destaque {
    transform: scale(1);
  }

  .plano-card.destaque:hover {
    transform: translateY(-15px);
  }

  .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero {
    padding: 80px 20px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .cta-principal h2 {
    font-size: 32px;
  }

  .circle-animation {
    width: 200px;
    height: 200px;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
  }

  .circle-2 {
    width: 130px;
    height: 130px;
    top: 35px;
    left: 35px;
  }

  .circle-3 {
    width: 60px;
    height: 60px;
    top: 70px;
    left: 70px;
  }

  .cards-grid,
  .beneficios-grid,
  .testemunhos-grid,
  .faq-grid,
  .planos-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-grande {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    font-size: 24px;
  }

  .floating-card {
    position: static;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .cta-principal h2 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .numero-grande {
    font-size: 48px;
  }

  .preco {
    font-size: 32px;
  }

  .footer-content {
    gap: 20px;
  }

  .badge-hero {
    font-size: 12px;
    padding: 8px 16px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 12px;
  }
}
