/* ==========================================================================
   STYLE.CSS — ESTILOS GLOBAIS E LANDING PAGES (MOTORISTA/ANUNCIANTE/HOME)
   ========================================================================== */

/* 1. IMPORTAÇÃO DE FONTES (Barlow + Syne) */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Barlow:wght@400;500;600&family=Syne:wght@700;800&display=swap');

/* 2. VARIÁVEIS E BASE */
:root {
  /* Cores */
  --background: #29353d;
  --foreground: #fafafa;
  --card: #212b31;
  --card-foreground: #fafafa;
  --primary: #f6c90e;
  /* Amarelo DriveAd */
  --primary-foreground: #192024;
  --secondary: #3a4a54;
  --muted-foreground: #b8b8b8;
  --accent: #f7d114;
  --border: #46555e;
  --success: #22c55e;

  /* Cores Light Mode (para seções específicas) */
  --light-background: #f0f2f5;
  --dark-foreground: #1c252b;
  --light-text: #555;
  --light-card: #ffffff;
  --light-border: #e2e8f0;

  /* Tipografia */
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  /* Títulos */
  --font-accent: 'Syne', sans-serif;
  /* Detalhes artísticos/números */

  --radius: 0.875rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.btn {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.profile-selection .container {
  padding-left: 0;
  padding-right: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* ========================================
   VIDEO BACKGROUND (HOME / SPLASH)
   ======================================== */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: var(--background);
  /* Fallback */
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 20, 25, 0.75);
  /* Escurece o vídeo para o texto brilhar */
  background: linear-gradient(to bottom, rgba(14, 20, 25, 0.6), rgba(14, 20, 25, 0.9));
  z-index: 1;
}

/* ========================================
   PROFILE SELECTION SCREEN (HOME)
   ======================================== */
.profile-selection {
  min-height: 100vh;
  display: flex;
  /* Ajuste para centralizar */
  align-items: center;
  justify-content: center;
  position: relative;
  /* Importante: Fundo transparente para ver o vídeo */
  background: transparent !important;
  z-index: 10;
}

.profile-selection::before {
  display: none;
  /* Remove background sólido antigo */
}

.profile-selection-content {
  max-width: 1200px;
  width: 100%;
}

/* Splash: Logo e Títulos */
.section-welcome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.section-welcome .title {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
}

.logo-center {
  height: 4rem;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-center {
  transform: scale(1.05);
}

.profile-selection .subtitle {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1;
  color: #fff;
}

.profile-selection .subtitle span {
  color: var(--primary);
  font-style: italic;
  /* Opcional: dá movimento */
}

.splash-description {
  font-size: 1.1rem;
  color: #d1d5db;
  /* Texto mais claro para fundo de vídeo */
  line-height: 1.6;
}

.splash-description strong {
  color: #fff;
  font-weight: 600;
}

/* Splash: Link "Saiba Mais" */
.saiba-mais-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(246, 201, 14, 0.4);
  margin-left: 1.5rem;
  padding-bottom: 2px;
  margin-bottom: 3rem;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.saiba-mais-link:hover {
  border-bottom-color: var(--primary);
  gap: 0.75rem;
  color: #fff;
}

/* Splash: Cards de Seleção */
.selection-question {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  padding: 0;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Glassmorphism para o vídeo */
  background: rgba(33, 43, 49, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem 2rem 3rem 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  text-align: center;
}

.profile-card:hover {
  border-color: var(--primary);
  background: rgba(33, 43, 49, 0.8);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.profile-card .icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background-color: rgba(246, 201, 14, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.profile-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(3deg);
  background-color: var(--primary);
}

.profile-card:hover .icon-wrapper svg {
  color: var(--primary-foreground);
  /* Ícone fica escuro no hover */
}

.profile-card .icon-wrapper svg {
  color: var(--primary);
  transition: color 0.3s;
}

.profile-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  text-transform: uppercase;
}

.profile-card p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.profile-card .btn {
  width: 250px;
}

/* Splash Footer */
.splash-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  background: rgba(14, 20, 25, 0.8);
  backdrop-filter: blur(10px);
}

.splash-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.splash-footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.splash-footer-links {
  display: flex;
  gap: 1.5rem;
}

.splash-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.splash-footer-social:hover {
  opacity: 1;
  color: var(--primary);
}

/* ========================================
   HEADER & NAV (Motorista/Anunciante)
   ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(41, 53, 61, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  margin-top: 8px;
  height: 36px;
}

nav.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

.btn-login {
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem !important;
}

/* Trocar perfil link */
#change-profile {
  font-size: 0.85rem;
  opacity: 0.6;
  border-bottom: 1px solid transparent;
}

#change-profile:hover {
  opacity: 1;
  border-bottom-color: var(--primary);
}

