@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Rubinot Brand Colors */
  --ruby-primary: #9b2c2c;
  --ruby-primary-dark: #7a1f1f;
  --ruby-primary-light: #c73d3d;
  --ruby-secondary: #1a1a2e;
  --ruby-gold: #d4af37;
  --ruby-gold-dark: #b8960c;
  --ruby-silver: #a8a8b0;
  --ruby-bg-dark: #0d0d14;
  --ruby-bg-card: #14141e;
  --ruby-bg-elevated: #1c1c28;
  --ruby-border: #2a2a35;
  --ruby-text: #e8e8e8;
  --ruby-text-muted: #8a8a99;
  --ruby-text-dark: #c4c4cc;
  
  /* Gradients */
  --gradient-ruby: linear-gradient(135deg, #9b2c2c 0%, #c73d3d 50%, #d4af37 100%);
  --gradient-ruby-dark: linear-gradient(135deg, #7a1f1f 0%, #9b2c2c 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5d76e 100%);
  --gradient-card: linear-gradient(145deg, #1c1c28 0%, #14141e 100%);
  
  /* Effects */
  --glow-red: 0 0 20px rgba(155, 44, 44, 0.4);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-ruby: 0 8px 32px rgba(155, 44, 44, 0.2);
  --border-ruby: 1px solid rgba(155, 44, 44, 0.3);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
  
  /* Typography */
  --font-heading: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ruby-bg-dark);
  color: var(--ruby-text);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(155, 44, 44, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0px, rgba(212, 175, 55, 0.02) 2px, transparent 2px, transparent 8px);
  min-height: 100vh;
  cursor: default;
}

/* ==================== ANIMAÇÕES GLOBAIS ==================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(212, 175, 55, 0.2); box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
  50% { border-color: rgba(212, 175, 55, 0.6); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
}

/* Elementos interativos */
button, a, .btn, .service-card, .feature-card, .price-card, .testimonial-card {
  cursor: pointer;
}

/* Smooth transitions para todos os elementos interativos */
a, button, .btn, .service-card, .feature-card, .price-card, .testimonial-card, 
input, select, textarea, .step-number, .vocation-card, .pricing-option,
.boss-item, .item-card, .cliente-card, .comanda-card, .info-card {
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ruby-bg-card);
  border-left: 1px solid var(--ruby-border);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--ruby-primary), var(--ruby-gold));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--ruby-primary-light), var(--ruby-gold-dark));
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ruby-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.4rem 0;
  background: rgba(13, 13, 20, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px var(--ruby-primary));
  animation: pulseGlow 2s ease-in-out infinite;
}

.logo-text {
  background: var(--gradient-ruby);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(155, 44, 44, 0.3);
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 4px var(--ruby-primary)); }
  50% { filter: drop-shadow(0 0 12px var(--ruby-gold)); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--ruby-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-menu a::before {
  content: '[';
  opacity: 0;
  margin-right: 4px;
  transition: all 0.2s ease;
}

.nav-menu a::after {
  content: ']';
  opacity: 0;
  margin-left: 4px;
  transition: all 0.2s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before,
.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--ruby-primary-light);
  text-shadow: 0 0 10px rgba(199, 61, 61, 0.5);
}

