:root {
  --radius: 0.875rem;
  --background: #fbfcff;
  --foreground: #1a2130;
  --card: #ffffff;
  --muted: #f2f4f8;
  --muted-foreground: #6c7380;
  --border: #e4e8ef;
  --input: #e4e8ef;
  --primary: #e62e2e;
  --primary-glow: #f45c5c;
  --primary-foreground: #fbfcff;
  --destructive: #dc2626;
  --gradient-primary: linear-gradient(135deg, #e62e2e, #f45c5c);
  --gradient-subtle: linear-gradient(180deg, #fbfcff, #f5efff);
  --shadow-elegant: 0 20px 50px -20px rgba(230, 46, 46, 0.35);
  --shadow-card:
    0 1px 2px rgba(26, 33, 48, 0.08), 0 12px 30px -12px rgba(26, 33, 48, 0.22);
  --shadow-card-hover:
    0 4px 6px rgba(26, 33, 48, 0.1), 0 30px 60px -15px rgba(230, 46, 46, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 23, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 23, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  display: flex;
  width: min(100% - 48px, 1280px);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 1px;
}

.brand,
.desktop-nav,
.nav-button,
.menu-button {
  color: #ffffff;
  filter: none;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .menu-button {
  color: #ffffff;
  filter: none;
}

.brand {
  display: flex;
  align-items: center;
  width: min(460px, 60vw);
  max-width: fit-content;
}

.footer-mark {
  display: inline-block;
  background-image: var(--gradient-primary);
}

.brand img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.25s var(--ease);
}

.brand:hover img {
  transform: scale(1.03);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-image: var(--gradient-primary);
  transition: width 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition:
    transform 0.2s var(--ease),
    background 0.2s ease,
    opacity 0.2s ease;
}

.nav-button,
.button-primary {
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
  filter: none;
}

.nav-button {
  margin: 10px;
  padding: 8px 20px;
  font-size: 0.875rem;
}

.nav-button:hover,
.button:hover {
  transform: scale(1.05);
}

.button {
  min-height: 52px;
  padding: 0 28px;
  font-size: 1rem;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-color: #969b9f;
}

.hero-bg {
  position: absolute;
  z-index: -3;

  /* 🎯 CENTRALIZAÇÃO ABSOLUTA COORDENADA:
     Garante que a imagem fique perfeitamente no centro do Hero quando a tela expandir. */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Comportamento responsivo base para telas menores */
  width: 100%;
  height: 100%;
  object-fit: cover;

  max-width: 1250px;
  max-height: 1152px;
}

@media (max-width: 925px) {
  .hero {
    min-height: 500px;
    width: 100%;
  }

  .hero-bg {
    max-width: 325px;
    max-height: 500px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(13, 16, 27, 0.82),
      rgba(33, 21, 58, 0.58) 45%,
      rgba(33, 21, 58, 0.32)
    ),
    linear-gradient(
      180deg,
      rgba(251, 252, 255, 0.12),
      rgba(251, 252, 255, 0.72) 100%
    );
}

.hero-inner {
  padding-block: 160px 80px;
}

.hero-copy {
  max-width: 768px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.hero h1 {
  margin-top: 24px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
}

.hero p {
  max-width: 672px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.section {
  scroll-margin-top: 96px;
  padding-block: 96px;
}

.gradient-section {
  background-image: var(--gradient-subtle);
}

.section-heading {
  max-width: 672px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.service-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.sales-grid {
  perspective: 1000px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.sales-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  max-height: fit-content;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.5s ease;
}

.sales-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-2deg);
  box-shadow: var(--shadow-card-hover);
}

.sales-media {
  position: relative;
  display: flex;
  height: 210px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sales-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sales-card:hover .sales-media::after {
  opacity: 1;
}

.amazon-bg {
  background: linear-gradient(135deg, #ff9900, #ffb84d);
}

.ml-bg {
  background: linear-gradient(135deg, #ffe600, #fff066);
}

.shopee-bg {
  background: linear-gradient(135deg, #ee4d2d, #ff7a45);
}

.lojaFisica-bg {
  /* Linear: 135deg dá uma profundidade diagonal interessante */
  background: linear-gradient(135deg, #000000, 0%, #1a0505 50%, #450a0a 100%);
}

.sales-icon {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.sales-media img {
  position: relative;
  z-index: 1;
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
  /* filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22)); */
  transition: transform 0.5s ease;
}

.sales-card:hover .sales-media img {
  transform: scale(1.1);
}

.sales-body {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.sales-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.sales-body p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.sales-body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.sales-body svg {
  width: 16px;
  height: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.service-copy p {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}

.check-list span {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-image-wrap {
  position: relative;
}

.service-image-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 32px;
  background-image: var(--gradient-primary);
  opacity: 0.2;
  filter: blur(36px);
}

.service-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.brand-card {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 232, 239, 0.6);
  border-radius: 16px;
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-card);
  color: rgba(26, 33, 48, 0.8);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.contact-form,
.info-card {
  border: 1px solid rgba(228, 232, 239, 0.6);
  border-radius: 24px;
  background: var(--card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 12px;
  background: var(--background);
  padding: 12px 16px;
  color: var(--foreground);
  font: inherit;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(26, 33, 48, 0.06);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 46, 46, 0.18);
}

.contact-form small {
  min-height: 17px;
  color: var(--destructive);
  font-size: 0.75rem;
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.form-status {
  min-height: 22px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.contact-side {
  display: grid;
  gap: 24px;
}

.info-card {
  display: grid;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-row span:not(.info-icon) {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-row p {
  margin-top: 4px;
  font-weight: 500;
}

.info-row a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.socials a:hover {
  border-color: transparent;
  background-image: var(--gradient-primary);
  color: var(--primary-foreground);
}

.map-card {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(228, 232, 239, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(228, 232, 239, 0.6);
  background: var(--background);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  padding-block: 32px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.footer-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
}

.whatsapp-ping {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: #25d366;
  opacity: 0.6;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-elegant);
  transition: padding 0.3s ease;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.whatsapp-button span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    max-width 0.3s ease,
    margin-left 0.3s ease;
}

.whatsapp-float:hover .whatsapp-button {
  padding-right: 20px;
}

.whatsapp-float:hover .whatsapp-button span {
  max-width: 180px;
  margin-left: 4px;
}

.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 60;
  max-width: calc(100vw - 32px);
  transform: translate(-50%, -20px);
  border-radius: 12px;
  background: var(--foreground);
  color: var(--background);
  padding: 12px 16px;
  box-shadow: var(--shadow-card-hover);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .sales-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    /* Ajusta o foco da imagem no mobile se necessário (ex: focar na direita da foto) */
    object-position: center center;
  }

  .container,
  .nav-shell {
    width: min(100% - 32px, 1280px);
  }

  .desktop-nav,
  .nav-button,
  .nav-whatsapp {
    display: none !important;
  }

  .menu-button {
    display: flex;
  }

  .mobile-panel {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(228, 232, 239, 0.6);
    background: rgba(15, 17, 23, 0.98);
    color: #ffffff;
    padding: 16px 24px;
    backdrop-filter: blur(18px);
  }

  .mobile-panel.is-open {
    display: flex;
  }

  .mobile-panel a {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.875rem;
    font-weight: 500;
  }

  .mobile-panel a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-cta {
    margin-top: 8px;
    border-radius: 999px !important;
    background-image: var(--gradient-primary);
    color: var(--primary-foreground);
    text-align: center;
  }

  .hero-inner {
    padding-block: 132px 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 16, 27, 0.82), rgba(33, 21, 58, 0.58)),
      linear-gradient(
        180deg,
        rgba(251, 252, 255, 0.05),
        rgba(251, 252, 255, 0.72) 100%
      );
  }

  .section {
    padding-block: 72px;
  }

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

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form,
  .info-card {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: min(340px, 72vw);
  }

  .brand img {
    height: 78px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .footer-inner {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .whatsapp-button span {
    display: none;
  }
}

.tiktok-bg {
  background: linear-gradient(135deg, #ee1d52 0%, #69c9d0 100%);
}

/* Gradiente com a transição escura centralizada (efeito imersivo do app) */
.tiktok-bg-dark {
  background: linear-gradient(45deg, #ee1d52 0%, #000000 50%, #69c9d0 100%);
}

.ImgLogoQuadrada {
  border-radius: 45px;
  width: fit-content !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000;
}

.logo-lojas {
  /* width: auto; */
  height: 190px;
}

.LogoStarling {
  position: relative;
  z-index: 1;
  max-height: 190px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
  transition: transform 0.5s ease;
}

.rodape-dev-span {
  min-width: 100px;
  min-height: 25px;
}

.rodape-dev {
  display: flex;
  align-items: center;
}

.LinkStarling {
  min-height: 20px;
  min-width: 100px;
  display: inline-block;
  max-width: 200px;
}

.nav-whatsapp {
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
  filter: none;
  background-color: #38a345;
  margin: 10px;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition:
    transform 0.2s var(--ease),
    background 0.2s ease,
    opacity 0.2s ease;
}
.nav-whatsapp:hover {
  transform: scale(1.05);
}

.mobile-cta-whatsapp {
  margin-top: 8px;
  display: flex;
  border-radius: 999px !important;
  background-color: #38a345;
  color: var(--primary-foreground);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.Margin-R-2 {
  margin-right: 5px;
}
