/* Remover Tailwind */
/* HEADER */
.site-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.header-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo {
  height: 32px;
  width: auto;
  display: block;
}
.header-title {
  color: #22223b;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.header-btn {
  background: linear-gradient(90deg, #2563EB, #4F46E5);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-btn:hover {
  background: linear-gradient(90deg, #4F46E5, #2563EB);
  color: #fff;
  transform: scale(1.04);
}
.header-btn-text-full {
  display: inline;
}
.header-btn-text-short {
  display: none;
}
@media (max-width: 600px) {
  .header-title { font-size: 1rem; }
  .header-btn-text-full { display: none; }
  .header-btn-text-short { display: inline; }
  .header-flex { height: 56px; }
  .header-logo { height: 24px; }
}

/* Carrossel infinito horizontal */
.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-carousel 30s linear infinite;
  gap: 2rem;
}
@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botões modernos */
.btn, .bg-primary, .bg-secondary {
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover, .bg-primary:hover, .bg-secondary:hover {
  background: linear-gradient(90deg, #2563EB, #4F46E5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.15);
  transform: scale(1.04);
}

/* Cards e seções com sombra */
.card, .rounded-2xl, .rounded-3xl {
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .rounded-2xl:hover, .rounded-3xl:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Imagens dos agentes */
.agent-img {
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #2563EB;
  object-fit: cover;
}

/* Divisores visuais */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  margin: 2rem 0;
  border: none;
}

/* Animações suaves */
.animate-fade-in {
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes slideUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .carousel-track { gap: 1rem; }
  .card, .rounded-2xl, .rounded-3xl { border-radius: 1rem !important; }
}

/* Tipografia moderna */
body, .font-sans {
  font-family: 'Inter', 'Poppins', 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Ícones coloridos */
.icon-color {
  color: #2563EB;
}

@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--scroll-width, 1800px) / 2)); }
}
.animate-scroll-x {
  animation: scroll-x 40s linear infinite;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  color: #fff;
  padding: 60px 0 40px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 350px; }