/* Efeito de loading shimmer para elementos em carregamento */
.loading-shimmer {
  background: linear-gradient(90deg, var(--ruby-bg-card) 25%, var(--ruby-bg-elevated) 50%, var(--ruby-bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--ruby-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-image: url('../img/hero-bg.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(155, 44, 44, 0.2);
  border: 1px solid var(--ruby-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ruby-gold);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: var(--ruby-gold);
  box-shadow: var(--glow-gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}

.highlight {
  background: var(--gradient-ruby);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.hero h1:hover .highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero p {
  font-size: 1.125rem;
  color: var(--ruby-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  flex-wrap: wrap;
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient-ruby);
  color: white;
  box-shadow: var(--shadow-ruby);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--ruby-primary);
  color: var(--ruby-primary-light);
}

.btn-secondary:hover {
  background: rgba(155, 44, 44, 0.1);
  border-color: var(--ruby-gold);
  color: var(--ruby-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-block {
  display: block;
  width: 100%;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cupom-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ruby-border);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.cupom-label {
  font-weight: 600;
  color: var(--ruby-text-muted);
}

.cupom-code {
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 15px;
  border-radius: 8px;
  color: var(--ruby-gold);
  transition: all 0.3s ease;
}

.cupom-code:hover {
  transform: scale(1.02);
  background: rgba(212, 175, 55, 0.2);
}

.btn-copy {
  background: var(--ruby-gold);
  color: var(--ruby-bg-dark);
  border: none;
  padding: 5px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: var(--ruby-gold-dark);
  transform: scale(1.05);
}

.btn-copy:active {
  transform: scale(0.95);
}

/* ==================== CARDS COM EFEITOS PREMIUM ==================== */
.service-card, .feature-card, .price-card, .testimonial-card, .vocation-card {
  position: relative;
  overflow: hidden;
}

/* Efeito de borda brilhante nos cards */
.service-card::after, .feature-card::after, .price-card::after, .vocation-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, var(--ruby-gold), transparent);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.service-card:hover::after, .feature-card:hover::after, .price-card:hover::after, .vocation-card:hover::after {
  opacity: 0.3;
}

/* Efeito de elevação 3D nos cards */
.service-card:hover, .feature-card:hover, .price-card:hover, .testimonial-card:hover, .vocation-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* ==================== FEATURES SECTION ==================== */
.features {
  background: var(--ruby-bg-elevated);
  padding: 5rem 0;
}

.features h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ruby-text);
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-ruby);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--ruby-primary);
  box-shadow: var(--shadow-ruby);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 0 8px var(--ruby-primary));
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  background: var(--gradient-ruby);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: var(--ruby-text-muted);
  line-height: 1.6;
}

/* ==================== PRICES SECTION ==================== */
.prices {
  padding: 5rem 0;
  background: var(--ruby-bg-dark);
}

.prices h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ruby-text);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.price-card:hover {
  border-color: var(--ruby-primary);
  box-shadow: var(--shadow-ruby);
}

.price-card.featured {
  border: 2px solid var(--ruby-gold);
  transform: scale(1.02);
  animation: borderGlow 2s ease-in-out infinite;
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-ruby);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--ruby-text);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ruby-gold);
  margin-bottom: 1rem;
}

.price-card p {
  color: var(--ruby-text-muted);
  margin-bottom: 1.5rem;
}

/* ==================== CTA SECTION ==================== */
.cta {
  background: linear-gradient(135deg, var(--ruby-bg-elevated), var(--ruby-secondary));
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--ruby-border);
  border-bottom: 1px solid var(--ruby-border);
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--ruby-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--ruby-secondary);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--ruby-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--ruby-gold);
}

.footer-section p {
  color: var(--ruby-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--ruby-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--ruby-primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--ruby-border);
  color: var(--ruby-text-muted);
  font-size: 0.75rem;
}

/* ==================== PÁGINAS INTERNAS ==================== */
.page-header {
  text-align: center;
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--ruby-bg-elevated), var(--ruby-secondary));
  border-bottom: 1px solid var(--ruby-border);
  margin-bottom: 40px;
  position: relative;
}

.page-header::after {
  content: '✦';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ruby-gold);
  color: var(--ruby-bg-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--ruby-text);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--ruby-text-muted);
}

/* Alertas */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  animation: slideIn 0.3s ease;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid #10b981;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid #ef4444;
}

/* Two Columns Layout */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 40px 0;
}

/* Tabela de Preços */
.pricing-info {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.pricing-info h3 {
  margin-bottom: 1.5rem;
  color: var(--ruby-gold);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.price-table th,
.price-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--ruby-border);
}

.price-table th {
  background: var(--ruby-bg-elevated);
  font-weight: 600;
  color: var(--ruby-text);
}

.price-table tr {
  transition: all 0.3s ease;
}

.price-table tr:hover {
  background: var(--ruby-bg-elevated);
}

