@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --bg-color: #08080A;
  --surface-color: #121216;
  --surface-hover: #191920;
  --text-color: #FFFFFF;
  --text-muted: #9E9EAE;
  --primary: #F9EE52;
  --primary-rgb: 249, 238, 82;
  --primary-gradient: linear-gradient(135deg, #F9EE52 0%, #E5A900 100%);
  --whatsapp-color: #25D366;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(249, 238, 82, 0.2);
  --shadow-glow: rgba(249, 238, 82, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

li {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #25252b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #000;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF9F00 0%, #FFE000 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.5);
}

.btn-secondary {
  border: 2px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(245, 197, 24, 0.05);
  transform: translateY(-3px);
}

/* --- HEADER & NAVIGATION --- */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.main-header.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

header .logo img {
  height: 65px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 50px;
}

header .nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

header .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
}

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

header .nav-link:hover,
header .nav-link.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 159, 0, 0.08) 0%, transparent 50%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8,8,10,0.6) 0%, rgba(8,8,10,1) 100%);
  z-index: 1;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(40%) contrast(110%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 238, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(249, 238, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 238, 82, 0);
  }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .accent-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(245, 197, 24, 0.1);
}

.hero-content p {
  color: var(--text-muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 550px;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-interactive-card {
  background: rgba(22, 22, 26, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-interactive-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 24px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.15;
  pointer-events: none;
}

.hero-interactive-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-interactive-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

/* --- MODALIDADES --- */
.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.modalidade-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modalidade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.modalidade-card:hover {
  transform: translateY(-10px);
  background: var(--surface-hover);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px var(--shadow-glow);
}

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

.modalidade-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.modalidade-card:hover .modalidade-icon {
  background: var(--primary-gradient);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.modalidade-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modalidade-features {
  margin-bottom: 30px;
}

.modalidade-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* --- SERVICES (DIFERENCIAIS) --- */
.services-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, rgba(22, 22, 26, 0.5) 50%, var(--bg-color) 100%);
  position: relative;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 25px;
  transition: var(--transition-smooth);
  text-align: center;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

/* --- SIGNATURE ELEMENT: WIDGET SIMULADOR --- */
.simulator-section {
  background: radial-gradient(circle at 50% 50%, rgba(245, 197, 24, 0.05) 0%, transparent 60%);
}

.simulator-container {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.simulator-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.simulator-left h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.simulator-left p {
  color: var(--text-muted);
  margin-bottom: 35px;
}

.simulator-objectives {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.objective-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.objective-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.objective-btn.active {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.1);
}

.objective-btn h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
  transition: var(--transition-fast);
}

.objective-btn.active h4 {
  color: var(--primary);
}

.objective-btn span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.simulator-right {
  background: rgba(8, 8, 10, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

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

.result-badge {
  background: var(--primary-gradient);
  color: #000;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-title {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.result-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.result-metrics {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.metric-item span {
  display: block;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- PLANOS --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(22, 22, 26, 1) 0%, rgba(30, 27, 20, 1) 100%);
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.plan-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--primary-gradient);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-header h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.plan-price {
  margin-bottom: 35px;
}

.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1;
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-features {
  margin-bottom: 40px;
}

.plan-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1rem;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.plan-features li.disabled {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: line-through;
}

.plan-features li.disabled::before {
  content: '✗';
  color: rgba(255, 255, 255, 0.2);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--surface-hover);
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- CONTACT SECTION --- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-card-item:hover {
  transform: translateY(-5px);
  background: var(--surface-hover);
  border-color: var(--border-glow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--shadow-glow);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.contact-card-item:hover .contact-card-icon {
  background: var(--primary-gradient);
  color: #000;
  transform: scale(1.1);
}

.contact-card-item h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- MAP SECTION --- */
.map-section {
  width: 100%;
  overflow: hidden;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.map-mobile-trigger {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .map-mobile-trigger {
    display: block;
  }
}

.map-mobile-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-mobile-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav-dialog {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.nav-dialog h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: #fff !important;
}

.nav-btn.google-maps {
  background: #4285F4;
}

.nav-btn.google-maps:hover {
  background: #357ae8;
}

.nav-btn.waze {
  background: #00C4FF;
  color: #000 !important;
}

.nav-btn.waze:hover {
  background: #00b3e6;
}

.nav-btn-close {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.nav-btn-close:hover {
  color: #fff;
}

/* --- FOOTER --- */
footer.main-footer {
  background: #050507;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand .logo img {
  height: 50px;
  margin-bottom: 25px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--primary-gradient);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 197, 24, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-color);
  opacity: 0.3;
  z-index: -1;
  animation: pulseWhatsapp 2s infinite;
}

/* --- SCROLL REVEAL CLASS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content p {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-interactive-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .simulator-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  .menu-toggle {
    display: flex;
  }
  header .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #0b0b0ee6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-color);
  }
  header .nav-menu.open {
    right: 0;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-form-container {
    padding: 30px;
  }
}
