/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  /* Premium Earthy Palette */
  --primary: #944e45;        /* Terracota / Bordeaux */
  --primary-dark: #7a3d36;
  --primary-light: #f7ebe9;
  
  --secondary: #bd8e6b;      /* Soft Gold/Caramel */
  
  --accent: #2c544a;         /* Deep Green */
  --accent-light: #e5eee8;
  
  --bg-color: #faf8f5;       /* Warm White/Beige */
  --surface: #ffffff;
  
  --text-main: #333130;
  --text-muted: #6b6664;
  --border-color: #ebe4df;
  
  /* Shadows & Glass */
  --shadow-sm: 0 4px 12px rgba(148, 78, 69, 0.05);
  --shadow-md: 0 8px 30px rgba(148, 78, 69, 0.08);
  --shadow-lg: 0 20px 40px rgba(148, 78, 69, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 50px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

/* ============================================================
   TYPOGRAPHY & UTILITIES
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

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

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  background: rgba(189, 142, 107, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(148, 78, 69, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(148, 78, 69, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ============================================================
   HEADER
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 15px 6%;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  letter-spacing: -0.5px;
  z-index: 1001;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-main);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-main);
  cursor: pointer;
  z-index: 1002;
}

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

.hero-bg-accent {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

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

.hero-text h1 {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.sub-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.sub-text i {
  color: #25D366;
  font-size: 18px;
}

.stats-grid {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.stat-card h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.img-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.img-wrapper > img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: 40px;
  left: -50px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.floating-card .text {
  display: flex;
  flex-direction: column;
}

.floating-card .label {
  font-size: 12px;
  color: var(--text-muted);
}

.floating-card .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.floating-img {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid var(--bg-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: float 8s ease-in-out infinite reverse;
}

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


/* ============================================================
   O MÉTODO SECTION
============================================================ */
.method-section {
  padding: 100px 6%;
  background: var(--surface);
}

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

.section-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.method-card {
  position: relative;
  background: var(--bg-color);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  overflow: hidden;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: var(--surface);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 0.8;
  z-index: 0;
  opacity: 0.6;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.method-card p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  font-size: 15px;
}

/* ============================================================
   SOBRE MIM SECTION
============================================================ */
.about-section {
  padding: 120px 6%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image .img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
}

.about-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.decoration-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  z-index: -1;
}

.secondary-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  border: 8px solid var(--bg-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.credentials-list {
  list-style: none;
  margin-top: 32px;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  background: var(--surface);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.credentials-list li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.credentials-list .icon {
  color: var(--secondary);
  font-size: 18px;
}

/* ============================================================
   DEPOIMENTOS SECTION
============================================================ */
.testimonials-section {
  padding: 100px 6%;
  background: var(--primary);
  color: white;
}

.testimonials-section .section-header h2 {
  color: white;
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface);
  color: var(--text-main);
  padding: 40px;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #FBBF24;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: var(--primary-light);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.author .avatar {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.author h4 {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 2px;
}

.author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
=========================================================== */
.faq-section {
  padding: 100px 6%;
  background: var(--bg-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: var(--surface);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* arbitrary high number */
  transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 120px 6%;
}

.cta-container {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.cta-container h2 {
  color: white;
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-container p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 8px;
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1;
  border: none;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  background: transparent;
}

.cta-form .btn-primary {
  background: var(--accent);
  box-shadow: none;
}

.cta-form .btn-primary:hover {
  background: #204139;
}

.privacy-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #1f1d1c;
  color: #aba6a3;
  padding: 80px 6% 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 60px;
}

.footer-brand h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
}

.brand-desc {
  line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

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

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
}

/* ============================================================
   ANIMATIONS & FLOATERS
============================================================ */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

/* ============================================================
   MOBILE RESPONSIVENESS
============================================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1003;
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; max-width: 320px;
  height: 100vh;
  background: var(--surface);
  z-index: 1004;
  padding: 80px 30px;
  transition: var(--transition);
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 24px; color: var(--text-main);
  cursor: pointer;
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
  }
  
  .hero-text {
    max-width: 100%;
  }

  .hero-actions, .stats-grid {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
  }
  
  .floating-card {
    left: -20px;
  }

  .about-container {
    flex-direction: column;
    gap: 60px;
  }
  
  .about-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 100px 5% 60px;
  }
  
  .method-section, .about-section, .testimonials-section, .cta-section {
    padding: 60px 5%;
  }

  nav, header .btn-outline {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }

  .cta-container {
    padding: 40px 20px;
  }

  .cta-actions {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 12px;
  }
  
  .cta-actions .btn-primary {
    width: 100%;
    padding: 18px 24px !important;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .secondary-img {
    display: none;
  }
  .floating-img {
    display: none;
  }
  
  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 90%;
    justify-content: center;
    padding: 12px 16px;
  }
  
  .icon-box {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .hero-image {
    margin-bottom: 30px;
  }

  /* Extra Small Devices */
  @media (max-width: 400px) {
    .hero-text h1 {
      font-size: 28px;
    }
    
    .hero-text p {
      font-size: 15px;
    }
    
    .wa-modal {
      padding: 24px 16px;
    }
    
    .wa-modal-header h3 {
      font-size: 22px;
    }
    
    .section-header h2 {
      font-size: 26px;
    }
    
    .method-card {
      padding: 30px 20px;
    }
  }
}

/* ============================================================
   WA CAPTURE MODAL
=========================================================== */
.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wa-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal {
  background: var(--surface);
  width: 95%;
  max-width: 450px;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.wa-modal-overlay.active .wa-modal {
  transform: translateY(0) scale(1);
}

.wa-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.wa-close-modal:hover {
  background: var(--primary);
  color: white;
}

.wa-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.wa-modal-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary);
}

.wa-modal-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.4;
}

.wa-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.wa-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-main);
}

.wa-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  background: var(--bg-color);
}

.wa-form input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-light);
}
