/* ===== RESET & BASE (BRISANET DARK THEME CLONE) ===== */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  max-height: 70px;
  margin-bottom: 20px;
}

.footer-company {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-info {
  color: #bdbdbd;
  margin: 5px 0;
  line-height: 1.7;
}

.footer-links {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

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

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d0d0d0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

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

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

:root {
  /* MODO ESCURO (Padrão Inicial) */
  --bg-main: #111111;
  --bg-card: #18181b;
  --bg-nav: rgba(17, 17, 17, 0.95);
  --text-main: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border-main: #333333;
  --brand-color-rgb: 59, 130, 246; /* ← ADICIONE ESTA LINHA */
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.5);

  --brand-color: #3b82f6;
  --brand-color-hover: #3b82f6;
  --menu-color: #ffffff;
  --faq-color: #ffffff;
  --btn-text-color: #000000;
  --font-family: "Figtree", sans-serif;
}

body.light-mode {
  --bg-main: #f9fafb;
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.95);
  --text-main: #111827;
  --text-secondary: #4b5563;
  --brand-color-rgb: 59, 130, 246; /* ← ADICIONE TAMBÉM NO LIGHT MODE */

  --text-muted: #6b7280;
  --border-main: #e5e7eb;
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.05);
  --menu-color: #000000;
  --faq-color: #000000;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.5;
  overflow-x: hidden;
  transition:
    background-color 0.3s,
    color 0.3s;
  user-select: none; /* Impede seleção de texto */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Permite seleção em campos de formulário */
input,
select,
textarea {
  user-select: text !important;
  -webkit-user-select: text !important;
}

img {
  -webkit-user-drag: none; /* Impede arrastar imagens */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: #000000;
  color: var(--brand-color);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar a {
  color: var(--brand-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--bg-nav);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-main);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.plan-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 16px;
  box-shadow: var(--shadow-main);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-main);
}

.faq-question {
  color: var(--text-main);
}

.faq-answer {
  color: var(--text-secondary);
}

.footer {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-main);
}

.theme-btn {
  background: none;
  border: none;
  color: var(--brand-color);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-right: 15px;
  transition: 0.3s;
}

