/* ============================================
   Portal da Nota - Landing Page Styles
   Paleta baseada no logo (verdes e azuis)
   ============================================ */

:root {
  /* Paleta do logo */
  --color-primary-green: #1a7f3e;
  --color-primary-green-hover: #228b22;
  --color-accent-green: #5bc76a;
  --color-primary-blue: #0066cc;
  --color-primary-blue-hover: #0059b7;
  --color-accent-blue: #0047ab;
  --color-navy: #003366;
  /* Neutros */
  --color-bg: #fafbfc;
  --color-bg-alt: #ffffff;
  --color-text: #1a1a2e;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-accent-green) 100%);
  --gradient-hero-accent: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-accent-blue) 100%);
  /* Layout */
  --container-max: 1120px;
  --section-padding-y: 3rem;
  --section-padding-y-sm: 3rem;
  --header-height: 72px;
  /* Tipografia */
  --font-sans: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-elevated: 0 20px 60px rgba(15, 23, 42, 0.12);
  --surface-card: rgba(255, 255, 255, 0.84);
  --surface-card-strong: rgba(255, 255, 255, 0.92);
  --transition: 0.25s ease;
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(91, 199, 106, 0.14), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(0, 102, 204, 0.12), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #f8fafc 45%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 78%);
  z-index: -2;
}
main {
  position: relative;
  overflow: clip;
}
main::before,
main::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
main::before {
  top: 4rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(91, 199, 106, 0.08);
}
main::after {
  top: 32rem;
  right: -10rem;
  width: 26rem;
  height: 26rem;
  background: rgba(0, 102, 204, 0.08);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-blue-hover); }
ul { margin: 0; padding-left: 1.25rem; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Header */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-green) 0%, var(--color-primary-green) 45%, var(--color-primary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.15s ease;
}
.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  z-index: 100;
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: rgba(203, 213, 225, 0.9);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.site-header .nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header .nav-ctas .btn { padding: 0.5rem 1rem; font-size: 0.9rem; }
@media (max-width: 640px) {
  .site-header .nav-ctas .btn span { display: none; }
  .site-header .nav-ctas .btn::after {
    content: 'Avisos';
    font-size: 0.9rem;
  }
  .site-header .nav-ctas .btn-primary::after { content: 'Conhecer'; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 127, 62, 0.22);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 34px rgba(26, 127, 62, 0.26);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-blue);
  border: 2px solid var(--color-primary-blue);
  box-shadow: 0 10px 24px rgba(0, 102, 204, 0.08);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.96); }

/* Hero */
#hero {
  position: relative;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 5rem;
  background: transparent;
}
#hero::before,
#hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
#hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(91, 199, 106, 0.16), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(0, 102, 204, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 100%);
}
#hero::after {
  left: 50%;
  bottom: 2rem;
  width: min(1100px, calc(100% - 2.5rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.45), transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 3rem; }
}
.hero-content {
  max-width: 34rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: var(--shadow-soft);
  color: var(--color-primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--color-text);
  letter-spacing: -0.04em;
}
.hero-content .subtitle {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: 1.7;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .hero-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hero-bullets li {
  position: relative;
  min-height: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 6px rgba(26, 127, 62, 0.08);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-ctas .btn {
  min-height: 52px;
  padding-inline: 1.35rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26rem;
  background: transparent;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 16% 12%;
  background:
    radial-gradient(circle, rgba(0, 102, 204, 0.18) 0%, rgba(0, 102, 204, 0.04) 42%, transparent 72%),
    radial-gradient(circle at 30% 35%, rgba(91, 199, 106, 0.18), transparent 34%);
  filter: blur(24px);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  max-height: 32rem;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.16));
}
@media (max-width: 767px) {
  #hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 3.5rem;
  }
  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }
  .hero-content .subtitle {
    max-width: none;
  }
  .hero-visual {
    min-height: auto;
  }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 32rem;
}
.hero-slides {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero-slides-track {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides-track { transition: transform 0.2s ease; }
}
.hero-slides-track.at-slide-1 { transform: translateX(0); }
.hero-slides-track.at-slide-2 { transform: translateX(-50%); }
.hero-slide {
  flex: 0 0 50%;
  width: 50%;
  min-width: 50%;
}
@media (max-width: 767px) {
  .hero-carousel { min-height: 34rem; }
  .hero-content-free { padding: 1.25rem; }
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-blue);
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-sm);
}
.hero-arrow:hover:not(:disabled) {
  background: #fff;
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
  box-shadow: var(--shadow-md);
}
.hero-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.hero-arrow-prev { left: 0.75rem; }
.hero-arrow-next { right: 0.75rem; }
@media (max-width: 767px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
    top: 45%;
  }
  .hero-arrow-prev { left: 0.5rem; }
  .hero-arrow-next { right: 0.5rem; }
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 204, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-dot:hover {
  background: rgba(0, 102, 204, 0.2);
}
.hero-dot.active {
  background: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
}
@media (max-width: 767px) {
  .hero-dots { bottom: 1rem; }
}

