/* ==========================================================================
   Mango Mel Brasília - Stylesheet (Premium Landing Page)
   ========================================================================== */

:root {
  /* Color Palette */
  --color-bg-dark: #061400;         /* Deep Tropical Forest Green */
  --color-bg-medium: #0b2300;       /* Medium Forest Green */
  --color-honey-gold: #FFB700;      /* Honey Gold / Yellow */
  --color-mango-orange: #FF6F00;    /* Vibrant Mango Orange */
  --color-coral-red: #E03A14;       /* Attention Call-To-Action Red */
  --color-text-light: #FFFFFF;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-brand-brown: #331B0B;     /* Deep Honeycomb Brown */
  
  /* Fonts */
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Lexend', sans-serif;
  
  /* Layout Options */
  --border-radius-pill: 50px;
  --border-radius-card: 24px;
  --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--color-bg-dark);
  font-family: var(--font-body);
  color: var(--color-text-light);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Radial Gradient Overlay & Floating Glow Spheres */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 15%, var(--color-bg-medium) 0%, var(--color-bg-dark) 85%);
  z-index: -2;
}

.ambient-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  top: -80px;
  left: -80px;
  background-color: var(--color-honey-gold);
  animation: floatAmbient 10s infinite alternate ease-in-out;
}

.glow-2 {
  bottom: 80px;
  right: -80px;
  background-color: var(--color-mango-orange);
  animation: floatAmbient 14s infinite alternate-reverse ease-in-out;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 20px) scale(1.15); }
}

/* Page Container (Mobile-first focused layout) */
.page-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ==========================================================================
   1. Hero & Profile Section
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-container {
  width: 160px;
  margin-bottom: 20px;
  position: relative;
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.hero-logo:hover {
  transform: scale(1.04);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-honey-gold);
  margin-bottom: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 92%;
  margin-bottom: 24px;
}

/* Info Block */
.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--border-radius-pill);
  font-size: 13.5px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.info-item i {
  color: var(--color-honey-gold);
  font-size: 15px;
}

.info-item.link-item:hover {
  background-color: rgba(255, 183, 0, 0.1);
  border-color: rgba(255, 183, 0, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   2. Quick Conversion Section
   ========================================================================== */
.conversion-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16.5px;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-bounce);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

/* Action button shine effect */
.btn-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.btn-action:hover::after {
  left: 150%;
  transition: all 0.8s ease-in-out;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--color-honey-gold) 0%, var(--color-mango-orange) 100%);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
  font-size: 20px;
  animation: wppPulse 2s infinite alternate ease-in-out;
}

@keyframes wppPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 111, 0, 0.35);
}

.btn-instagram {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-light);
}

.btn-instagram:hover {
  background-color: var(--color-coral-red);
  border-color: var(--color-coral-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(224, 58, 20, 0.3);
}

/* ==========================================================================
   3. Social Proof / Gallery Section
   ========================================================================== */
.gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.badge-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-honey-gold);
  background-color: rgba(255, 183, 0, 0.12);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 183, 0, 0.2);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-honey-gold);
  margin: 8px auto 0 auto;
  border-radius: 1px;
}

/* CSS Grid 2 columns */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

/* Instagram Post Styling */
.instagram-post {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  width: 100%;
}

.instagram-post:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 0, 0.25);
  box-shadow: var(--soft-shadow);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-honey-gold);
}

.post-user-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.post-username {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
}

.post-location {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  margin-top: 2px;
}

.post-menu {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  cursor: pointer;
}

.post-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #000;
}

.instagram-post.post-video .post-media {
  aspect-ratio: 9 / 16;
}

.post-media img,
.post-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 18px;
}

.actions-left {
  display: flex;
  gap: 16px;
}