.theme-btn:hover {
  transform: scale(1.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 900;
  color: var(--menu-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a,
.nav-links a:visited {
  color: var(--menu-color);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--brand-color);
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-actions a,
.nav-actions a:visited {
  color: var(--menu-color);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.nav-actions a:hover {
  color: var(--brand-color);
}

/* ===== HERO CAROUSEL ===== */
.hero {
  padding: 0;
  background-color: var(--bg-main);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-prev,
.slider-next {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: white;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
}

.slider-dot.active {
  opacity: 1;
  background: var(--brand-color);
  transform: scale(1.2);
}

/* Stats */
.stats-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-main);
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  text-align: center;
}
.stat-item h3 {
  font-size: 38px;
  color: var(--text-main);
  font-weight: 900;
}
.stat-item p {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 150px;
  margin: 0 auto;
}

/* ===== OFERTAS (CARDS) ===== */
.offers-section {
  padding: 80px 0;
}
.offers-header {
  margin-bottom: 50px;
}
.offers-header h2 {
  font-size: 36px;
  color: var(--text-main);
  font-weight: 900;
}
.plans-slider-wrapper {
  width: 100%;
  max-width: 1192px; /* (280px * 4) + (24px * 3) */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.plans-grid {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: max-content;
}

.plan-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 16px;
  width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
}

/* Ajuste para telas médias (mostra 3 planos inteiros) */
@media (max-width: 1100px) {
  .plan-card {
    width: calc((100% - 40px) / 3);
  }
}

/* Ajuste para tablets (mostra 2 planos inteiros) */
@media (max-width: 800px) {
  .plan-card {
    width: calc((100% - 20px) / 2);
  }
}

/* Ajuste para celulares (mostra 1 plano inteiro) */
@media (max-width: 500px) {
  .plan-card {
    width: 100%;
  }
}

.plan-card.featured {
  border: 2px solid var(--brand-color);
}
.plan-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: var(--brand-color);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 18px;
  border: 2px solid var(--border-main);
  border-radius: 20px;
  white-space: nowrap;
  z-index: 5;
}

.card-content {
  padding: 35px 20px 20px;
  flex: 1;
}
.plan-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.plan-title span {
  font-size: 16px;
  margin-left: 5px;
}

.plan-features {
  margin-bottom: 25px;
  list-style: none;
}
.plan-features li {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.plan-features li svg {
  color: var(--text-main);
}

.price-current {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
.price-current span.currency {
  font-size: 16px;
  margin-right: 4px;
}
.price-current span.month {
  font-size: 14px;
}

.btn-yellow {
  background-color: var(--brand-color);
  color: var(--btn-text-color);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 0;
  border-radius: 0 0 14px 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background-color 0.2s;
}

.plan-card.featured .btn-yellow {
  border: none;
  margin: 0 -2px -2px -2px;
  width: calc(100% + 4px);
  border-radius: 0 0 16px 16px;
}

/* ===== APP PROMO SECTION (PRINT 1) ===== */
.app-section {
  padding: 100px 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-main);
}
.app-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}
.app-content {
  flex: 1;
}
.app-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.1;
}
.app-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.app-features-list {
  list-style: none;
  margin-bottom: 50px;
}
.app-features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
}
.app-features-list li svg {
  color: var(--brand-color);
  width: 22px;
  height: 22px;
}
.app-buttons {
  display: flex;
  gap: 20px;
}
.app-btn {
  background: #222;
  padding: 12px 25px;
  border-radius: 15px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.app-btn:hover {
  background: #333;
  border-color: var(--brand-color);
}
.app-btn-text {
  display: flex;
  flex-direction: column;
}
.app-btn-text span:first-child {
  font-size: 10px;
  color: var(--text-muted);
}
.app-btn-text span:last-child {
  font-size: 16px;
  font-weight: 800;
  color: white;
}
.app-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
.app-image-container img {
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* ===== SERVICES SECTION (PRINT 2) ===== */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-main);
}
.services-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text-main);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-main);
  transition: 0.3s;
  box-shadow: var(--shadow-main);
}
.service-card.featured {
  border-color: var(--brand-color);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-color);
}
.service-icon {
  font-size: 30px;
  color: var(--brand-color);
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text-main);
}
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FEATURES (PRINT 3) ===== */
.features-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-main);
  background-color: var(--bg-main);
}
.features-section h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 50px;
  color: var(--text-main);
}
.features-grid {
  display: flex;
  gap: 30px;
}
.feature-box {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--shadow-main);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--brand-color);
}