/* Hero slide free - container mais largo para notebook maior */
#hero .hero-slide-free .container {
  max-width: 1280px;
}

/* Hero Slide Free - Layout invertido + card flutuante */
.hero-slide-free {
  position: relative;
}
.hero-slide-free::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(91, 199, 106, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 75% 40%, rgba(0, 102, 204, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner-free {
  position: relative;
  align-items: center;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner-free {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: center;
  }
  .hero-inner-free .hero-content-free { order: 1; }
  .hero-inner-free .hero-visual-promo { order: 2; }
}

/* Card promo - amplo para ocupar mais tela */
.hero-content-free {
  max-width: 100%;
  min-width: 0;
  padding: 1.75rem 2rem;
  backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(0, 102, 204, 0.04);
}
.hero-free-strip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary-green);
  background: linear-gradient(135deg, rgba(26, 127, 62, 0.12) 0%, rgba(91, 199, 106, 0.08) 100%);
  border-radius: 999px;
  border: 1px solid rgba(26, 127, 62, 0.2);
}
.hero-free-title {
  line-height: 1.35 !important;
  margin: 0 0 0.75rem !important;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem) !important;
}
.hero-free-title .hero-free-highlight {
  display: inline-block;
  margin-top: 0.08em;
}
.hero-free-highlight {
  padding: 0.08em 0.35em;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 12px rgba(26, 127, 62, 0.35);
}
.hero-free-subtitle {
  line-height: 1.6;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
}
.hero-free-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.15rem;
}
.hero-free-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-green);
  white-space: nowrap;
}
.hero-free-feat svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.hero-ctas-free {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-ctas-free .btn {
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  font-size: 1rem;
}

/* Hero Visual Promo - transparente */
.hero-visual-promo {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26rem;
}
.hero-visual-promo::before {
  background: transparent;
}
.hero-visual-promo img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 24px 56px rgba(15, 23, 42, 0.18));
  object-fit: contain;
}
@media (max-width: 767px) {
  .hero-content-free { padding: 1.25rem; }
  .hero-visual-promo { min-height: auto; }
}

/* Hero Badges (Slide Free) */
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-badges li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.25rem;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.hero-badges li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 4px rgba(26, 127, 62, 0.1);
}

/* Hero Promo Badge - sobrepõe a imagem do notebook */
.hero-promo-badge {
  position: absolute;
  top: 12%;
  right: 5%;
  z-index: 3;
  padding: 0.9rem 1.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(26, 127, 62, 0.4);
  animation: hero-promo-pulse 3s ease-in-out infinite;
}
.hero-promo-hint {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-green);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.hero-promo-hint svg {
  flex-shrink: 0;
  opacity: 0.9;
}
@keyframes hero-promo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-promo-badge { animation: none; }
}

/* Hero Slide 2 - Velocidade de emissão */
.hero-slide-speed {
  position: relative;
}
.hero-slide-speed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 25% 50%, rgba(0, 102, 204, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 40%, rgba(91, 199, 106, 0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.hero-slide-speed .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-slide-speed .hero-content {
  max-width: 36rem;
}
.hero-kicker-speed {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 71, 171, 0.08) 100%) !important;
  border-color: rgba(0, 102, 204, 0.25) !important;
  color: var(--color-primary-blue) !important;
}
.hero-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-accent-blue) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}
.hero-slide-speed .hero-content h1 {
  margin-bottom: 1rem;
}
.hero-slide-speed .hero-content .subtitle {
  margin-bottom: 1.5rem;
}
.hero-bullets-speed li {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hero-bullets-speed li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 102, 204, 0.15);
}
.hero-visual-speed {
  position: relative;
}
.hero-speed-indicator {
  position: absolute;
  bottom: 12%;
  left: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.hero-speed-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}
