/* ============================================================
   Seja Med+Fácil — estilos exclusivos
   ============================================================ */

/* Vars não presentes em estilo.css */
:root {
  --dark-mid: #6f4072;
  --dark-border: rgba(111, 64, 114, .14);
  --green-wa: #25D366;
  --green-dk: #1da851;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-sm: 0 2px 12px rgba(22, 13, 31, .06);
  --sh-md: 0 8px 32px rgba(22, 13, 31, .12);
  --sh-lg: 0 24px 64px rgba(22, 13, 31, .18);
}

/* Oculta o botão WhatsApp do rodapé — esta página tem o próprio .duvidas-float */
.wa-float {
  display: none !important;
}

/* ---- Labels de seção (exclusivos desta página) ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tag--light,
.tag--dark {
  color: var(--lilas);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* sec-title em (itálico) — não existe em estilo.css */
.sec-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--lilas-deep);
}

/* ============================================================
   BOTÕES (nomes de classe exclusivos desta página)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: background .22s, transform .22s, box-shadow .22s, opacity .22s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 32px;
}

.btn--md {
  font-size: 15px;
  padding: 13px 26px;
}

.btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn--lilas {
  background: var(--lilas);
  color: white;
  box-shadow: 0 4px 20px rgba(111, 64, 114, .28);
}

.btn--lilas:hover {
  background: var(--lilas-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(111, 64, 114, .40);
}

.btn--ghost {
  background: transparent;
  color: var(--lilas-deep);
  border: 2px solid var(--border);
}

.btn--ghost:hover {
  background: var(--lilas-pale);
  border-color: var(--lilas-light);
}

.btn--outline {
  background: transparent;
  color: var(--lilas-deep);
  border: 2px solid var(--lilas-light);
}

.btn--outline:hover {
  background: var(--lilas-pale);
  border-color: var(--lilas);
}

/* ============================================================
   HERO (overrides para esta página)
   ============================================================ */
.smf .hero {
  background: var(--white);
  min-height: 90vh;
  padding: 120px 0 0 0;
}

.smf .hero > .container {
  padding-bottom: 50px;
}

.smf .hero-layout {
  grid-template-columns: 1fr;
  gap: 56px;
}

.smf .hero-layout>* {
  min-width: 0;
}

@media (min-width: 900px) {
  .smf .hero {
    padding: 120px 0 0 0;
  }

  .smf .hero > .container {
    padding-bottom: 72px;
  }

  .smf .hero-layout {
    grid-template-columns: 1fr 460px;
    gap: 64px;
  }

}

@media (max-width: 767px) {
  .smf .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .smf .hero-h1 {
    text-align: center;
  }

  .smf .hero-lead {
    text-align: center;
    width: 100%;
  }
}

/* Badge eyebrow */
.smf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lilas-pale);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lilas);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lilas);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

.smf .hero-h1 {
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.smf .hero-h1 .accent-italic {
  font-style: normal;
  font-weight: 700;
  color: var(--lilas);
}

.smf .hero-lead {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.smf .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  justify-content: center;
}

@media (min-width: 768px) {
  .smf .hero-ctas {
    justify-content: flex-start;
  }
}

/* Prova social */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.hero-proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--lilas);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.proof-avatar:first-child {
  margin-left: 0;
  background: #8A4F8E;
}

.proof-avatar:nth-child(2) {
  background: var(--lilas-deep);
}

.proof-avatar:nth-child(3) {
  background: #9B5CA0;
}

.proof-avatar--more {
  background: var(--lilas-light);
  font-size: 9px;
}

/* ============================================================
   CARD VISUAL
   ============================================================ */
.card-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card-3d {
  width: 340px;
  max-width: 90vw;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .40), 0 0 60px rgba(111, 64, 114, .30);
  transform: perspective(1000px) rotateX(4deg) rotateY(-10deg);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), box-shadow .5s ease;
  cursor: pointer;
  user-select: none;
}

.card-3d:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-12px) scale(1.02);
  box-shadow: 0 56px 100px rgba(0, 0, 0, .50), 0 0 90px rgba(111, 64, 114, .40);
}

.card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .07) 50%, transparent 70%);
  transform: skewX(-15deg);
  transition: left .6s ease;
  pointer-events: none;
}

.card-3d:hover .card-shine {
  left: 120%;
}

/* ============================================================
   BARRA DE ECONOMIAS
   ============================================================ */
.savings-bar {
  background: var(--dark-mid);
  padding: 22px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.savings-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .savings-bar-inner {
    padding: 0 32px;
  }
}

.savings-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.savings-item i {
  font-size: 16px;
  color: white;
}

.savings-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
}

.savings-item strong {
  color: white;
}