/* ===== FAQ (PRINT 4) ===== */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}
.faq-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}
.faq-content {
  flex: 1.2;
}
.faq-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 50px;
  color: var(--text-main);
}
.faq-item {
  border: 1px solid var(--border-main);
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--bg-card);
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--faq-color);
  font-weight: 800;
}
.faq-item:hover {
  border-color: var(--brand-color);
  background: rgba(255, 204, 0, 0.05);
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
}
.faq-item.active .faq-answer {
  padding-bottom: 25px;
  max-height: 200px;
  opacity: 1;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--text-main);
}
.faq-image-container {
  flex: 0.8;
}
.faq-image-container img {
  width: 100%;
  border-radius: 30px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-main);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-main);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 30px;
  font-size: 18px;
}
.footer-col ul li {
  list-style: none;
  margin-bottom: 15px;
}
.footer-col ul li a {
  color: var(--menu-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* ===== MOBILE ===== */
/* ===== DESKTOP DEFAULTS (Esconde itens de mobile) ===== */
.mobile-menu-toggle,
.mobile-menu,
.btn-login-mobile {
  display: none;
}

@media (max-width: 992px) {
  .app-grid,
  .faq-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .features-grid {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Planos no Tablet */
  .plans-slider-wrapper {
    max-width: 90%;
  }
  .plan-card {
    width: 300px;
  }
  .plans-prev {
    left: -20px !important;
  }
  .plans-next {
    right: -20px !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 0;
  }
  .nav-links {
    display: none;
  }
  .nav-logo {
    font-size: 18px;
  }
  .nav-actions {
    gap: 10px;
  }

  .nav-btn-desktop {
    display: flex !important;
    font-size: 0 !important;
    padding: 0;
    border: none;
  }
  .nav-btn-desktop i {
    width: 22px !important;
    height: 22px !important;
    margin: 0;
  }

  .theme-btn {
    margin-right: 0;
  }
  .theme-btn i {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-main);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid var(--border-main);
    z-index: 999;
  }
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu a {
    color: var(--menu-color);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-main);
    font-weight: 700;
  }
  .mobile-menu .btn-yellow {
    margin-top: 20px;
    text-align: center;
  }

  .hero-slider-container {
    height: 450px;
  }

  /* Stats no Mobile */
  .stats-grid {
    flex-direction: row;
    gap: 30px;
    text-align: center;
    padding: 30px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none; /* Esconde barra no Firefox */
  }
  .stats-grid::-webkit-scrollbar {
    display: none;
  } /* Esconde barra no Chrome/Safari */

  .stat-item {
    flex: 0 0 200px; /* Cada item ocupa 200px de largura no scroll lateral */
  }
  .stat-item h3 {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .stat-item p {
    font-size: 12px;
    color: var(--text-muted);
    white-space: normal;
  }

  /* Planos no Mobile */
  .plans-slider-container {
    max-width: 100%;
    padding: 0 10px;
  }
  .plans-slider-wrapper {
    max-width: 100%;
  }
  .plan-card {
    width: 85vw; /* Card ocupa 85% da largura da tela */
    min-width: auto;
  }
  .plans-prev,
  .plans-next {
    top: auto !important;
    bottom: -50px !important;
    transform: none !important;
  }
  .plans-prev {
    left: 30% !important;
  }
  .plans-next {
    right: 30% !important;
  }
  .offers-section {
    padding-bottom: 100px;
  } /* Espaço para as setas embaixo */
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* ===== LEAD MODAL PREMIUM ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #18181b;
  border: 1px solid #333;
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  padding: 40px;
  position: relative;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  color: white;
}

.modal-header {
  margin-bottom: 30px;
}
.modal-header h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--brand-color);
}
.modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  width: 100%;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-color);
  outline: none;
  background: #2d2d30;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#leadForm .btn-yellow {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 16px;
}

/* ===== THEME CUSTOMIZER CARD ===== */
.customizer-card {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 20px;
  box-shadow: var(--shadow-main);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.customizer-card.minimized {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  cursor: pointer;
}

.customizer-header {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(var(--brand-color-rgb, 255, 204, 0), 0.05);
  border-bottom: 1px solid var(--border-main);
}

.customizer-header h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.customizer-card.minimized .customizer-header h4,
.customizer-card.minimized .customizer-body,
.customizer-card.minimized .customizer-footer {
  display: none;
}

.customizer-toggle {
  background: none;
  border: none;
  color: var(--brand-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customizer-body {
  padding: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.custom-group {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-main);
}

.custom-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.group-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.color-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.color-dot:hover {
  transform: scale(1.15);
}
.color-dot.active {
  box-shadow:
    0 0 0 2px var(--bg-card),
    0 0 0 4px var(--brand-color);
}

.custom-color-wrapper {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-main);
}

.custom-color-input {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: none;
}

.customizer-footer {
  padding: 8px;
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-main);
  border-top: 1px solid var(--border-main);
}

@media (max-width: 768px) {
  .customizer-card {
    bottom: 110px; /* Acima do botão do Whats */
    width: 240px;
  }
}

.customizer-body {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
}

.customizer-body::-webkit-scrollbar {
  width: 4px;
}

.customizer-body::-webkit-scrollbar-thumb {
  background: var(--border-main);
  border-radius: 10px;
}

.custom-group {
  border-bottom: 1px solid var(--border-main);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.custom-group:last-child {
  border-bottom: none;
}
