/* ==========================================================================
   Ciriaco Store - Rifa Premium Churrasco Gourmet & Steakhouse
   Design System: Black & Gold, Dark Wood, Charcoal, Wine Red, Glowing Embers
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Oswald:wght@500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-black: #08080a;
  --bg-dark: #0f0f13;
  --bg-card: rgba(22, 20, 26, 0.75);
  --bg-card-hover: rgba(32, 28, 38, 0.85);
  --charcoal: #18181c;
  --charcoal-light: #26262e;
  
  --wood-dark: #1e130c;
  --wood-medium: #2c1a10;
  
  --gold-primary: #d4af37;
  --gold-light: #fbe38e;
  --gold-dark: #aa820a;
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --wine-red: #8b0000;
  --wine-bright: #b22222;
  --wine-glow: rgba(139, 0, 0, 0.4);
  
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eaa53;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  --text-white: #ffffff;
  --text-muted: #b3b3c2;
  --text-gold: #f3cf65;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --font-title: 'Oswald', 'Bebas Neue', sans-serif;
  --font-impact: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  --glass-backdrop: blur(16px) saturate(180%);
}

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

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

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* --- Particle Canvas Background --- */
#embers-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* --- Typography Utilities --- */
.title-impact {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fff2a8 0%, #d4af37 50%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.wine-gradient-badge {
  background: linear-gradient(135deg, var(--wine-bright) 0%, var(--wine-red) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--wine-glow);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-smooth), backdrop-filter var(--transition-smooth), padding var(--transition-smooth), box-shadow var(--transition-smooth);
  padding: 1.25rem 0;
  background: transparent;
}

.navbar.scrolled {
  background-color: rgba(8, 8, 10, 0.95);
  backdrop-filter: var(--glass-backdrop);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 1px 0 var(--border-gold);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-white);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--gold-glow);
  color: var(--bg-black);
  font-size: 1.2rem;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
}

.brand-name span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn-whatsapp {
  background: linear-gradient(135deg, #28e070 0%, var(--whatsapp-green) 50%, #1c9949 100%);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--whatsapp-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Hero Section (100vh) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: var(--bg-black);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.15) saturate(1.1);
  transform: scale(1.05);
  animation: subtleZoom 25s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 40%, rgba(8, 8, 10, 0.5) 0%, rgba(8, 8, 10, 0.9) 75%),
    linear-gradient(to bottom, rgba(8, 8, 10, 0.75) 0%, transparent 25%, transparent 75%, var(--bg-black) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(139, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: var(--glass-backdrop);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-title .highlight {
  display: block;
  font-size: 0.85em;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* WhatsApp CTA Action Box */
.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-whatsapp-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.4rem;
  background: linear-gradient(135deg, #2eff80 0%, var(--whatsapp-green) 50%, #15803d 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 0 0 0 rgba(37, 211, 102, 0.6),
    0 12px 35px rgba(37, 211, 102, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  animation: pulseGlow 2.5s infinite;
  overflow: hidden;
}

.btn-whatsapp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
}

.btn-whatsapp-hero:hover::before {
  transform: rotate(30deg) translateY(100%);
}

.btn-whatsapp-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 15px 45px rgba(37, 211, 102, 0.6),
    0 0 25px rgba(255, 255, 255, 0.4);
}

.btn-whatsapp-hero i {
  font-size: 1.8rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 30px rgba(0, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.6);
  }
}

.cta-arrow-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounceRight 1.5s infinite alternate;
}

.cta-arrow-indicator i {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

@keyframes bounceRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(8px); }
}

/* Hero Visual Card / Showcase Frame */
.hero-showcase {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, var(--gold-primary), rgba(212, 175, 55, 0.1), var(--wine-red));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.25);
}

.hero-showcase-inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.hero-showcase-inner:hover .hero-showcase-img {
  transform: scale(1.04);
}

.hero-showcase-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 15, 19, 0.85);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-tag strong {
  color: var(--gold-light);
  display: block;
  font-size: 0.95rem;
}

/* --- Trust / Counter Bar --- */
.trust-bar {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--charcoal) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-gold);
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.trust-text h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.trust-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --- Section Formatting --- */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-title);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Como Funciona (3 Steps Glassmorphism) --- */
.how-it-works {
  background: radial-gradient(circle at 50% 50%, rgba(30, 19, 12, 0.4) 0%, var(--bg-black) 80%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
}

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

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-impact);
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  font-weight: 700;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 0, 0, 0.2));
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Seção de Prêmios (Prizes Grid) --- */
.prizes-section {
  background-color: var(--bg-dark);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.prize-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.prize-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.prize-image-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #000;
}