.hero-speed-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary-green);
}
@media (max-width: 767px) {
  .hero-speed-indicator {
    bottom: 8%;
    left: 5%;
    padding: 0.6rem 0.85rem;
  }
  .hero-speed-value { font-size: 0.9rem; }
}

/* Section common */
section {
  position: relative;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}
section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92));
}
.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-align: center;
}
.section-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}

/* Problema */
#problema { background: var(--color-bg-alt); }
#problema .content-wrap {
  max-width: rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--surface-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
#problema .section-subtitle { margin-bottom: 1.5rem; }
#problema ul {
  text-align: left;
  display: inline-block;
  margin: 0;
  padding-left: 1.5rem;
}
#problema li { margin-bottom: 0.5rem; color: var(--color-text-muted); }

/* SECTION SOLUÇÃO */

#solucao{
  position:relative;
  background:#f5f9fc;
}

#solucao .section-title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
}

#solucao .section-subtitle{
  text-align:center;
  max-width:720px;
  margin:auto;
  color:#6b7a90;
  font-size:18px;
}

/* GRID CENTRAL */

.solucao-modular{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  max-width:900px;
  margin:30px auto;
  gap:0;
}

/* CÍRCULO CENTRAL */

.mod-center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:320px;
  height:320px;
  background:linear-gradient(145deg, #ffffff 0%, #f2faf6 50%, #e8f5ee 100%);
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(0,0,0,0.04), 0 0 40px rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
  z-index:2;
}

.mod-center h3{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
}

.mod-center p{
  font-size:16px;
  color:#6b7a90;
}

/* CARDS EXTERNOS */

.mod-card{
  position:relative;
  background:linear-gradient(145deg, #ffffff 0%, #f5f9fc 50%, #eef5fb 100%);
  padding:35px;
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  gap:20px;
  z-index:1;
  transition:all .3s ease;
}

/* POSICIONAMENTO DOS CARDS */
/* aproximados do centro */

.mod-top-left{
  margin-right:80px;
  border-radius: 24px 0 0 0;
  margin-bottom:5px;
  padding:35px 60px 50px 35px;
  box-shadow:-6px 0 16px rgba(0,0,0,0.05), 0 -6px 16px rgba(0,0,0,0.05);
}

.mod-top-right{
  margin-left:80px;
  border-radius: 0 24px 0 0;
  margin-bottom:5px;
  padding:35px 35px 50px 60px;
  box-shadow:6px 0 16px rgba(0,0,0,0.05), 0 -6px 16px rgba(0,0,0,0.05);
}

.mod-bottom-left{
  margin-right:80px;
  border-radius: 0 0 0 24px;
  margin-top: 5px;
  padding:50px 60px 35px 35px;
  box-shadow:-6px 0 16px rgba(0,0,0,0.05), 0 6px 16px rgba(0,0,0,0.05);
}

.mod-bottom-right{
  margin-left:80px;
  border-radius: 0 0 024px;
  margin-top: 5px;
  padding:50px 35px 35px 60px;
  box-shadow:6px 0 16px rgba(0,0,0,0.05), 0 6px 16px rgba(0,0,0,0.05);
}

/* TEXTO */

.mod-content{
  position:relative;
  z-index:3;
  min-width:0;
  flex:1;
}

.mod-content strong{
  display:block;
  font-size:20px;
  margin-bottom:6px;
  font-weight:700;
}

.mod-content span{
  font-size:16px;
  color:#6b7a90;
}

/* alinhamento do texto conforme posição do card */

.mod-top-left .mod-content,
.mod-bottom-left .mod-content{
  text-align:left;
}

.mod-top-right .mod-content,
.mod-bottom-right .mod-content{
  text-align:right;
}

/* ÍCONES */

.mod-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background:#e8f4f0;
  color:#1a7a5e;
  flex-shrink:0;
}

/* ícone à esquerda do texto (HTML: icon, content) */
.mod-top-left{
  flex-direction:row;
}

/* ícone à direita do texto (HTML: icon, content) */
.mod-top-right{
  flex-direction:row-reverse;
}

/* ícone à esquerda do texto (HTML: content, icon) */
.mod-bottom-left{
  flex-direction:row-reverse;
}

