/* ============================================================
   PSICÓLOGA SAMIRA — style.css
   Sistema de design: "Respiro" — inspirado no ritmo de uma sessão
   de terapia (acolhimento, pausa, clareza). Paleta: Azul Petróleo.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Cores — paleta "Azul Petróleo" */
  --ink: #123A45;          /* azul petróleo escuro — texto principal, fundos escuros */
  --ink-soft: #3E5F68;     /* azul petróleo suavizado — texto secundário sobre claro */
  --paper: #F2EFEA;        /* papel — fundo principal */
  --paper-warm: #E3E9E9;   /* papel frio — seções alternadas (tom azulado suave) */
  --card: #FBFAF7;         /* cartões sobre o papel */
  --sage: #7C97A1;         /* azul-acinzentado — detalhes, bordas, ícones */
  --ochre: #C98A3E;        /* âmbar — cor de ação (CTAs), contraste com o azul */
  --ochre-dark: #A96F2C;   /* âmbar hover */
  --wine: #1E6673;         /* petróleo mais claro/teal — destaques, citações */
  --line: rgba(18, 58, 69, 0.14);

  /* Tipografia */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Escala */
  --step-1: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  --step0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step2:  clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step3:  clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
  --step4:  clamp(2.1rem, 1.7rem + 1.8vw, 3.25rem);

  /* Layout */
  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px -16px rgba(34, 48, 42, 0.28);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-alt { background: var(--paper-warm); }
.eyebrow {
  display: inline-block;
  font-size: var(--step-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.9em;
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: var(--step3); }
.lede { font-size: var(--step1); color: var(--ink-soft); }

/* ---------- 3. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border-radius: 999px;
  padding: 0.85em 1.6em;
  font-weight: 600;
  font-size: var(--step-1);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ochre); color: #fff; }
.btn-primary:hover { background: var(--ochre-dark); }
.btn-instagram {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-instagram:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-on-dark { border-color: rgba(243,238,230,0.5); color: var(--paper); }
.btn-on-dark:hover { background: var(--paper); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 238, 230, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}
.brand span { color: var(--wine); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: var(--step-1); }
.nav-links a:hover { color: var(--wine); }
.nav-cta { display: none; }
.nav-toggle {
  display: none; background: none; border: none; padding: 0.5rem;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 64px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem;
    gap: 1.5rem; transform: translateX(100%); transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 1.15rem; }
}

/* ---------- 5. Hero ---------- */
.hero {
  padding-block: clamp(3rem, 8vw, 6rem);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.hero h1 { font-size: var(--step4); max-width: 22ch; }
.hero .lede { max-width: 46ch; margin-bottom: 1.75em; }
.hero-lede-first { margin-bottom: 0.65rem !important; }
.hero-lede-second { margin-top: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.75rem; flex-wrap: wrap; color: var(--ink-soft); font-size: var(--step-1); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage) 0%, var(--ink) 100%);
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  background: var(--card); border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem; box-shadow: var(--shadow);
  font-size: var(--step-1); display: flex; align-items: center; gap: 0.6rem;
  max-width: calc(100% - 2.5rem);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ochre); flex-shrink: 0; }

/* ---------- 6. Divisor "respiro" (elemento de assinatura) ---------- */
.breath-divider { line-height: 0; margin-block: -1px; }
.breath-divider svg { width: 100%; height: auto; display: block; }

/* ---------- 7. Serviços ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--paper-warm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
  color: var(--wine);
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--ink-soft); margin-bottom: 0; font-size: var(--step-1); }

/* ---------- 8. Como funciona (sequência real) ---------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.step {
  position: relative;
  padding-top: 1.75rem;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

/* ---------- 9. Sobre ---------- */
.about {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about-photo {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--sage);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.credentials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.credentials li {
  background: var(--paper-warm); border-radius: 999px; padding: 0.5rem 1rem;
  font-size: var(--step-1); font-weight: 500; color: var(--ink-soft);
}

/* Seção "Sobre" (#sobre): foto menor e mais espaço para o texto.
   Ajuste as frações abaixo (ex: 0.5fr / 1.5fr) para deixar a foto
   ainda menor ou maior. */
#sobre .about { grid-template-columns: 0.62fr 1.38fr; }
#sobre .about-photo { max-width: 320px; }
@media (max-width: 900px) {
  #sobre .about { grid-template-columns: 1fr; }
  #sobre .about-photo { max-width: 380px; margin-inline: auto; }
}

/* ---------- 10. Depoimentos ---------- */
.testimonials { position: relative; }
.testi-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start; flex: 0 0 min(420px, 85vw);
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 2.25rem; display: flex; flex-direction: column;
}
.testi-card q { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; quotes: "“" "”"; }
.testi-meta { margin-top: auto; padding-top: 1.5rem; font-size: var(--step-1); color: var(--sage); }
.testi-controls { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.testi-controls button {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--card);
  display: flex; align-items: center; justify-content: center;
}
.testi-controls button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- 11. FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink);
}
.faq-q .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--wine); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 16px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 16px; transition: transform 0.25s ease; }
.faq-item.is-open .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--ink-soft); padding-bottom: 1.4rem; margin: 0; font-size: var(--step-1); max-width: 62ch; }

