/* ============================================================
   SIMULADOR DE CONSÓRCIO MF CORRETORA
   Identidade Visual: Branco + Cinza (#2d3436) + Amarelo (#F5A623)
   Design: "Golden Horizon" - Editorial Financeiro Premium
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cor-cinza: #2d3436;
  --cor-cinza-claro: #636e72;
  --cor-cinza-escuro: #1e2527;
  --cor-amarelo: #F5A623;
  --cor-amarelo-hover: #d4941f;
  --cor-amarelo-claro: #fef3cd;
  --cor-branco: #ffffff;
  --cor-branco-off: #f8f9fa;
  --cor-sucesso: #25D366;
  --cor-erro: #e74c3c;
  --cor-info: #3498db;
  --sombra-leve: 0 2px 8px rgba(0,0,0,0.08);
  --sombra-media: 0 4px 16px rgba(0,0,0,0.12);
  --sombra-forte: 0 8px 32px rgba(0,0,0,0.18);
  --raio-borda: 8px;
  --raio-borda-lg: 12px;
  --raio-borda-xl: 16px;
  --transicao: all 0.3s ease;
  --fonte-display: 'Cormorant Garamond', Georgia, serif;
  --fonte-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fonte-body);
  background-color: var(--cor-cinza);
  color: var(--cor-branco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transicao);
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transicao);
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* === TIPOGRAFIA === */
.font-display {
  font-family: var(--fonte-display);
}

.font-body {
  font-family: var(--fonte-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-display);
  font-weight: 700;
  line-height: 1.1;
}

/* === HEADER / NAVBAR === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(45, 52, 54, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  height: 64px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .header {
    height: 80px;
  }
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--raio-borda);
  background: linear-gradient(135deg, var(--cor-amarelo), var(--cor-amarelo-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cor-cinza);
  font-size: 1.1rem;
  font-family: var(--fonte-display);
}

@media (min-width: 768px) {
  .header-logo-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

.header-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .header-logo-text {
    display: block;
  }
}

.header-logo-text p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
}

.header-logo-text p:last-child {
  font-size: 0.625rem;
  color: rgba(245, 166, 35, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-nav {
    gap: 1.5rem;
  }
}

.header-nav a.nav-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: none;
}

@media (min-width: 768px) {
  .header-nav a.nav-link {
    display: block;
    font-size: 0.875rem;
  }
}

.header-nav a.nav-link:hover {
  color: var(--cor-amarelo);
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-sucesso);
  color: var(--cor-branco);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--raio-borda);
}

@media (min-width: 768px) {
  .btn-whatsapp-nav {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.btn-whatsapp-nav:hover {
  background: #20bd5a;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cor-cinza), rgba(45,52,54,0.85), rgba(45,52,54,0.4));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--cor-cinza), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.hero-subtitle {
  color: var(--cor-amarelo);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

.hero-title .highlight {
  color: var(--cor-amarelo);
  font-style: italic;
}

.hero-description {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 28rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
  }
}

.hero-stats .stat-value {
  font-family: var(--fonte-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-amarelo);
}

@media (min-width: 768px) {
  .hero-stats .stat-value {
    font-size: 2rem;
  }
}

.hero-stats .stat-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--raio-borda);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transicao);
  text-align: center;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background: var(--cor-amarelo);
  color: var(--cor-cinza);
}

.btn-primary:hover {
  background: var(--cor-amarelo-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cor-branco);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--cor-amarelo);
  color: var(--cor-amarelo);
}

.btn-whatsapp {
  background: var(--cor-sucesso);
  color: var(--cor-branco);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
  }
}

/* === SEÇÕES === */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* === DIVIDER === */
.golden-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .golden-divider {
    margin: 4rem 0;
  }
}

.golden-divider::before,
.golden-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,0.3), transparent);
}

.golden-divider .divider-icon {
  color: rgba(245,166,35,0.5);
  font-size: 1rem;
}

/* === CARDS === */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--raio-borda-lg);
  padding: 1.5rem;
  transition: var(--transicao);
}

.card:hover {
  border-color: rgba(245,166,35,0.2);
  background: rgba(255,255,255,0.05);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--raio-borda);
  background: rgba(245,166,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-amarelo);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-title {
  font-family: var(--fonte-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === GRID === */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

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

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

/* === SIMULADOR === */
.simulador-section {
  background: linear-gradient(180deg, var(--cor-cinza) 0%, var(--cor-cinza-escuro) 100%);
}

.simulador-container {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--raio-borda-xl);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .simulador-container {
    padding: 3rem;
  }
}

/* Segmento Toggle */
.segmento-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: var(--raio-borda);
  padding: 4px;
  margin-bottom: 2rem;
}

.segmento-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.segmento-btn.active {
  background: var(--cor-amarelo);
  color: var(--cor-cinza);
  box-shadow: var(--sombra-leve);
}

.segmento-btn:hover:not(.active) {
  color: var(--cor-branco);
}