.hero-badge {
  background: #fff2;
  color: #ffe066;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 16px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
}
.highlight { color: #ffe066; }
.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #e0e7ff;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn-primary {
  background: linear-gradient(90deg, #2563EB, #4F46E5);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #4F46E5, #2563EB);
  color: #fff;
  transform: scale(1.04);
}
.btn-secondary {
  background: #fff;
  color: #2563EB;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #e0e7ff;
  color: #2563EB;
  transform: scale(1.04);
}
.hero-image-area { flex: 1 1 350px; display: flex; justify-content: center; }
.hero-image {
  max-width: 400px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* AGENTS SECTION */
.agents-section { background: #f8fafc; padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.section-title .highlight { color: #2563EB; }
.agents-cards { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.agent-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.agent-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.agent-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10); border: 3px solid #2563EB; margin-bottom: 16px;
}
.agent-blue .agent-img { border-color: #2563EB; }
.agent-green .agent-img { border-color: #22c55e; }
.agent-purple .agent-img { border-color: #a855f7; }
.agent-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.agent-role { color: #2563EB; font-weight: 600; font-size: 1rem; margin-bottom: 10px; display: block; }
.agent-tags { color: #64748b; font-size: 0.95rem; margin-top: 10px; }

/* METRICS SECTION */
.metrics-section { background: #22223b; color: #fff; padding: 60px 0; }
.metrics-cards { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.metric-card {
  background: #fff2;
  border-radius: 24px;
  padding: 32px 24px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  color: #fff;
  font-weight: 600;
}
.metric-green { border-top: 4px solid #22c55e; }
.metric-blue { border-top: 4px solid #2563EB; }
.metric-purple { border-top: 4px solid #a855f7; }
.metric-yellow { border-top: 4px solid #facc15; }
.metric-value { font-size: 2.2rem; font-weight: 800; display: block; margin-bottom: 8px; }
.metric-label { font-size: 1.1rem; }

/* TECH SECTION (CARROSSEL) */
.tech-section { background: #f8fafc; padding: 60px 0; }
.tech-carousel { overflow: hidden; width: 100%; }
.tech-track {
  display: flex;
  gap: 48px;
  animation: tech-scroll 40s linear infinite;
  align-items: center;
}
@keyframes tech-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tech-item { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.tech-item img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 8px; }
.tech-item span { color: #22223b; font-size: 1rem; margin-top: 4px; }

/* OMNICHANNEL SECTION */
.omni-section { background: #fff; padding: 60px 0; }
.omni-features { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.omni-feature { background: #f1f5f9; border-radius: 16px; padding: 16px 24px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.omni-icon { font-size: 1.5rem; }
.omni-btns { display: flex; gap: 16px; justify-content: center; }

/* PROCESS SECTION */
.process-section { background: #f8fafc; padding: 60px 0; }
.process-steps { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.process-step { background: #fff; border-radius: 16px; padding: 24px 32px; font-size: 1.1rem; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 12px; }
.process-icon { font-size: 1.5rem; }

/* CONTACT SECTION */
.contact-section { background: #fff; padding: 60px 0; }
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 40px 32px 32px 32px;
  border: 2.5px solid #2563EB;
  position: relative;
  z-index: 1;
}
.form-row { display: flex; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
.form-group { flex: 1 1 180px; display: flex; flex-direction: column; }
.form-group label { font-weight: 600; margin-bottom: 6px; color: #22223b; }
.form-group input, .form-group select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  margin-bottom: 2px;
}
.form-actions { text-align: center; margin-top: 18px; }
.error-msg { color: #e11d48; font-size: 1rem; margin-top: 8px; }
.success-msg { color: #22c55e; font-size: 1.1rem; margin-top: 12px; text-align: center; }

/* GERAL E RESPONSIVIDADE */
body { font-family: 'Inter', Arial, sans-serif; background: #f4f6fb; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', Arial, sans-serif; font-weight: 800; margin: 0; }
p { margin: 0 0 10px 0; }
@media (max-width: 900px) {
  .hero-content { flex-direction: column; gap: 24px; }
  .agents-cards, .metrics-cards, .process-steps, .omni-features { flex-direction: column; gap: 18px; }
  .tech-track { gap: 24px; }
}
@media (max-width: 600px) {
  .header-container, .footer-container { padding: 0 4px; }
  .header-flex, .footer-flex { flex-direction: column; align-items: stretch; gap: 8px; height: auto; }
  .header-logo, .footer-logo { height: 20px; }
  .header-title, .footer-title { font-size: 1rem; }
  .hero-content, .agents-cards, .metrics-cards, .process-steps, .omni-features { flex-direction: column !important; gap: 10px !important; align-items: stretch !important; }
  .hero-section, .agents-section, .metrics-section, .tech-section, .omni-section, .process-section, .contact-section { padding: 24px 0 !important; }
  .hero-image-area, .omni-image-area { justify-content: center; }
  .hero-image, .omni-image-area img { max-width: 100% !important; width: 100% !important; height: auto !important; border-radius: 12px !important; }
  .card, .agent-card, .metric-card, .process-step, .contact-form, .container { max-width: 100% !important; width: 100% !important; box-sizing: border-box; margin: 0 0 12px 0 !important; }
  .form-row { flex-direction: column !important; gap: 6px !important; }
  .form-group { width: 100% !important; }
  .form-group input, .form-group select { width: 100% !important; font-size: 1rem !important; }
  .btn-primary, .btn-secondary, .btn { width: 100% !important; padding: 12px 0 !important; font-size: 1.05rem !important; }
  .tech-track, .carousel-track { gap: 10px !important; }
  .tech-item, .carousel-item { min-width: 80px !important; }
  .toast { right: 1rem; left: 1rem; min-width: unset; max-width: 95vw; font-size: 1rem; }
}
@media (max-width: 400px) {
  .hero-title, .section-title h2 { font-size: 0.9rem !important; }
  .footer-title, .footer-copy { font-size: 0.75rem !important; }
  .btn-primary, .btn-secondary, .btn { font-size: 0.95rem !important; }
}

/* FOOTER */
.site-footer {
  background: #22223b;
  color: #fff;
  padding: 40px 0 20px 0;
  margin-top: 40px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}
.footer-title {
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: #e0e7ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffe066;
}
.footer-social {
  display: flex;
  gap: 14px;
  font-size: 1.5rem;
}
.footer-copy {
  text-align: center;
  color: #a3aed6;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-logo {
    height: 24px;
  }
}

/* Mensagem de sucesso sobreposta e destacada */
#form-success.success-msg {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(34,197,94,0.18), 0 2px 8px rgba(0,0,0,0.08);
  border: 2.5px solid #22c55e;
  padding: 36px 28px;
  min-width: 320px;
  text-align: center;
  color: #22c55e;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  position: static;
  z-index: 1;
}
@media (max-width: 600px) {
  #form-success.success-msg {
    min-width: 0;
    padding: 18px 8px;
    font-size: 1rem;
  }
}

.hidden { display: none !important; }

@media (max-width: 480px) {
  .container, .contact-form, .card, .agent-card, .metric-card, .process-step {
    padding: 10px 4px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  .container { margin: 10px 0; }
  .hero-title, .section-title h2 { font-size: 1.05rem; }
  .hero-desc, .section-title p, .metric-label, .agent-role, .agent-tags, .process-step, .omni-feature, .form-group label, .form-group input, .form-group select, .btn-primary, .btn-secondary {
    font-size: 0.98rem !important;
  }
  .footer-container, .header-container { padding: 0 6px; }
  .footer-logo { height: 18px; }
  .footer-title { font-size: 0.95rem; }
  .footer-copy { font-size: 0.85rem; }
  .hero-image { max-width: 120px; }
  .tech-item img { width: 40px; height: 40px; }
  .tech-item span { font-size: 0.85rem; }
  .form-row { gap: 4px; }
}
@media (max-width: 375px) {
  .container, .contact-form { padding: 4px 2px !important; }
  .hero-title, .section-title h2 { font-size: 0.95rem; }
  .footer-title, .footer-copy { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .hero-section {
    padding-top: 16px !important;
    padding-bottom: 12px !important;
    margin-top: 10px !important;
  }
  .hero-content {
    gap: 6px !important;
  }
  .hero-title {
    font-size: 1.08rem !important;
    margin-bottom: 6px !important;
  }
  .hero-desc {
    font-size: 0.98rem !important;
    margin-bottom: 8px !important;
  }
  .hero-btns {
    gap: 8px !important;
    margin: 0 0 8px 0 !important;
  }
  .hero-image-area {
    margin: 0 auto !important;
    max-width: 90vw !important;
    flex: none !important;
  }
  .hero-image {
    max-height: 120px !important;
    border-radius: 10px !important;
    margin: 0 auto !important;
  }
  .hero-text {
    flex: none !important;
  }
}
@media (max-width: 400px) {
  .hero-image { max-width: 98vw !important; max-height: 32vh !important; border-radius: 10px !important; }
}

@media (max-width: 600px) {
  body { padding: 0 !important; }
  .container, .contact-form, .card, .agent-card, .metric-card, .process-step, .section-title, .hero-section, .agents-section, .metrics-section, .tech-section, .omni-section, .process-section, .contact-section {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
    box-sizing: border-box;
  }
  .hero-section, .agents-section, .metrics-section, .tech-section, .omni-section, .process-section, .contact-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 10px !important;
  }
  .hero-content, .agents-cards, .metrics-cards, .process-steps, .omni-features {
    gap: 18px !important;
  }
  .hero-image-area, .omni-image-area { justify-content: center; }
  .hero-image, .omni-image-area img {
    max-width: 92vw !important;
    width: 100% !important;
    height: auto !important;
    max-height: 36vh !important;
    aspect-ratio: 1.2/1 !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    margin: 0 auto 10px auto !important;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }
  .card, .agent-card, .metric-card, .process-step {
    margin-bottom: 14px !important;
    padding: 14px 6px !important;
    border-radius: 10px !important;
  }
  .tech-track, .carousel-track { gap: 12px !important; }
  .tech-item, .carousel-item { min-width: 70px !important; }
  .form-row { gap: 8px !important; }
  .form-group input, .form-group select { font-size: 1.05rem !important; }
  .btn-primary, .btn-secondary, .btn { width: 100% !important; padding: 13px 0 !important; font-size: 1.08rem !important; margin-bottom: 8px; }
  .toast { right: 2vw; left: 2vw; max-width: 96vw; font-size: 1rem; }
}
@media (max-width: 400px) {
  .container, .contact-form { padding-left: 2vw !important; padding-right: 2vw !important; }
  .hero-image, .omni-image-area img { max-width: 98vw !important; max-height: 28vh !important; border-radius: 8px !important; }
}

@media (max-width: 600px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 12px 4vw 14px 4vw !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    margin: 0 auto 10px auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
  }
  .form-row {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
  }
  .form-group {
    width: 100% !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    font-size: 1.02rem !important;
    margin-bottom: 4px !important;
    font-weight: 600;
  }
  .form-group input, .form-group select {
    width: 100% !important;
    font-size: 1.05rem !important;
    padding: 12px 10px !important;
    border-radius: 7px !important;
    margin-bottom: 2px !important;
    border: 1.3px solid #b6c3e0 !important;
    background: #f8fafc !important;
    box-sizing: border-box !important;
  }
  .form-actions {
    margin-top: 14px !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary, .btn {
    width: 100% !important;
    padding: 13px 0 !important;
    font-size: 1.08rem !important;
    border-radius: 999px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
  }
}

@media (max-width: 600px) {
  .form-row {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }
  .form-group {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .form-group input, .form-group select {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    min-height: 0 !important;
    height: 28px !important;
    font-size: 0.98rem !important;
    box-sizing: border-box !important;
    line-height: 1.1 !important;
  }
}

/* Forçar compactação máxima dos campos do formulário no mobile */
@media (max-width: 600px) {
  .form-group {
    flex: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-section, .hero-content {
    min-height: 0 !important;
    height: auto !important;
    flex: none !important;
  }
  .hero-content {
    gap: 2px !important;
  }
  .hero-title {
    font-size: 1.02rem !important;
    margin-bottom: 4px !important;
  }
  .hero-btns {
    gap: 4px !important;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.93rem !important;
    padding: 8px 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-content {
    gap: 0 !important;
  }
  .hero-btns {
    margin-bottom: 0 !important;
  }
  .hero-image {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-btns, .hero-image, .hero-image-area, .hero-text {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-image {
    margin-top: 8px !important;
  }
  .btn-primary {
    background: linear-gradient(90deg, #2563EB 60%, #3b82f6 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(37,99,235,0.18) !important;
    font-size: 1.12rem !important;
    padding: 13px 0 !important;
    border-radius: 999px !important;
    letter-spacing: 0.01em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .btn-primary:active, .btn-primary:focus {
    background: linear-gradient(90deg, #1d4ed8 60%, #2563EB 100%) !important;
    box-shadow: 0 2px 8px rgba(37,99,235,0.22) !important;
    transform: scale(0.98);
  }
}