.savings-sep {
  width: 1px;
  height: 20px;
  background: var(--dark-border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .savings-sep {
    display: none;
  }
}

/* ============================================================
   BENEFÍCIOS (layout diferente do index.php)
   ============================================================ */
.benefits-intro {
  margin-bottom: 48px;
}

.smf .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 540px) {
  .smf .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .smf .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.smf .benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.smf .benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lilas), var(--lilas-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.smf .benefit-card:hover {
  border-color: var(--lilas-light);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.smf .benefit-card:hover::after {
  transform: scaleX(1);
}

.smf .benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--lilas-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .25s;
}

.smf .benefit-icon i {
  font-size: 20px;
  color: var(--lilas);
}

.smf .benefit-card:hover .benefit-icon {
  background: var(--lilas);
}

.smf .benefit-card:hover .benefit-icon i {
  color: white;
}

.smf .benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
  text-align: center;
}

.smf .benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f8ee;
  border: 1px solid rgba(34, 139, 70, .20);
  color: #1a6e35;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
  align-self: center;
}

.benefit-pill i {
  font-size: 10px;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .how-layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-layout::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(33.33% - 10px);
    right: calc(33.33% - 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--lilas), var(--lilas-light), var(--lilas));
    z-index: 0;
  }
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lilas);
  color: white;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(111, 64, 114, .30);
  flex-shrink: 0;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
}

/* ============================================================
   PLANOS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 16px;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}

.pricing-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--lilas);
  box-shadow: 0 0 0 4px var(--lilas-pale), var(--sh-lg);
  padding-top: 52px;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lilas);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--lilas-deep);
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}

.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
  letter-spacing: 0;
}

.pricing-price sub {
  font-size: 16px;
  vertical-align: baseline;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-per {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  text-align: center;
}

.pricing-saving {
  font-size: 13px;
  font-weight: 700;
  color: #2E7D32;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  padding: 4px 10px;
  border-radius: 8px;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.pricing-feat i {
  font-size: 14px;
  color: var(--lilas);
  flex-shrink: 0;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}

.testimonial-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars i {
  font-size: 14px;
  color: #FFB400;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 20px;
}

.testimonial-text::before {
  content: '\201C';
}

.testimonial-text::after {
  content: '\201D';
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lilas-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--lilas);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--lilas-light);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-trigger:hover {
  background: var(--off-white);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--lilas-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.faq-icon i {
  font-size: 12px;
  color: var(--lilas);
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  background: var(--lilas);
}

.faq-item.open .faq-icon i {
  color: white;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-body {
  max-height: 200px;
}

.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--off-white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-final-glow--1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(111, 64, 114, .10) 0%, transparent 65%);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-final-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-final-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-urgency {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.cta-urgency i {
  color: var(--lilas);
  margin-right: 4px;
}

/* ============================================================
   MODAL DE CAPTURA
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(22, 13, 31, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(.94) translateY(10px);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: background .2s, color .2s;
}

.modal-close:hover {
  background: var(--lilas-pale);
  color: var(--lilas);
}

.modal-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .3px;
}

.modal-input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off-white);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.modal-input:focus {
  outline: none;
  border-color: var(--lilas);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(111, 64, 114, .10);
}

.modal-input::placeholder {
  color: var(--muted);
  opacity: .7;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 16px;
}

.modal-terms {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   ANIMAÇÃO reveal-up
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34, 1.2, .64, 1);
}

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

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--sh-lg);
  max-width: calc(100vw - 40px);
  animation: toast-in .4s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.toast--ok {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.toast--err {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.toast i:first-child {
  font-size: 16px;
  flex-shrink: 0;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
  color: inherit;
  opacity: .55;
  font-size: 14px;
  transition: opacity .2s;
  padding: 2px;
}

.toast-close:hover {
  opacity: 1;
}

/* ============================================================
   BOTÃO FLUTUANTE DÚVIDAS (WhatsApp)
   ============================================================ */
.duvidas-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .40);
  transition: background .25s, transform .3s, box-shadow .3s;
  animation: duvidas-pulse 3.5s ease-in-out infinite;
  text-decoration: none;
}

.duvidas-float i {
  font-size: 18px;
  flex-shrink: 0;
}

.duvidas-float:hover {
  background: var(--lilas-deep);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(111, 64, 114, .50);
  animation: none;
}

.duvidas-label {
  font-size: 14px;
  font-weight: 700;
}

@keyframes duvidas-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(111, 64, 114, .38);
  }

  50% {
    box-shadow: 0 6px 36px rgba(111, 64, 114, .55), 0 0 0 7px rgba(111, 64, 114, .07);
  }
}

@media (max-width: 320px) {
  .duvidas-label {
    display: none;
  }

  .duvidas-float {
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    justify-content: center;
  }
}