.prize-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.prize-card:hover .prize-img {
  transform: scale(1.08);
}

.prize-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(139, 0, 0, 0.85);
  border: 1px solid var(--gold-primary);
  backdrop-filter: var(--glass-backdrop);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 1px;
}

.prize-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prize-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.prize-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.prize-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}

.prize-badge {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Seção Parceiro Oficial --- */
.partner-section {
  background: linear-gradient(135deg, rgba(30, 19, 12, 0.8) 0%, rgba(8, 8, 10, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.partner-card {
  background: rgba(22, 20, 26, 0.85);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.partner-badge-visual {
  text-align: center;
  padding: 2.5rem 2rem;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.partner-logo-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--bg-black);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.partner-badge-visual h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
}

.partner-badge-visual p {
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.partner-info h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.partner-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.partner-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
}

.partner-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.partner-features li i {
  color: var(--gold-primary);
}

/* --- Google Maps Badge & Address Card --- */
.btn-maps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(212, 175, 55, 0.2));
  border: 1px solid rgba(234, 67, 53, 0.5);
  color: #ff6b5b;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.btn-maps-badge:hover {
  background: linear-gradient(135deg, #ea4335, #c5221f);
  color: #ffffff;
  border-color: #ea4335;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

.partner-address-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(15, 15, 19, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  backdrop-filter: var(--glass-backdrop);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.partner-address-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.address-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.address-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(212, 175, 55, 0.2));
  border: 1px solid rgba(234, 67, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335;
  font-size: 1.3rem;
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.address-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.8px;
}

.address-content {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn-maps-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 50%, #960f0d 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.35);
  transition: all var(--transition-fast);
}

.btn-maps-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(234, 67, 53, 0.55), 0 0 15px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ff5343 0%, #ea4335 50%, #b31412 100%);
}

.btn-maps-action i:first-child {
  font-size: 1.25rem;
}

.btn-maps-action i:last-child {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* --- Seção Depoimentos (Testimonials) --- */
.testimonials-section {
  background-color: var(--bg-black);
}

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

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--wine-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.author-name h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.author-name p {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

/* --- FAQ Section (Accordion) --- */
.faq-section {
  background-color: var(--bg-dark);
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: var(--bg-black);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 2rem;
}

.faq-item.active .faq-content {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Final Call To Action (CTA) --- */
.final-cta {
  background: 
    radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.3) 0%, rgba(8, 8, 10, 0.98) 70%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
}

.final-cta-badge {
  display: inline-block;
  color: var(--gold-primary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.final-cta-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: var(--font-impact);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.btn-whatsapp-giant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, #2eff80 0%, var(--whatsapp-green) 50%, #15803d 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 15px 40px rgba(37, 211, 102, 0.5),
    0 0 30px rgba(255, 255, 255, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulseGlow 2.5s infinite;
}

.btn-whatsapp-giant:hover {
  transform: scale(1.05);
  box-shadow: 
    0 20px 50px rgba(37, 211, 102, 0.7),
    0 0 40px rgba(255, 255, 255, 0.5);
}

.btn-whatsapp-giant i {
  font-size: 2.2rem;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2eff80 0%, var(--whatsapp-green) 50%, #15803d 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulseFloat 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.8);
}

.floating-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--wine-bright);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-black);
}

@keyframes pulseFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* --- Footer --- */
.footer {
  background-color: #040405;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  position: relative;
  z-index: 5;
}

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

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-primary);
  color: var(--bg-black);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: var(--glass-backdrop);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
  transform: translateY(0);
}

.mobile-nav-overlay .nav-links {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-overlay .nav-link {
  font-size: 1.5rem;
}

.close-mobile-menu {
  position: absolute;
  top: max(6rem, calc(env(safe-area-inset-top) + 4.5rem));
  right: 1.8rem;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2005;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.close-mobile-menu:active,
.close-mobile-menu:hover {
  background: var(--gold-primary);
  color: var(--bg-black);
  transform: scale(1.1);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .partner-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

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

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

@media (max-width: 768px) {
  .nav-links, .nav-btn-whatsapp {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .btn-whatsapp-hero {
    width: 100%;
    font-size: 1.15rem;
    padding: 1.1rem 1.5rem;
  }

  .cta-arrow-indicator {
    display: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .btn-whatsapp-giant {
    width: 100%;
    font-size: 1.25rem;
    padding: 1.2rem 1.5rem;
  }

  .close-mobile-menu {
    top: max(5.5rem, calc(env(safe-area-inset-top) + 3.5rem));
    right: 1.5rem;
  }
}