/* Mobile Nav */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
  padding: 10px;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.2s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--background);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.mobile-nav[data-visible="true"] {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1rem;
}

.mobile-nav a {
  font-size: 1.75rem;
  color: var(--foreground);
}

/* ========================================
   COMPONENTES UI GERAIS
   ======================================== */
.highlight {
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(246, 201, 14, 0.3);
  color: var(--primary);
  background-color: rgba(246, 201, 14, 0.3);
  font-family: var(--font-display);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px rgba(246, 201, 14, 0.3);
}

.btn-primary:hover {
  background: #e5bb0c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 201, 14, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(246, 201, 14, 0.05);
}

/* ========================================
   SEÇÕES DAS LPs (Hero, Benefits, etc)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero LP */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(41, 53, 61, 0.9), rgba(41, 53, 61, 1)), url("../assets/hero.png");
  background-size: cover;
  background-position: left;
  background-attachment: fixed;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.about-us {
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgb(255, 255, 255)), url("../assets/hero.jpeg");
  background-attachment: fixed;
  background-position: left;

}

.about-us :first-child {
  max-width: 900px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--primary);
  font-family: var(--font-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

/* Benefits & Steps */
.benefits,
.signup-section {
  padding: 6rem 0;
}

.section-light {
  background-color: var(--light-background);
  color: var(--dark-foreground);
  padding: 6rem 0;
}

.section-light .section-header p {
  color: var(--light-text);
}

.section-light h2 {
  color: var(--dark-foreground);
}

.benefits-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card,
.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.section-light .benefit-card,
.section-light .step-card {
  background: #fff;
  border-color: var(--light-border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover,
.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.benefit-card h3,
.step-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(246, 201, 14, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-light .icon-wrapper {
  background-color: rgba(246, 201, 14, 0.15);
  color: #dfa60a;
}

.step-card {
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 800;
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq-section {
  padding-top: 3rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  transition: all 0.3s;
}

.faq-item[open] {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Signup Section */
.signup-card {
  background: linear-gradient(135deg, rgba(33, 43, 49, 0.9), rgba(21, 29, 34, 0.95));
  border: 1px solid var(--primary);
  border-radius: 2rem;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(246, 201, 14, 0.1);
  text-align: center;

}

.signup-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  margin-bottom: 1rem;
}

.signup-card p {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.trust-check {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Footer (Padrão das LPs) */
footer {
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 30px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal p {
  margin-bottom: 8px;
  color: #666;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--card);
  border-top: 1px solid var(--primary);
  padding: 1rem 0;
  z-index: 10000;
  display: none;
  /* Controlado via JS */
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Responsividade Geral */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .logo-center {
    height: 3rem;
    transition: transform 0.3s ease;
  }

  .section-welcome {
    margin-bottom: 1.5rem;
  }

  .section-welcome .title {
    font-size: 1.5rem;
  }

  .profile-selection .subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* =======================================================
   CORREÇÃO DE VISIBILIDADE (HOTFIX)
   Adicione ao final do style.css
   ======================================================= */

/* 1. Garante que o conteúdo fique acima do vídeo */
.profile-selection {
  position: relative;
  z-index: 100;
  /* Força ficar acima de tudo */
  width: 100%;
  padding: 3rem 0rem;
}

.profile-selection-content {
  position: relative;
  z-index: 101;
}

.section-welcome,
.splash-description,
.profile-selection .subtitle,
.selection-question {
  padding: 0rem 1.5rem;
  max-width: 500px;
  text-align: start;
  margin-bottom: 1.5rem;
}

/* 2. Força a exibição dos cards caso a animação falhe */
.profile-cards {
  display: grid !important;
  opacity: 1 !important;
  /* Previne que o AOS esconda se o JS falhar */
  transform: none !important;
  visibility: visible !important;
}

/* 3. Garante contraste se o vídeo não carregar */
body {
  background-color: #1a2024;
  /* Fundo escuro de segurança */
}

.profile-card h3,
.profile-card p,
.selection-question {
  color: #ffffff !important;
  /* Força texto branco */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Melhora leitura sobre vídeos claros */
}

/* 4. Ajuste do Grid para telas menores */
@media (max-width: 768px) {
  .profile-cards {
    grid-template-columns: 1fr;
    /* Um card por linha no mobile */
    padding: 0 1rem;
  }
}

.fase-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #86efac;
  font-family: var(--font-body);
}

.fase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
  }
}