/* ícone à direita do texto (HTML: content, icon) */
.mod-bottom-right{
  flex-direction:row;
}

/* RECORTE CIRCULAR DOS CARDS */

.mod-top-left:after,
.mod-top-right:after,
.mod-bottom-left:after,
.mod-bottom-right:after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:#f5f9fc;
  border-radius:100%;
  z-index:1;
}

/* posições do recorte */

.mod-top-left:after{
  right:-200px;
  bottom:-140px;
}

.mod-top-right:after{
  left:-200px;
  bottom:-140px;
}

.mod-bottom-left:after{
  right:-200px;
  top:-140px;
}

.mod-bottom-right:after{
  left:-200px;
  top:-140px;
}

/* HOVER */

.mod-card:hover{
  transform:translateY(-6px);
}

/* RESPONSIVO */

@media(max-width:900px){

  .solucao-modular{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  .mod-center{
    position:relative;
    left:auto;
    top:auto;
    transform:none;
    margin-left:auto;
    margin-right:auto;
  }

  .mod-card{
    margin:0!important;
  }

  .mod-top-left:after,
  .mod-top-right:after,
  .mod-bottom-left:after,
  .mod-bottom-right:after{
    display:none;
  }

}

/* Fluxo inteligente - ajustes só para celular */
@media (max-width: 640px) {
  .solucao-modular {
    align-items: center;
  }

  .solucao-modular .mod-center {
    width: min(280px, calc(100% - 2rem));
    aspect-ratio: 1;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    flex-shrink: 0;
  }

  .solucao-modular .mod-center h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .solucao-modular .mod-center p {
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .solucao-modular .mod-center-content {
    min-width: 0;
    width: 100%;
  }
}

/* Funcionalidades - Cards */
#funcionalidades .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  #funcionalidades .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  #funcionalidades .cards { grid-template-columns: repeat(3, 1fr); }
}
.func-card {
  padding: 1.75rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.func-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(0, 102, 204, 0.16);
}
.func-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26, 127, 62, 0.12) 0%, rgba(91, 199, 106, 0.12) 100%);
  color: var(--color-primary-green);
}
.func-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}
.func-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Para contabilidades */
#contabilidades { background: var(--color-bg-alt); }
#contabilidades .benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#contabilidades .benefits li {
  padding: 0.5rem 0;
  color: var(--color-text);
  font-weight: 500;
}
#contabilidades .benefits li::before {
  content: '✓ ';
  color: var(--color-primary-green);
  font-weight: 700;
}

/* Benefícios 3 colunas */
#beneficios .cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  #beneficios .cols { grid-template-columns: repeat(3, 1fr); }
}
.benefit-col {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-col:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(0, 102, 204, 0.16);
}
.benefit-col .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 71, 171, 0.12) 100%);
  color: var(--color-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.benefit-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
}
.benefit-col p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* Planos */
#planos {
  background:
    radial-gradient(circle at top center, rgba(0, 102, 204, 0.05), transparent 32%),
    var(--color-bg-alt);
}
#planos .planos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
@media (min-width: 768px) {
  #planos .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  #planos .planos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.plano-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem;
  background: var(--surface-card-strong);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.25s ease;
  min-width: 0;
}
.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(0, 102, 204, 0.18);
}
.plano-card.plano-destaque {
  border-color: rgba(26, 127, 62, 0.35);
  background:
    linear-gradient(180deg, rgba(26, 127, 62, 0.05) 0%, rgba(255, 255, 255, 0.96) 24%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(26, 127, 62, 0.12);
}
.plano-card.plano-destaque:hover {
  box-shadow: 0 28px 68px rgba(26, 127, 62, 0.18);
}
.plano-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-blue);
}
.plano-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.plano-descricao {
  margin: 0.5rem 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.plano-preco {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-text);
  width: 100%;
  min-width: 0;
}
.plano-preco:not(.plano-gratuito) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.3rem;
}
.plano-moeda {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-green);
}
.plano-valor {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary-green);
}
.plano-periodo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.plano-preco.plano-gratuito {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--color-primary-green);
}
.plano-beneficios {
  list-style: none;
  width: 100%;
  padding: 0.75rem 0 0;
  margin: 0 0 0;
  border-top: 1px solid rgba(100, 116, 139, 0.12);
  flex: 1;
  min-height: 0;
}
.plano-beneficios li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.45;
}
.plano-beneficios li:last-child {
  margin-bottom: 0;
}
.plano-beneficios li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 4px rgba(26, 127, 62, 0.08);
}
.plano-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 127, 62, 0.12);
  border: 1px solid rgba(26, 127, 62, 0.18);
  color: var(--color-primary-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plano-card .btn {
  width: 100%;
  margin-top: 1rem;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .plano-card {
    padding: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .plano-card,
  .plano-card:hover {
    transition: none;
    transform: none;
  }
}

/* Como funciona - Fluxo */
#como-funciona { background: var(--color-bg-alt); }
.fluxo-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .fluxo-steps {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
  }
  .fluxo-steps .step { flex: 1; text-align: center; }
}
.fluxo-steps .step {
  padding: 1.25rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.fluxo-steps .step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(0, 102, 204, 0.16);
}
.fluxo-steps .step .num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.fluxo-steps .step strong { display: block; color: var(--color-text); }
.fluxo-steps .step span { font-size: 0.9rem; color: var(--color-text-muted); }
@media (min-width: 768px) {
  .fluxo-steps .step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.25rem;
  }
  .fluxo-steps .step:last-child::after { display: none; }
}