/* ---------- 12. Blog preview ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.blog-card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); text-decoration: none; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--sage), var(--ink)); }
.blog-card .body { padding: 1.5rem; }
.blog-card .tag { font-size: var(--step-1); color: var(--wine); font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; margin-top: 0.5rem; }
.blog-card p { color: var(--ink-soft); font-size: var(--step-1); margin-bottom: 0; }

/* ---------- 13. CTA / Agendamento ---------- */
.cta-section { background: var(--ink); color: var(--paper); border-radius: var(--radius); }
.cta-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; padding: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-section h2 { color: var(--paper); }
.cta-section .lede { color: rgba(243,238,230,0.75); }
.cta-form { background: var(--card); border-radius: var(--radius); padding: 1.75rem; color: var(--ink); }
.cta-form h3 { font-size: 1.05rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: var(--step-1); font-weight: 600; margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem; font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--ochre); }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.75rem; }
.form-error { display: none; background: #F7E7E4; border: 1px solid #B3413F; color: #7A2E27; border-radius: var(--radius-sm); padding: 0.85rem 1rem; font-size: var(--step-1); margin-top: 0.75rem; }
.form-error.is-visible { display: block; }
.form-success { display: none; background: #EDF3EA; border: 1px solid var(--sage); border-radius: var(--radius-sm); padding: 1rem; font-size: var(--step-1); }
.form-success.is-visible { display: block; }
.cta-form.is-submitted form { display: none; }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); padding-block: 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand { display: inline-block; text-decoration: none; }
.site-footer .brand img { height: 80px; width: auto; max-width: 240px; object-fit: contain; display: block; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 1rem; }
.footer-grid a { text-decoration: none; display: block; padding: 0.3rem 0; font-size: var(--step-1); }
.footer-grid a:hover { color: var(--wine); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- 15. Utilidades ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Página interna (blog / post) */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2rem); }
.page-hero h1 { font-size: var(--step3); max-width: 20ch; }
.post-content { max-width: 720px; margin-inline: auto; font-size: 1.05rem; }
.post-content h2 { font-size: 1.5rem; margin-top: 1.6em; }
.post-content p { color: var(--ink-soft); }
.post-content ul { list-style: disc; padding-left: 1.4em; color: var(--ink-soft); margin-bottom: 1.2em; }
.post-content ul li { margin-bottom: 0.4em; }
.breadcrumb { font-size: var(--step-1); color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--wine); }
.brand img { height: 44px; width: auto; display: block; }

nav-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-insta:hover {
  color: var(--wine);
  transform: translateY(-2px);
}

/* ===================== MOBILE: navegação, hero e rodapé ===================== */
@media (max-width: 860px) {
  .site-header { z-index: 100; }
  .nav { min-height: 68px; position: relative; z-index: 102; }
  .brand { font-size: clamp(1.05rem, 4.7vw, 1.3rem); white-space: nowrap; }
  .nav-toggle { position: relative; z-index: 103; cursor: pointer; }

  .nav-links {
    z-index: 101;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 6.25rem 1.5rem 2rem;
    gap: 0;
    background: var(--paper);
    transform: translateX(100%);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links li { width: 100%; flex: 0 0 auto; }
  .nav-links a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.65rem 0;
    font-size: 1.08rem;
  }
  .nav-links .btn {
    justify-content: center;
    margin-top: 0.8rem;
    padding-inline: 1rem;
  }
  .nav-insta { justify-content: flex-start; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 600px) {
  .section { padding-block: 2.5rem; }

  /* No celular, a foto entra entre as duas frases introdutórias. */
  .hero {
    padding-block: 2.15rem 3rem;
    gap: 1.25rem;
    align-items: stretch;
  }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 {
    order: 2;
    font-size: clamp(2rem, 9.3vw, 2.65rem);
    line-height: 1.06;
    max-width: 15ch;
    margin-bottom: 0.25rem;
    text-wrap: balance;
  }
  .hero-lede-first {
    order: 3;
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 !important;
    max-width: 34ch;
  }
  .hero-visual {
    order: 4;
    width: 100%;
    aspect-ratio: 4 / 4.7;
    margin-block: 0.25rem;
  }
  .hero-visual img {
    object-position: center 25%;
  }
  .hero-lede-second {
    order: 5;
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0.15rem 0 0.5rem !important;
    max-width: 34ch;
  }
  .hero-actions {
    order: 6;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { order: 7; gap: 1.4rem; }

  .services-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.7rem; }

  /* Logo do rodapé ajustado no celular */
  .site-footer .brand { display: inline-block; }
  .site-footer .brand img {
    height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }
  .footer-bottom { margin-top: 2rem; }
}

/* ===================== BOTÃO WHATSAPP FLUTUANTE & ELEMENTOS WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: var(--ink, #123A45);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(18, 58, 69, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: var(--wine, #1E6673);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 58, 69, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink, #123A45);
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Botão pequeno de WhatsApp dentro do passo (Como funciona) */
.btn-whatsapp-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding: 0.45rem 0.95rem;
  background-color: var(--ink, #123A45);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(18, 58, 69, 0.25);
}

.btn-whatsapp-step:hover {
  background-color: var(--wine, #1E6673);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 58, 69, 0.35);
}

.btn-whatsapp-step svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

