/* ============================================
   ONDORA.PT — Component Styles
   Dark theme with teal/amber accents
   ============================================ */

/* --------------------------------------------
   1. Buttons
   -------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 300ms var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--bg-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-teal);
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-teal-dim);
  border-color: var(--accent-teal);
}

.btn-amber {
  background: var(--accent-amber);
  color: white;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

/* --------------------------------------------
   2. Cards
   -------------------------------------------- */

.card {
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 16px;
  padding: var(--space-xl);
  transition: all 300ms;
}

.card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--accent-teal);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------
   3. Badge
   -------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  background: rgba(0, 212, 170, 0.04);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.badge-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
}

/* --------------------------------------------
   4. Language Toggle
   -------------------------------------------- */

.lang-toggle {
  display: flex;
  background: rgba(0, 212, 170, 0.08);
  border-radius: 100px;
  padding: 3px;
  border: 1px solid rgba(0, 212, 170, 0.15);
}

.lang-toggle button {
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms;
}

.lang-toggle button.active {
  background: var(--accent-teal);
  color: var(--bg-deep);
}

/* --------------------------------------------
   5. FAQ Accordion
   -------------------------------------------- */

.faq-item {
  border-bottom: 1px solid rgba(0, 212, 170, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-teal);
  transition: transform 300ms;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* --------------------------------------------
   6. Form Inputs
   -------------------------------------------- */

.input-group {
  display: flex;
  gap: 0.5rem;
}

.input {
  flex: 1;
  padding: 0.85rem 1.4rem;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 300ms;
}

.input:focus {
  border-color: var(--accent-teal);
}

.input::placeholder {
  color: var(--text-dim);
}

/* --------------------------------------------
   7. Progress Bar
   -------------------------------------------- */

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin: var(--space-md) 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-teal), #00f5c8);
  border-radius: 100px;
  transition: width 1s var(--ease-out);
}

/* --------------------------------------------
   8. Participation Cards
   -------------------------------------------- */

.participation-card {
  background: rgba(12, 12, 30, 0.4);
  border: 1px solid rgba(0, 212, 170, 0.06);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: border-color 300ms;
}

.participation-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
}

.participation-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------
   9. Device Cards
   -------------------------------------------- */

.device-card {
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 16px;
  padding: var(--space-xl);
  transition: all 300ms;
  border-top: 2px solid var(--accent-teal);
}

.device-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  border-top-color: var(--accent-teal);
  transform: translateY(-4px);
}

/* --------------------------------------------
   10. Steps List
   -------------------------------------------- */

.steps-list {
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  padding-left: 3rem;
  position: relative;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-teal-dim);
  color: var(--accent-teal);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

/* --------------------------------------------
   11. Divider
   -------------------------------------------- */

.divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
  margin: var(--space-lg) auto;
}

/* --------------------------------------------
   12. Section Headers
   -------------------------------------------- */

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

/* --------------------------------------------
   13. Comparison Panel
   -------------------------------------------- */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}

.comparison-panel {
  background: rgba(12, 12, 30, 0.5);
  border-radius: 16px;
  padding: var(--space-xl);
  border: 1px solid rgba(0, 212, 170, 0.06);
}

.comparison-panel--fail .panel-status {
  color: #ff4444;
}

.comparison-panel--success .panel-status {
  color: var(--accent-teal);
}

/* --------------------------------------------
   14. Map Legend
   -------------------------------------------- */

.map-legend {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(6, 6, 16, 0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 170, 0.1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.8rem;
}

.legend-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.legend-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: opacity 0.2s;
  width: 100%;
  text-align: left;
}

.legend-filter:hover {
  background: rgba(255,255,255,0.05);
}

.legend-filter:not(.active) {
  opacity: 0.35;
}

.legend-filter:not(.active) .legend-dot,
.legend-filter:not(.active) .legend-zone,
.legend-filter:not(.active) .legend-line {
  opacity: 0.3;
}

.legend-line {
  width: 14px;
  height: 2px;
  background: #8888a0;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--public {
  background: transparent;
  border: 2px solid #00d4aa;
}

.legend-dot--volunteer {
  background: transparent;
  border: 2px solid #ff6b35;
}

.legend-dot--personal {
  background: transparent;
  border: 2px solid #e8e8f0;
}

.legend-zone {
  width: 14px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  flex-shrink: 0;
}

/* --------------------------------------------
   15. Map Narrative Text
   -------------------------------------------- */