.post-actions i {
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.post-actions i:hover {
  color: var(--color-honey-gold);
}

.post-caption {
  padding: 0 14px 14px 14px;
  font-size: 12.5px;
  text-align: left;
  line-height: 1.4;
}

.post-caption p {
  color: rgba(255, 255, 255, 0.85);
}

.post-caption strong {
  color: var(--color-text-light);
  margin-right: 6px;
}

.videos-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

/* ==========================================================================
   4. Featured Events Section
   ========================================================================== */
.events-section {
  width: 100%;
}

.event-card {
  background: linear-gradient(135deg, var(--color-honey-gold) 0%, #FFA800 100%);
  color: var(--color-brand-brown);
  border-radius: var(--border-radius-card);
  padding: 30px 24px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* Background honeycomb pattern detail */
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle, var(--color-brand-brown) 10%, transparent 11%),
                    radial-gradient(circle, var(--color-brand-brown) 10%, transparent 11%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.event-badge {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background-color: var(--color-brand-brown);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(51, 27, 11, 0.2);
}

.event-title {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
}

.event-description {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
  max-width: 94%;
}

/* Advantages Grid with custom checkmarks */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 26px;
}

.advantage-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background-color: rgba(51, 27, 11, 0.08);
  border: 1px solid rgba(51, 27, 11, 0.12);
  padding: 8px 14px;
  border-radius: var(--border-radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.advantage-pill i {
  color: var(--color-brand-brown);
  font-size: 10px;
}

.btn-event-cta {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 16px 24px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-white);
  background-color: var(--color-coral-red);
  border-radius: var(--border-radius-pill);
  box-shadow: 0 6px 16px rgba(224, 58, 20, 0.3);
  transition: var(--transition-bounce);
  z-index: 1;
}

.btn-event-cta:hover {
  background-color: #f74d27;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(224, 58, 20, 0.5);
}

/* ==========================================================================
   Seção: Localização e Carrinho (Onde nos encontrar)
   ========================================================================== */
.location-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.carrinho-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.carrinho-img {
  max-width: 80%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
}

.location-card {
  background-color: #df232a; /* Vermelho Vivo */
  border-radius: 40px;
  border: 3.5px solid #040d00;
  box-shadow: 0 12px 0 #040d00;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.pin-badge {
  width: 60px;
  height: 60px;
  background-color: #FFC72C; /* Amarelo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 0 #040d00;
  border: 3px solid #040d00;
}

.pin-badge i {
  color: #df232a; /* Vermelho */
  font-size: 24px;
}

.location-card .card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.location-card .card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 340px;
  opacity: 0.95;
}

.btn-follow-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #FFC72C; /* Amarelo Dourado */
  color: #040d00; /* Texto Preto */
  border: 3px solid #040d00;
  padding: 16px 32px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  box-shadow: 0 5px 0 #040d00;
  transition: all 0.15s ease-in-out;
}

.btn-follow-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #040d00;
}

.btn-follow-insta:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #040d00;
}

/* ==========================================================================
   5. Footer Section
   ========================================================================== */
.site-footer {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-honey-gold);
  margin-bottom: 14px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  font-size: 15px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-pill {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 4px 14px;
  border-radius: var(--border-radius-pill);
  font-size: 14.5px;
  color: var(--color-text-light);
  margin-left: 4px;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.btn-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-bounce);
  width: 100%;
  box-shadow: var(--card-shadow);
}

.btn-footer.btn-yellow {
  background-color: #FFC72C; /* Yellow */
  color: #040d00;
  border: 3.5px solid #040d00;
  box-shadow: 0 6px 0 #040d00;
}

.btn-footer.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #040d00;
}

.btn-footer.btn-yellow:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #040d00;
}

.btn-footer.btn-red {
  background-color: #df232a; /* Red */
  color: #ffffff;
  border: 3.5px solid #040d00;
  box-shadow: 0 6px 0 #040d00;
}

.btn-footer.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #040d00;
}

.btn-footer.btn-red:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #040d00;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  margin-top: 10px;
}

.copyright-text {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2px;
  margin-top: -10px;
  padding-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .page-container {
    padding: 30px 16px;
    gap: 30px;
  }
  .logo-container {
    width: 130px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .gallery-grid {
    gap: 12px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .location-card {
    border-radius: 32px;
    padding: 32px 16px;
  }
  .location-card .card-title {
    font-size: 22px;
  }
  .carrinho-img {
    max-width: 90%;
  }
}

/* ==========================================================================
   6. Navigation Arrows, Share Button, Share Modal & Toast
   ========================================================================== */
.nav-arrows-container {
  position: fixed;
  top: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.share-btn-container {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 1000;
}

.floating-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(6, 20, 0, 0.85); /* Deep green/black background matching the theme */
  border: 2px solid var(--color-honey-gold);
  color: var(--color-honey-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  outline: none;
}

.floating-circle-btn:hover {
  background-color: var(--color-honey-gold);
  color: #040d00;
  transform: scale(1.1);
}

.floating-circle-btn:active {
  transform: scale(0.95);
}

/* Share Modal Styling */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 20, 0, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background-color: #0c2600; /* Dark green matching body */
  border: 3.5px solid #040d00;
  border-radius: 28px;
  padding: 36px 24px 28px 24px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 0 #040d00;
  transform: scale(0.85);
  transition: var(--transition-bounce);
}

.share-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.modal-close:hover {
  color: #df232a; /* Coral red / Vermelho */
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.4;
}

.qr-container {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid #040d00;
}

.qr-container img {
  width: 160px;
  height: 160px;
  display: block;
}

.share-link-wrapper {
  display: flex;
  border: 3px solid #040d00;
  border-radius: 50px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.share-link-wrapper input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 13.5px;
  outline: none;
  font-family: var(--font-body);
  width: 100%;
}

.share-link-wrapper button {
  background-color: #FFC72C; /* Yellow */
  color: #040d00;
  border: none;
  border-left: 3px solid #040d00;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.share-link-wrapper button:hover {
  background-color: #fca311;
}

/* Toast Notification Styling */
.toast-notification {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #FFC72C; /* Gold */
  color: #040d00;
  border: 3px solid #040d00;
  padding: 14px 28px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 8px 0 #040d00;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 480px) {
  .nav-arrows-container {
    top: 16px;
    left: 12px;
    gap: 8px;
  }
  
  .share-btn-container {
    top: 16px;
    right: 12px;
  }
  
  .floating-circle-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