.cupom-info {
  background: var(--gradient-ruby);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.cupom-info h4 {
  margin-bottom: 0.5rem;
}

.cupom-info strong {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}

/* Formulários */
.form-container {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-container h3 {
  margin-bottom: 1.5rem;
  color: var(--ruby-gold);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--ruby-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--ruby-bg-elevated);
  color: var(--ruby-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ruby-primary);
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.2);
  transform: scale(1.01);
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--ruby-bg-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--ruby-border);
    backdrop-filter: blur(12px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cupom-box {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .features h2,
  .prices h2,
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .price {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ==================== SEÇÃO DE SERVIÇOS ==================== */
.services {
  padding: 5rem 0;
  background: var(--ruby-bg-elevated);
}

.services h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ruby-text);
}

.section-subtitle {
  text-align: center;
  color: var(--ruby-text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--ruby-primary);
  box-shadow: var(--shadow-ruby);
}

.service-card.featured {
  border: 2px solid var(--ruby-gold);
  transform: scale(1.02);
  animation: borderGlow 2s ease-in-out infinite;
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient-ruby);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px var(--ruby-primary));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--ruby-text);
}

.service-card p {
  color: var(--ruby-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.service-features span {
  display: block;
  padding: 0.3rem 0;
  color: var(--ruby-text-muted);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.service-features span:hover {
  transform: translateX(5px);
  color: var(--ruby-gold);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ruby-gold);
  margin-bottom: 1.5rem;
}

/* Stats Hero */
.stats-hero {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ruby-border);
}

.stats-hero .stat {
  text-align: center;
}

.stats-hero .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-ruby);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-hero .stat-label {
  font-size: 0.9rem;
  color: var(--ruby-text-muted);
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: var(--ruby-bg-dark);
}

.how-it-works h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ruby-text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-ruby);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: scale(1.1);
  box-shadow: var(--glow-red);
}

.step h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  color: var(--ruby-text);
}

.step p {
  color: var(--ruby-text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ruby-bg-elevated), var(--ruby-secondary));
}

.testimonials h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ruby-text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--ruby-primary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--ruby-text-muted);
}

.testimonial-author strong {
  display: block;
  color: var(--ruby-gold);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ruby-text-muted);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  background: var(--ruby-bg-elevated);
  border-radius: 8px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--ruby-primary);
  transform: translateY(-2px);
}

/* Quest Details Page */
.quest-details {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  margin: 40px 0;
}

.quest-info {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
}

.quest-info h2 {
  color: var(--ruby-gold);
  margin-bottom: 1rem;
}

.quest-info h3 {
  margin: 1.5rem 0 1rem;
  color: var(--ruby-text);
}

.benefits-list,
.requirements-list {
  list-style: none;
  padding: 0;
}

.benefits-list li,
.requirements-list li {
  padding: 0.5rem 0;
  color: var(--ruby-text-muted);
  transition: transform 0.2s ease;
}

.benefits-list li:hover,
.requirements-list li:hover {
  transform: translateX(5px);
  color: var(--ruby-gold);
}

.quest-pricing {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.pricing-option {
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.pricing-option:hover {
  border-color: var(--ruby-primary);
  transform: translateY(-5px);
}

.pricing-option.featured {
  border: 2px solid var(--ruby-gold);
  background: linear-gradient(135deg, var(--ruby-bg-elevated), var(--ruby-bg-card));
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  color: var(--ruby-text);
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ruby-gold);
  margin-bottom: 1rem;
}

.plan-features p {
  margin: 0.5rem 0;
  color: var(--ruby-text-muted);
}

.quest-faq {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
  margin: 40px 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--ruby-gold);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-item h4:hover {
  color: var(--ruby-primary-light);
}

.faq-item p {
  color: var(--ruby-text-muted);
  line-height: 1.6;
}

/* ==================== PÁGINA DE AGENDAMENTO ==================== */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  margin: 40px 0;
}

.booking-form {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
}

.booking-form h2 {
  color: var(--ruby-gold);
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ruby-border);
}