.map-narrative {
  position: absolute;
  top: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.map-narrative-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.6s;
}

/* --------------------------------------------
   16. Hero Content Styles
   -------------------------------------------- */

.logo-container {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.1));
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 550px;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------
   17. Section Header
   -------------------------------------------- */

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: block;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

/* --------------------------------------------
   18. Info Box
   -------------------------------------------- */

.info-box {
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(0, 212, 170, 0.12);
  border-radius: 12px;
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}

.info-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-box p + p {
  margin-top: var(--space-sm);
}

/* --------------------------------------------
   19. Device List
   -------------------------------------------- */

.device-list {
  list-style: none;
  margin-top: var(--space-md);
}

.device-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 212, 170, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-sm);
}

.device-list li:last-child {
  border-bottom: none;
}

.device-price {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.device-note {
  color: var(--text-dim);
  font-size: 0.85rem;
  width: 100%;
}

/* --------------------------------------------
   20. Setup Section
   -------------------------------------------- */

.setup-section {
  margin-top: var(--space-2xl);
}

.setup-time {
  margin-top: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --------------------------------------------
   21. Community Progress
   -------------------------------------------- */

.community-progress {
  margin-bottom: var(--space-xl);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.progress-labels strong {
  color: var(--text-primary);
}

/* --------------------------------------------
   22. Newsletter Form
   -------------------------------------------- */

.newsletter-form {
  margin-top: var(--space-md);
}

.newsletter-success {
  color: var(--accent-teal);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

/* --------------------------------------------
   23. Scroll Story Content
   -------------------------------------------- */

.act-content {
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
  position: relative;
  z-index: 5;
}

.act-visual {
  margin-bottom: var(--space-xl);
}

.city-svg {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.act-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

.act-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.act-highlight {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
  color: var(--accent-teal) !important;
  font-weight: 600;
}

/* --------------------------------------------
   24. Comparison Visual
   -------------------------------------------- */

.comparison-panel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.comparison-visual {
  padding: var(--space-md) 0;
}

.comparison-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.chain-link {
  color: var(--text-dim);
  font-size: 1rem;
}

.comparison-break {
  text-align: center;
  margin-top: var(--space-md);
}

.panel-status {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: var(--space-sm);
}

/* Mesh demo grid */
.mesh-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 180px;
  margin: 0 auto var(--space-md);
}

.mesh-demo-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-teal);
  margin: 0 auto;
  transition: all 0.4s;
  box-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.mesh-demo-node--down {
  background: #ff4444;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.mesh-demo-node--blink {
  opacity: 0.3;
}

.panel-status--success {
  color: var(--accent-teal);
}

/* --------------------------------------------
   25. Map Controls (Expand + Locate)
   -------------------------------------------- */

.map-controls-left {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.map-expand-btn,
.map-locate-btn {
  background: rgba(6, 6, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-expand-btn:hover,
.map-locate-btn:hover {
  color: var(--accent-teal);
  border-color: rgba(0, 212, 170, 0.4);
}

.map-locate-btn.locating {
  animation: locateSpin 1s linear infinite;
}

.map-locate-btn.located {
  color: var(--accent-teal);
  border-color: rgba(0, 212, 170, 0.4);
}

/* User location pulsing dot */
.user-location-marker {
  width: 16px;
  height: 16px;
  background: #4285f4;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(66, 133, 244, 0.4);
  animation: userLocationPulse 2s ease-out infinite;
}

/* Map expanded — fullscreen */
.map-expanded {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--bg-deep);
}

.map-expanded .map-container {
  height: 100vh;
  min-height: 100vh;
}

.map-expanded .map-cta {
  display: none;
}

/* --------------------------------------------
   26. Map Wrapper & CTA
   -------------------------------------------- */

.map-wrapper {
  position: relative;
}

.map-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-surface);
}

/* --------------------------------------------
   26. Footer Details
   -------------------------------------------- */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-brand a:hover {
  color: var(--accent-teal);
}

.footer-links h4,
.footer-external h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul,
.footer-external ul {
  list-style: none;
}

.footer-links li,
.footer-external li {
  margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-external a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 200ms;
}

.footer-links a:hover,
.footer-external a:hover {
  color: var(--accent-teal);
}

/* MapLibre popup override */
.ondora-popup .maplibregl-popup-content {
  background: rgba(6, 6, 16, 0.95);
  color: var(--text-primary);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ondora-popup .maplibregl-popup-tip {
  border-top-color: rgba(6, 6, 16, 0.95);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------
   27. Emergency Callout (Kristin)
   -------------------------------------------- */

.emergency-callout {
  background: rgba(12, 12, 30, 0.4);
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: rgba(6, 6, 16, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #00d4aa;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.stat-number--amber {
  color: #ff6b35;
}

.stat-unit {
  font-size: 0.5em;
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.emergency-quote {
  border-left: 3px solid #ff6b35;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: rgba(255, 107, 53, 0.04);
  border-radius: 0 12px 12px 0;
}

.emergency-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.emergency-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.emergency-narrative {
  max-width: 700px;
}

.emergency-narrative > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.emergency-cta-text {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-weight: 700;
  color: #00d4aa !important;
}

.emergency-storms-note {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin-top: var(--space-md);
}

/* --------------------------------------------
   28. Device Card Images & Badges
   -------------------------------------------- */

.device-image {
  background: #060610;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.device-card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  margin-bottom: var(--space-sm);
}

.device-card-badge--new {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
}

.device-card--featured {
  border-top-color: #ff6b35;
}

.device-card--featured:hover {
  border-top-color: #ff6b35;
}


/* --------------------------------------------
   29. Responsive — Stats & Devices
   -------------------------------------------- */

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .map-legend {
    flex-direction: column;
    gap: 6px;
  }
}

/* Mobile responsiveness additions */
@media (max-width: 480px) {
  .logo-container {
    width: 120px;
    height: 120px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .input-group {
    flex-direction: column;
  }

  .map-controls-left {
    top: var(--space-sm);
    left: var(--space-sm);
    gap: 4px;
  }

  .map-expand-btn,
  .map-locate-btn {
    padding: 6px;
  }

  .map-legend {
    bottom: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.7rem;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .comparison-chain {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------
   30. Flasher Page
   -------------------------------------------- */

.flasher-hero {
  padding-top: var(--space-xl);
}

.flasher-section {
  padding: var(--space-2xl) 0;
}

.flasher-section--alt {
  background: rgba(12, 12, 30, 0.4);
}

/* Quick nav cards */
.flasher-quicknav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.quicknav-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg);
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 300ms;
}

.quicknav-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.quicknav-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.quicknav-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.quicknav-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Firmware roles grid */
.firmware-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.role-card {
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: border-color 300ms;
}

.role-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
}

.role-card--featured {
  border-color: rgba(255, 107, 53, 0.2);
}

.role-card--featured:hover {
  border-color: rgba(255, 107, 53, 0.4);
}

.role-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.role-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.role-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.role-devices {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 212, 170, 0.06);
}

/* Flash steps */
.flash-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.flash-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.flash-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-teal-dim);
  color: var(--accent-teal);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.flash-step strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  margin-bottom: var(--space-xs);
}

.flash-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Browser warning */
.browser-warning {
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Flasher iframe */
.flasher-iframe-container {
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #121228;
}

.flasher-iframe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(0, 212, 170, 0.06);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.flasher-iframe-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.flasher-iframe-badge {
  font-size: 0.75rem;
  color: var(--accent-teal);
  background: var(--accent-teal-dim);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-weight: 600;
}

/* Guide grid */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.guide-card {
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 12px;
  padding: var(--space-xl);
}

.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.guide-steps {
  list-style: none;
  counter-reset: guide-steps;
}

.guide-steps li {
  counter-increment: guide-steps;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

.guide-steps li::before {
  content: counter(guide-steps);
  position: absolute;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-teal-dim);
  color: var(--accent-teal);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Console block */
.console-block {
  background: #0a0a18;
  border: 1px solid rgba(0, 212, 170, 0.1);
  border-radius: 8px;
  padding: var(--space-lg);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
}

.console-block code {
  display: block;
  color: var(--accent-teal);
  white-space: pre;
}

.console-block code:empty {
  height: 0.5rem;
}

.cmd-comment {
  color: var(--text-dim);
}

/* Room features */
.room-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room-feature {
  background: rgba(12, 12, 30, 0.6);
  border: 1px solid rgba(0, 212, 170, 0.08);
  border-radius: 12px;
  padding: var(--space-lg);
}

.room-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.room-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Command table */
.cmd-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 170, 0.1);
}

.cmd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cmd-table thead {
  background: rgba(0, 212, 170, 0.06);
}

.cmd-table th {
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.cmd-table td {
  padding: var(--space-sm) var(--space-lg);
  border-bottom: 1px solid rgba(0, 212, 170, 0.04);
  color: var(--text-secondary);
  vertical-align: top;
}

.cmd-table td:first-child {
  white-space: nowrap;
}

.cmd-table code {
  color: var(--accent-teal);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
}

.cmd-table tr:last-child td {
  border-bottom: none;
}

/* Resource list */
.resource-list {
  list-style: none;
}

.resource-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.resource-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
}

.resource-list a {
  font-size: 0.9rem;
}

/* Flasher page responsive */
@media (max-width: 768px) {
  .flasher-quicknav {
    grid-template-columns: repeat(2, 1fr);
  }

  .firmware-roles-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .room-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .flasher-quicknav {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------
   31. SOS Demo — "A Historia da Maria"
   -------------------------------------------- */

.sos-demo {
  background: rgba(12, 12, 30, 0.3);
}

.sos-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.sos-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.sos-step.sos-visible {
  opacity: 1;
  transform: translateY(0);
}

.sos-step:nth-child(even) {
  direction: rtl;
}

.sos-step:nth-child(even) > * {
  direction: ltr;
}

.sos-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: rgba(6, 6, 16, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 170, 0.06);
  padding: var(--space-lg);
  overflow: hidden;
}

.sos-text {
  padding: var(--space-md) 0;
}

.sos-step-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: var(--space-sm);
}

.sos-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.sos-step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* SOS Button (Step 2) */
.sos-btn-demo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ff4444, #cc0000);
  border: 4px solid rgba(255, 68, 68, 0.4);
  color: white;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: sosPulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.sos-btn-demo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}

.sos-btn-demo:active {
  transform: scale(0.95);
}

.sos-btn-demo.sos-pressed {
  animation: none;
  background: radial-gradient(circle at 40% 35%, #ff6666, #ee2222);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.6);
}

/* GPS Coordinates display */
.sos-coords {
  margin-top: var(--space-md);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--accent-teal);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}

.sos-coords.sos-coords-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mesh network animation (Step 3) */
.sos-mesh-container {
  width: 100%;
  max-width: 400px;
}

.sos-mesh-svg {
  width: 100%;
  height: auto;
}

.sos-mesh-node {
  fill: var(--text-dim);
  transition: fill 0.4s;
}

.sos-mesh-node.sos-node-active {
  fill: var(--accent-teal);
}

.sos-mesh-node.sos-node-maria {
  fill: #ff4444;
}

.sos-mesh-node.sos-node-bombeiros {
  fill: #ff6b35;
}

.sos-mesh-line {
  stroke: var(--text-dim);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  opacity: 0.2;
  transition: opacity 0.4s, stroke 0.4s;
}

.sos-mesh-line.sos-line-active {
  stroke: var(--accent-teal);
  opacity: 0.8;
}

.sos-mesh-packet {
  fill: var(--accent-teal);
  filter: drop-shadow(0 0 4px rgba(0, 212, 170, 0.6));
  opacity: 0;
}

.sos-mesh-packet.sos-packet-traveling {
  opacity: 1;
}

.sos-mesh-label {
  fill: var(--text-secondary);
  font-size: 10px;
  font-family: var(--font-body);
  text-anchor: middle;
}

/* Received screen mockup (Step 4) */
.sos-received-screen {
  background: #0a0a1a;
  border: 2px solid rgba(255, 107, 53, 0.4);
  border-radius: 12px;
  padding: var(--space-lg);
  width: 100%;
  max-width: 320px;
  font-family: 'Courier New', monospace;
}

.sos-received-header {
  color: #ff4444;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 68, 68, 0.3);
  animation: sosPulse 1.5s ease-in-out infinite;
}

.sos-received-field {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.85rem;
}

.sos-received-label {
  color: var(--text-dim);
}

.sos-received-value {
  color: var(--text-primary);
}

/* Checkmark (Step 5) */
.sos-checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sos-step.sos-visible .sos-checkmark {
  animation: checkPop 0.6s var(--ease-out);
}

.sos-checkmark svg {
  width: 50px;
  height: 50px;
  color: var(--bg-deep);
}

.sos-demo-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Step 1 village visual */
.sos-village-svg {
  width: 100%;
  max-width: 350px;
  height: auto;
}

@media (max-width: 768px) {
  .sos-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sos-step:nth-child(even) {
    direction: ltr;
  }

  .sos-visual {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .sos-btn-demo {
    width: 100px;
    height: 100px;
    font-size: 1.3rem;
  }
}

/* --------------------------------------------
   32. Community Momentum Stats
   -------------------------------------------- */

.community-momentum {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.momentum-stat {
  text-align: center;
}

.momentum-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-teal);
  line-height: 1.2;
}

.momentum-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.momentum-cta {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

/* Rooftop pulse animation for Act 3 */
.rooftop-pulse {
  animation: radioPulse 2.5s ease-out infinite;
}

.act-awakening.animate-mesh .mesh-connections line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dashMove 1.5s ease forwards;
}

.act-awakening.animate-mesh .mesh-connections line:nth-child(2) { animation-delay: 0.15s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(3) { animation-delay: 0.3s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(4) { animation-delay: 0.45s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(5) { animation-delay: 0.6s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(6) { animation-delay: 0.75s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(7) { animation-delay: 0.9s; }
.act-awakening.animate-mesh .mesh-connections line:nth-child(8) { animation-delay: 1.05s; }

/* --------------------------------------------
   33. Roadmap Timeline
   -------------------------------------------- */

.roadmap-timeline {
  position: relative;
  padding-top: var(--space-lg);
}

.roadmap-progress {
  height: 4px;
  background: var(--bg-surface);
  border-radius: 100px;
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.roadmap-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-teal), #00f5c8);
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.roadmap-phase {
  background: rgba(12, 12, 30, 0.5);
  border: 1px solid rgba(0, 212, 170, 0.06);
  border-radius: 16px;
  padding: var(--space-lg);
  transition: all 300ms;
  position: relative;
}

.roadmap-phase:hover {
  transform: translateY(-4px);
}

/* Phase states */
.roadmap-phase--done {
  border-color: rgba(0, 212, 170, 0.2);
}

.roadmap-phase--done:hover {
  border-color: rgba(0, 212, 170, 0.35);
}

.roadmap-phase--active {
  border-color: var(--accent-teal);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.1), inset 0 0 30px rgba(0, 212, 170, 0.03);
}

.roadmap-phase--active:hover {
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.15), inset 0 0 30px rgba(0, 212, 170, 0.03);
}

.roadmap-phase--future {
  opacity: 0.5;
  border-color: rgba(0, 212, 170, 0.04);
}

.roadmap-phase--future:hover {
  opacity: 0.7;
}

/* Phase number circle */
.roadmap-phase-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.roadmap-phase--done .roadmap-phase-number {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-teal);
}

.roadmap-phase--active .roadmap-phase-number {
  background: var(--accent-teal);
  color: var(--bg-deep);
}

.roadmap-phase--future .roadmap-phase-number {
  background: rgba(0, 212, 170, 0.08);
  color: var(--text-dim);
}

/* Phase name */
.roadmap-phase-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

/* Phase period */
.roadmap-phase-period {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

/* Phase badge */
.roadmap-phase-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.roadmap-badge--done {
  color: var(--accent-teal);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.roadmap-badge--active {
  color: #fff;
  background: rgba(0, 212, 170, 0.25);
  border: 1px solid var(--accent-teal);
  animation: sosPulse 2.5s ease-in-out infinite;
}

.roadmap-badge--future {
  color: var(--text-dim);
  background: rgba(136, 136, 160, 0.08);
  border: 1px solid rgba(136, 136, 160, 0.15);
}

.roadmap-badge--vision {
  color: var(--text-dim);
  background: rgba(136, 136, 160, 0.06);
  border: 1px solid rgba(136, 136, 160, 0.1);
}

/* Phase items list */
.roadmap-phase-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-phase-items li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.roadmap-phase-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.roadmap-phase--done .roadmap-phase-items li::before {
  background: var(--accent-teal);
}

.roadmap-phase--active .roadmap-phase-items li::before {
  background: var(--accent-teal);
}

.roadmap-phase--future .roadmap-phase-items li::before {
  background: var(--text-dim);
}

/* Roadmap responsive — Tablet */
@media (max-width: 768px) {
  .roadmap-phases {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Roadmap responsive — Mobile */
@media (max-width: 480px) {
  .roadmap-phases {
    grid-template-columns: 1fr;
  }

  .roadmap-progress {
    display: none;
  }
}

/* ============================================
   Back to Top Button
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 170, 0.3);
  background: rgba(12, 12, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-out),
              visibility 0.3s var(--ease-out),
              transform 0.3s var(--ease-out),
              background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--accent-teal);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
  }
}
