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

:root {
  /* Tema Ultra-Dark - Zenith (Totalmente Preto) */
  --primary: #ffffff;
  --primary-dark: #cccccc;
  --primary-light: #ffffff;
  --secondary: #000000;
  --accent: #1a1a1a;

  /* Backgrounds - Tudo Preto */
  --background: #000000;
  --surface: #000000;
  --surface-light: #000000;
  --surface-card: #000000;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #555555;

  /* Borders & Effects - Sutis */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.95);
  --shadow-glow: rgba(255, 255, 255, 0.05);

  /* Geometric Accent - Branco puro */
  --geometric-gradient: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.brand-link:hover {
  transform: scale(1.05);
}

.brand-logo {
  height: 50px;
  width: auto;
  filter: brightness(1) contrast(1.1);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: brightness(1.1) contrast(1.2);
}

.brand h2 {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* BOTÕES */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--geometric-gradient);
  color: #000000;
  box-shadow: 0 4px 20px var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-card {
  width: 100%;
  margin-top: 32px;
  background: var(--geometric-gradient);
  color: #000000;
  box-shadow: 0 4px 20px var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-featured {
  background: var(--geometric-gradient);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-featured:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* SECTIONS */
.section {
  padding: 120px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 48px 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--geometric-gradient);
  opacity: 1;
  transition: all 0.5s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card:hover::before {
  height: 6px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.card:hover::after {
  opacity: 1;
}

.card-featured {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
}

.card-featured::before {
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.card-featured:hover {
  box-shadow: 0 35px 90px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.card-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.card-badge {
  padding: 8px 16px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover .card-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-badge-featured {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.card:hover .card-badge-featured {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.card-price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--geometric-gradient);
  transition: width 0.5s ease;
}

.card:hover .card-price::after {
  width: 100%;
}

.price-currency {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
  opacity: 0.9;
}

.price-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.etapas {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.etapas li {
  padding: 14px 0;
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.etapas li:hover {
  color: var(--text-primary);
  border-left-color: rgba(255, 255, 255, 0.3);
  padding-left: 8px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.etapas li:hover .check-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-featured .check-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}

/* PAYMENT ALERT */
.payment-alert {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.alert-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.payment-alert h3 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.payment-alert p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}

.payment-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pay-btn {
  padding: 14px 28px;
  border-radius: 12px;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.pay-btn.whatsapp {
  background: linear-gradient(135deg, #ffffff, #cccccc);
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.pay-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

.btn-icon {
  font-size: 18px;
}

.payment-note {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FINAL SECTION */
.final-section {
  padding: 120px 24px;
  position: relative;
}

.info-card {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  border-radius: 0;
  background: #000000;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.info-left h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 700;
}

.info-right p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.info-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 0;
  background: var(--geometric-gradient);
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  width: fit-content;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* AGENDAMENTO */
.section-agendamento {
  background: #000000;
  padding: 80px 24px;
}

.agendamento-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 1;
  max-width: 150px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--geometric-gradient);
  border-color: var(--primary);
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.step.completed .step-number {
  background: var(--geometric-gradient);
  border-color: var(--primary);
  color: #000000;
}

.step.completed .step-number::before {
  content: '✓';
  font-size: 20px;
}

.step-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.step.active .step-label {
  color: var(--text-primary);
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  max-width: 100px;
}

.step.active~.step-line {
  background: var(--border);
}

.step.completed~.step-line {
  background: var(--primary);
}

.agendamento-form {
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

/* Form Sections */
.form-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.section-title h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.label-icon {
  margin-right: 6px;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* Service Selector */
.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.service-selector input[type="radio"] {
  display: none;
}

.service-option {
  display: block;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.service-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--geometric-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-option:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.service-option:hover::before {
  transform: scaleX(1);
}

.service-selector input[type="radio"]:checked+.service-option {
  border-color: var(--primary);
  background: #000000;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.service-selector input[type="radio"]:checked+.service-option::before {
  transform: scaleX(1);
}

.service-featured {
  border-color: rgba(255, 255, 255, 0.12);
  background: #000000;
}

.service-featured::before {
  background: var(--geometric-gradient);
}

.service-featured:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.service-selector input[type="radio"]:checked+.service-featured {
  border-color: var(--primary);
  background: #000000;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-header h4 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.service-header>div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

.service-price {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.service-featured .service-price {
  color: var(--secondary);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  padding: 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.service-list li:hover {
  color: var(--text-primary);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 10px;
  clip-path: polygon(2px 0, 100% 0, 100% calc(100% - 2px), calc(100% - 2px) 100%, 0 100%, 0 2px);
}

.service-featured .service-list li::before {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Inputs */
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

input[type="date"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  background: #000000;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233b82f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

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

/* Resumo do Pedido */
.resumo-pedido {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  margin: 0;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.3s ease;
}

.resumo-item:hover {
  color: var(--text-primary);
}

.resumo-item:last-of-type {
  border-bottom: none;
}

.resumo-item span:first-child {
  color: var(--text-secondary);
}

.resumo-item span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

.resumo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 0;
  margin-top: 24px;
  border-top: 2px solid var(--primary);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  padding: 24px 16px 0;
  margin: 24px -16px 0;
  border-radius: 0 0 16px 16px;
}

.resumo-total span:first-child {
  color: var(--text-primary);
}

.resumo-total span:last-child {
  color: var(--primary);
  font-size: 24px;
}

/* Botão Submit */
.submit-container {
  margin-top: 40px;
  text-align: center;
}

.btn-submit {
  width: 100%;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.5);
}

.btn-icon {
  font-size: 20px;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.security-icon {
  font-size: 16px;
}

.form-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Calendar and Time Slots */
.service-selection {
  margin-bottom: 48px;
}

.date-time-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  background: rgba(13, 13, 13, 0.4);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.calendar-container {
  display: flex;
  flex-direction: column;
}

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

.calendar-header h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.calendar-nav {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.calendar-nav:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-weekdays div {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.calendar-day.disabled {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.selected {
  background: var(--primary);
  color: var(--text-primary);
  font-weight: 600;
}

.calendar-day.has-dots::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.calendar-day.selected.has-dots::after {
  background: var(--text-primary);
}

.timezone-selector {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.timezone-selector label {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.timezone-selector select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
}

.time-slots-container {
  display: flex;
  flex-direction: column;
}

.time-slots-container h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.time-slots::-webkit-scrollbar {
  width: 6px;
}

.time-slots::-webkit-scrollbar-track {
  background: rgba(13, 13, 13, 0.5);
  border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.no-date-selected {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  font-size: 14px;
}

.time-slot-btn {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.time-slot-btn:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.time-slot-btn.selected {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.time-slot-time {
  font-weight: 600;
}

.time-slot-spots {
  font-size: 12px;
  color: var(--text-muted);
}

.time-slot-btn.selected .time-slot-spots {
  color: var(--text-secondary);
}

/* Responsive Agendamento */
@media (max-width: 968px) {
  .date-time-selector {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-line {
    display: none;
  }
}

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

  .agendamento-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-selector {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-option {
    padding: 18px;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .service-header h4 {
    font-size: 18px;
  }

  .service-price {
    font-size: 22px;
    align-self: flex-start;
  }

  .service-list {
    gap: 6px;
  }

  .service-list li {
    font-size: 13px;
    padding-left: 20px;
  }

  .resumo-total {
    font-size: 18px;
  }

  .resumo-total span:last-child {
    font-size: 22px;
  }

  .date-time-selector {
    padding: 24px;
  }

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

  .progress-steps {
    padding: 0;
  }

  .step {
    max-width: 80px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-label {
    font-size: 11px;
  }

  .section-title h3 {
    font-size: 18px;
  }

  .section-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

/* FOOTER */
.footer {
  background: rgba(13, 13, 13, 0.9);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.footer-logo:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.footer-socials h4,
.footer-links h4 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-socials a,
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover,
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-copy {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 20px 24px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 24px;
  }

  .section {
    padding: 80px 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    padding: 32px 24px;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .payment-alert {
    padding: 32px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .brand h2 {
    font-size: 20px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .price-value {
    font-size: 40px;
  }
}

/* LEGAL PAGES */
.legal-page {
  padding: 80px 24px 120px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(13, 13, 13, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.legal-section h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.legal-section ul li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-section a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Cookie Types */
.cookie-type {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--primary);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.cookie-type h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Browser Instructions */
.browser-instructions {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.browser-instructions h3 {
  color: var(--secondary);
  margin-top: 0;
}

/* Service Steps */
.service-step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(200, 200, 200, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-step:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.service-step h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Plan Details */
.plan-details {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(200, 200, 200, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.plan-details:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.plan-details h3 {
  color: var(--secondary);
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-details p {
  margin-bottom: 12px;
}

/* Legal Back Button */
.legal-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.8));
  border: 2px solid var(--border);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 32px 24px;
  }

  .legal-header h1 {
    font-size: 32px;
  }

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

  .legal-section h3 {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
  }

  .service-step,
  .plan-details {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 60px 16px 80px;
  }

  .legal-content {
    padding: 24px 16px;
  }

  .legal-header {
    margin-bottom: 40px;
  }

  .legal-section {
    margin-bottom: 32px;
  }
}

/* NOVO AGENDAMENTO */
.agendamento-header {
  text-align: center;
  margin-bottom: 48px;
}

.agendamento-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.agendamento-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

.agendamento-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Lado Esquerdo - Calendário e Horários */
.agendamento-left {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(13, 13, 13, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.agendamento-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timezone-info {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Calendário */
.calendar-wrapper {
  margin-bottom: 32px;
}

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

.calendar-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.calendar-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-weekdays div {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: lowercase;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid transparent;
}

.calendar-day:not(.empty):not(.disabled):hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--text-primary);
}

.calendar-day.today {
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-day.selected {
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

/* Disponibilidade */
.disponibilidade-info {
  margin-bottom: 16px;
}

.disponibilidade-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.disponibilidade-info span {
  color: var(--text-primary);
  font-weight: 600;
}

/* Horários */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.time-slot {
  padding: 12px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.link-mostrar-horarios {
  display: block;
  text-align: center;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px;
  transition: all 0.3s ease;
}

.link-mostrar-horarios:hover {
  color: var(--primary-light);
}

/* Lado Direito - Detalhes e Formulário */
.agendamento-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.servico-detalhes {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(13, 13, 13, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.servico-detalhes h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.servico-selector {
  margin-bottom: 24px;
}

.servico-selector label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.servico-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.servico-select:hover,
.servico-select:focus {
  border-color: var(--primary);
  outline: none;
}

.servico-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.servico-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.servico-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-info ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.servico-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Formulário */
.form-agendamento {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(13, 13, 13, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.form-agendamento h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.login-prompt {
  margin-bottom: 24px;
}

.login-prompt p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.login-prompt a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-prompt a:hover {
  color: var(--primary-light);
}

.form-agendamento .form-group {
  margin-bottom: 20px;
}

.form-agendamento label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-agendamento input,
.form-agendamento textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-agendamento input:focus,
.form-agendamento textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(26, 26, 26, 0.9);
}

.form-agendamento input::placeholder,
.form-agendamento textarea::placeholder {
  color: var(--text-muted);
}

.phone-input {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.country-code {
  padding: 12px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-code:focus {
  outline: none;
  border-color: var(--primary);
}

.info-pagamento {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.info-pagamento h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.total-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.total-info span:first-child {
  font-size: 14px;
  color: var(--text-secondary);
}

.total-valor {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.link-politica {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-politica:hover {
  color: var(--primary-light);
}

.btn-agendar {
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 12px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-agendar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive - Agendamento */
@media (max-width: 968px) {
  .agendamento-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {

  .agendamento-left,
  .servico-detalhes,
  .form-agendamento {
    padding: 24px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .phone-input {
    grid-template-columns: 90px 1fr;
  }
}

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

  .agendamento-left,
  .servico-detalhes,
  .form-agendamento {
    padding: 20px;
  }

  .calendar-weekdays div {
    font-size: 11px;
  }

  .calendar-day {
    font-size: 13px;
  }

  .time-slots-grid {
    grid-template-columns: 1fr;
  }
}

/* LOGIN PAGE */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.login-box {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-header h1 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.login-header p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.login-form {
  margin-bottom: 24px;
}

.login-form .form-group {
  margin-bottom: 24px;
}

.login-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.login-form input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.login-form input::placeholder {
  color: var(--text-muted);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.forgot-password {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-light);
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-login:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.alert {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ffffff;
}

.alert-error::before {
  content: '⚠️';
  font-size: 18px;
}

.login-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.login-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.login-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.dev-info {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-align: center;
}

.dev-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 4px 0;
}

.dev-info strong {
  color: var(--text-primary);
}

.dev-info code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--primary);
  font-family: 'Courier New', monospace;
  font-size: 13px;
}

/* User Info no Header */
.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.user-name {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-logout {
  padding: 8px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-1px);
}

/* Responsive - Login */
@media (max-width: 480px) {
  .login-box {
    padding: 32px 24px;
  }

  .login-header h1 {
    font-size: 28px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .user-info {
    margin-left: 12px;
    padding-left: 12px;
  }

  .user-name {
    display: none;
  }
}

/* FEATURES SECTION */
.features-section {
  padding: 100px 0;
  background: var(--surface);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.feature-image {
  height: 280px;
  background: linear-gradient(135deg, #0a0a0a, #141414);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

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

.metric-value {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-value.green {
  color: var(--primary);
  font-size: 48px;
}

.metric-value.red {
  color: #ff4444;
  font-size: 36px;
  opacity: 0.7;
}

.metric-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.metric-label.small {
  font-size: 14px;
  margin-top: 12px;
}

.metric-decrease {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-top: 8px;
}

.feature-content {
  padding: 32px;
}

.feature-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* COMMUNITY SECTION */
.community-section {
  padding: 100px 0;
  background: var(--background);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.social-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.social-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.social-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.social-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  gap: 12px;
  color: var(--primary-light);
}

/* Responsive - Features & Community */
@media (max-width: 768px) {

  .features-section,
  .community-section {
    padding: 60px 0;
  }

  .features-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .feature-image {
    height: 220px;
  }

  .metric-value {
    font-size: 56px;
  }

  .metric-value.green {
    font-size: 40px;
  }

  .metric-value.red {
    font-size: 28px;
  }

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

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 120px 0;
  background: var(--background);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
  animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
  animation-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
  animation-delay: 0.6s;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--geometric-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08);
}

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

.testimonial-featured {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.8));
}

.testimonial-featured::before {
  opacity: 1;
}

.testimonial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--geometric-gradient);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-placeholder {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
}

.star {
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .star {
  transform: scale(1.1);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-metrics {
  margin: 16px 0;
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.metric-before {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.metric-arrow {
  color: var(--text-primary);
  font-size: 16px;
}

.metric-after {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-date {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-cta {
  text-align: center;
  margin-top: 64px;
}

/* Responsive - Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonials-cta {
    margin-top: 40px;
  }
}

/* FOOTER */
.footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-socials h4,
.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a,
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover,
.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copy {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive - Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer {
    padding: 40px 0 24px;
  }
}

/* NOTIFICATION TOAST SYSTEM */
.notification-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 320px;
  max-width: 500px;
  background: #000000;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.notification-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.notification-content {
  flex: 1;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.notification-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

/* Tipos de notificação */
.notification-success {
  border-color: rgba(255, 255, 255, 0.3);
}

.notification-success .notification-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.notification-error {
  border-color: rgba(255, 100, 100, 0.3);
}

.notification-error .notification-icon {
  background: rgba(255, 100, 100, 0.15);
  color: #ff6464;
}

.notification-warning {
  border-color: rgba(255, 200, 100, 0.3);
}

.notification-warning .notification-icon {
  background: rgba(255, 200, 100, 0.15);
  color: #ffc864;
}

.notification-info {
  border-color: rgba(255, 255, 255, 0.2);
}

.notification-info .notification-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Responsive - Notificações */
@media (max-width: 768px) {
  .notification-toast {
    top: 16px;
    right: 16px;
    left: 16px;
    min-width: auto;
    max-width: none;
  }
}
/* Horrios Ocupados */
.time-slot.occupied {
  background: rgba(255, 100, 100, 0.1) !important;
  border-color: rgba(255, 100, 100, 0.3) !important;
  color: #ff6464 !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}

.time-slot.occupied:hover {
  transform: none !important;
  box-shadow: none !important;
}


/* Logo Styles */
.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Brand Text Styles */
.brand-text {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    text-decoration: none;
}

/* ===== CARDS MELHORADOS ===== */
.card {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.card:hover::after {
  opacity: 1;
  top: -25%;
  right: -25%;
}

/* Card Featured (Avançado) */
.card-featured {
  background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-featured::before {
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  opacity: 1;
}

.card-featured:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.95),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card Header */
.card-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.card-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #fff;
}

/* Card Badge */
.card-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover .card-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.card-badge-featured {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Card Price */
.card-price {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.price-currency {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: top;
  margin-right: 4px;
}

.price-value {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}

.card:hover .price-value {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Etapas/Features List */
.etapas {
  list-style: none;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.etapas li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

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

.card:hover .etapas li {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.card:hover .check-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

/* Card Button */
.btn-card {
  width: 100%;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-card:hover::before {
  width: 300px;
  height: 300px;
}

.btn-featured {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-featured:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    padding: 36px 28px;
  }
  
  .card-header h3 {
    font-size: 24px;
  }
  
  .price-value {
    font-size: 56px;
  }
  
  .etapas li {
    font-size: 14px;
    padding: 12px 0;
  }
}


/* ===== WHATSAPP BUTTON - MELHORADO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: visible;
    cursor: pointer;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(37, 211, 102, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4);
    width: auto;
    padding: 0 24px;
    border-radius: 32px;
}

.whatsapp-float:hover::before {
    opacity: 0.2;
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.05);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

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

.whatsapp-text {
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    max-width: 100px;
}

/* Animação de pulso */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 24px rgba(37, 211, 102, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 8px rgba(37, 211, 102, 0.2);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Animação de entrada */
@keyframes whatsapp-slide-in {
    from {
        transform: translateY(100px) scale(0);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.whatsapp-float {
    animation: whatsapp-slide-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards,
               whatsapp-pulse 2.5s ease-in-out 1s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float:hover {
        padding: 0 20px;
    }
}