/* Slider/Range */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.form-label .value {
  font-weight: 600;
  color: var(--cor-amarelo);
  font-size: 1.125rem;
}

.form-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cor-amarelo);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(245,166,35,0.4);
}

.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cor-amarelo);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(245,166,35,0.4);
}

/* Prazo buttons */
.prazo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
}

.prazo-btn {
  padding: 0.625rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.prazo-btn.active {
  background: rgba(245,166,35,0.15);
  border-color: var(--cor-amarelo);
  color: var(--cor-amarelo);
}

.prazo-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.3);
  color: var(--cor-branco);
}

/* Resultado da simulação */
.resultado-simulacao {
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--raio-borda-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  animation: fadeIn 0.5s ease;
}

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

.resultado-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.resultado-header h3 {
  font-size: 1.25rem;
  color: var(--cor-amarelo);
}

.resultado-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.resultado-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}

.resultado-item .valor {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cor-branco);
}

.resultado-item .valor.destaque {
  color: var(--cor-amarelo);
  font-size: 1.5rem;
}

/* Comparativo */
.comparativo {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--raio-borda-lg);
}

.comparativo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.comparativo-table {
  width: 100%;
  border-collapse: collapse;
}

.comparativo-table th,
.comparativo-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparativo-table th {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparativo-table .consorcio-col {
  color: var(--cor-amarelo);
  font-weight: 600;
}

.comparativo-table .financiamento-col {
  color: rgba(255,255,255,0.6);
}

.economia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(37, 211, 102, 0.1);
  color: var(--cor-sucesso);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* === CARTAS CONTEMPLADAS === */
.cartas-section {
  background: var(--cor-cinza-escuro);
}

.filtros-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--raio-borda-lg);
}

.filtro-select,
.filtro-input {
  padding: 0.625rem 1rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cor-branco);
  font-size: 0.875rem;
  font-family: var(--fonte-body);
  min-width: 150px;
}

.filtro-select:focus,
.filtro-input:focus {
  outline: none;
  border-color: var(--cor-amarelo);
}

.filtro-select option {
  background: var(--cor-cinza);
  color: var(--cor-branco);
}

/* Tabela de cartas */
.cartas-table-wrapper {
  overflow-x: auto;
  border-radius: var(--raio-borda-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.cartas-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.cartas-table thead {
  background: rgba(245,166,35,0.08);
}

.cartas-table th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cor-amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cartas-table td {
  padding: 0.875rem 0.75rem;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
}

.cartas-table tbody tr:hover {
  background: rgba(245,166,35,0.03);
}

.badge-segmento {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-imovel {
  background: rgba(245,166,35,0.15);
  color: var(--cor-amarelo);
}

.badge-veiculo {
  background: rgba(52,152,219,0.15);
  color: var(--cor-info);
}

/* Paginação */
.paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.paginacao-btn {
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.paginacao-btn.active {
  background: var(--cor-amarelo);
  border-color: var(--cor-amarelo);
  color: var(--cor-cinza);
  font-weight: 600;
}

.paginacao-btn:hover:not(.active):not(:disabled) {
  border-color: var(--cor-amarelo);
  color: var(--cor-amarelo);
}

.paginacao-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* === FORMULÁRIO DE LEADS === */
.lead-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--raio-borda-xl);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lead-form {
    padding: 3rem;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--raio-borda);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cor-branco);
  font-size: 0.9rem;
  font-family: var(--fonte-body);
  margin-bottom: 1rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cor-amarelo);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* === PROGRAMA DE INDICAÇÃO === */
.indicacao-section {
  background: linear-gradient(135deg, rgba(245,166,35,0.05), rgba(245,166,35,0.02));
}

.indicacao-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--raio-borda-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.indicacao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cor-amarelo), var(--cor-amarelo-hover));
}

.indicacao-faixa {
  font-family: var(--fonte-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cor-amarelo);
  margin-bottom: 0.5rem;
}

.indicacao-descricao {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* === COMO FUNCIONA === */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-container {
    gap: 0;
  }
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

@media (min-width: 768px) {
  .step {
    padding-bottom: 3rem;
  }
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 2px solid var(--cor-amarelo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cor-amarelo);
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
}

.step-content h4 {
  font-family: var(--fonte-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  background: var(--cor-cinza-escuro);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cor-amarelo);
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cor-sucesso);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-yellow { color: var(--cor-amarelo); }
.text-muted { color: rgba(255,255,255,0.6); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }

/* === MENSAGENS DE FEEDBACK === */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--raio-borda);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.alert-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--cor-sucesso);
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--cor-erro);
}

.alert-info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.3);
  color: var(--cor-info);
}

/* === LOADING SPINNER === */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(245,166,35,0.2);
  border-top-color: var(--cor-amarelo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 998;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45,52,54,0.9);
  border: 1px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-amarelo);
  opacity: 0;
  visibility: hidden;
  transition: var(--transicao);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--cor-amarelo);
  color: var(--cor-cinza);
}