/* FAQ */
#faq .faq-list {
  max-width: 36rem;
  margin: 2rem auto 0;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.faq-item:last-child { border-bottom: none; }
.faq-item .faq-q {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.faq-item .faq-q:hover { background: var(--color-bg); }
.faq-item .faq-q .chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-primary-blue);
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-item .faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.faq-item .faq-a-inner { padding-top: 0.25rem; }
.faq-item:not(.open) .faq-a { display: none; }

/* Depoimentos */
#depoimentos { background: var(--color-bg-alt); }
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); }
}
.depoimento-card {
  padding: 1.75rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-align: center;
  color: var(--color-text-muted);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

/* Captura de lead */
#lead .form-wrap {
  max-width: 42rem;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--surface-card-strong);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(16px);
}
#lead .lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#lead .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
@media (max-width: 479px) {
  #lead .form-row {
    grid-template-columns: 1fr;
  }
}
#lead .form-group {
  margin-bottom: 0;
}
#lead label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
}
#lead input,
#lead select,
#lead textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition);
}
#lead textarea {
  resize: vertical;
  min-height: 72px;
}
#lead input:focus,
#lead select:focus,
#lead textarea:focus {
  outline: none;
  border-color: var(--color-primary-blue);
}
#lead .form-field-error {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #b91c1c;
}
#lead .btn-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}
#lead .form-success {
  text-align: center;
  color: var(--color-primary-green);
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}
#lead .form-success.show { display: block; }
#lead .form-error {
  text-align: center;
  color: #b91c1c;
  font-weight: 500;
  margin-top: 1rem;
}

/* CTA Final */
#cta-final {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  background:
    radial-gradient(circle at top left, rgba(91, 199, 106, 0.26), transparent 24%),
    linear-gradient(135deg, #003f96 0%, #0059b7 45%, #0a6fd4 100%);
  color: #fff;
  text-align: center;
}
#cta-final .section-title { color: #fff; margin-bottom: 1.5rem; }
#cta-final .section-subtitle { color: rgba(255,255,255,0.9); }
#cta-final .hero-ctas {
  justify-content: center;
  flex-wrap: wrap;
}
#cta-final .btn-primary {
  background: #fff;
  color: var(--color-primary-blue);
}
#cta-final .btn-primary:hover { background: rgba(255,255,255,0.95); }
#cta-final .btn-secondary {
  border-color: #fff;
  color: #fff;
}
#cta-final .btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(91, 199, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #0d1726 100%);
  color: rgba(255,255,255,0.8);
}
.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: #fff; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-logo { height: 36px; width: auto; opacity: 0.95; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}
.footer-links a { font-size: 0.95rem; }
.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 1023px) {
  .site-header .container {
    gap: 1rem;
  }
  .hero-inner {
    gap: 2rem;
  }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: width 0.25s ease, padding 0.25s ease, gap 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.whatsapp-float:hover {
  width: auto;
  padding: 0 1rem;
  gap: 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.whatsapp-float-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.whatsapp-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  transition: max-width 0.2s ease, opacity 0.15s ease;
}
.whatsapp-float:hover .whatsapp-float-label {
  max-width: 10rem;
  opacity: 1;
}

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