.booking-form h2:first-of-type {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.price-summary {
  background: var(--gradient-ruby-dark);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--ruby-gold);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.summary-line.total {
  font-size: 1.2rem;
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.payment-info {
  background: var(--ruby-bg-elevated);
  border: 1px solid var(--ruby-border);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.payment-info h3 {
  margin-bottom: 1rem;
  color: var(--ruby-text);
}

.payment-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.payment-info li {
  padding: 0.3rem 0;
  color: var(--ruby-text-muted);
}

.payment-info small {
  display: block;
  margin-top: 1rem;
  color: var(--ruby-text-muted);
  font-size: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  padding: 1.5rem;
  border-radius: 8px;
}

.info-card.highlight {
  background: var(--gradient-ruby);
  color: white;
}

.info-card.highlight ul {
  color: white;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: inherit;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ruby-border);
  transition: transform 0.2s ease;
}

.info-card li:hover {
  transform: translateX(5px);
}

.info-card.highlight li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-card {
  text-align: center;
}

.contact-card .btn {
  display: block;
  margin-top: 0.5rem;
}

/* ==================== PÁGINA DE CONTATO ==================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  margin: 40px 0;
}

.contact-form-wrapper {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  border-radius: 8px;
  padding: 2rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ruby-border);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateX(5px);
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon {
  font-size: 1.5rem;
  min-width: 40px;
}

.method-details strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ruby-text);
}

.method-details a {
  color: var(--ruby-gold);
  text-decoration: none;
}

.method-details a:hover {
  text-decoration: underline;
}

.faq-mini p {
  margin: 0.5rem 0;
  color: var(--ruby-text-muted);
}

.faq-mini p:first-of-type {
  margin-top: 0;
}

.faq-section {
  margin: 40px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  color: var(--ruby-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* ==================== QUEST TIMELINE ==================== */
.quest-timeline {
  background: var(--ruby-bg-card);
  border: 1px solid var(--ruby-border);
  padding: 2rem;
  border-radius: 8px;
  margin: 40px 0;
}

.quest-timeline h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--ruby-gold);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateX(5px);
}

.step-marker {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: var(--gradient-ruby);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
  transform: scale(1.1);
  box-shadow: var(--glow-red);
}

.step-content h4 {
  margin-bottom: 0.3rem;
  color: var(--ruby-text);
}

.step-content p {
  color: var(--ruby-text-muted);
}

.warning-box {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.warning-box strong {
  color: #f59e0b;
}

/* ==================== MENU DO USUÁRIO DISCORD ==================== */
.user-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.btn-discord-login {
  background: #5865F2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.btn-discord-login:hover {
  background: #4752C4;
  transform: translateY(-2px);
}

.user-info-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  background: var(--ruby-bg-elevated);
  transition: background 0.3s;
}

.user-info-dropdown:hover {
  background: var(--ruby-bg-card);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-default {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-ruby);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.username {
  color: var(--ruby-text);
  font-weight: 500;
  font-size: 0.875rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--ruby-bg-card);
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid var(--ruby-border);
  overflow: hidden;
}

.user-info-dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  color: var(--ruby-text-muted);
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.dropdown-content a:hover {
  background: var(--ruby-bg-elevated);
  color: var(--ruby-text);
  padding-left: 1.5rem;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-aguardando_pagamento { background: #ffc107; color: #1a1a1a; border-left: 3px solid #856404; }
.status-aguardando_time { background: #ff9800; color: #1a1a1a; border-left: 3px solid #c66900; }
.status-em_andamento { background: #2196f3; color: white; border-left: 3px solid #0b5e9e; }
.status-concluido { background: #4caf50; color: white; border-left: 3px solid #1b5e20; }
.status-cancelado { background: #f44336; color: white; border-left: 3px solid #9a0000; }

/* Responsive */
@media (max-width: 768px) {
  .user-menu {
    margin-left: 0;
  }
  
  .username {
    display: none;
  }
  
  .btn-discord-login {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .dropdown-content {
    right: auto;
    left: 0;
  }
  
  .quest-details {
    grid-template-columns: 1fr;
  }
  
  .quest-pricing {
    position: static;
  }
  
  .booking-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-content {
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .stats-hero {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Botão Soul War com Megalomania */
.btn-soulwar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, #4a1a2a 0%, #8b2c3a 50%, #d43b3b 100%);
  color: #ffd700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-soulwar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/megalomania.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.btn-soulwar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn-soulwar:hover::after {
  left: 100%;
}

.btn-soulwar:hover::before {
  opacity: 0.6;
}

.btn-soulwar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 59, 59, 0.4);
  color: #fff;
}

.btn-soulwar span,
.btn-soulwar .btn-icon {
  position: relative;
  z-index: 2;
}

.btn-soulwar-gold {
  border: 2px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-soulwar-gold:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}