:root {
  --bg: #f7fdfa;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #0f766e;
  --brand-2: #2dd4bf;
  --border: #e2e8f0;
  --ring: #99f6e4;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 118, 110, 0.12);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  z-index: 10000;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffffc7;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--ink);
}
.brand img {
  filter: hue-rotate(-10deg) saturate(1.2);
}
.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  border-radius: 0.75rem;
}
.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.7rem;
}
.menu .btn {
  margin-left: 0.25rem;
}
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .menu {
    position: absolute;
    inset: 60px 1rem auto 1rem;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
  }
  .menu.open {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  transition: 0.2s;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.25);
}
.btn.btn-ghost {
  background: transparent;
}
.btn.btn-lg {
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  font-size: 1.05rem;
}

.hero {
  padding: 3rem 0 1rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.hero .accent {
  color: var(--brand);
}
.hero p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  color: #0b7666;
}
.hero-media {
  filter: drop-shadow(var(--shadow));
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-media img {
  max-width: 350px;
}
@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .trust-badges {
    flex-direction: column;
  }
}

.section {
  padding: 3rem 0;
}
.section h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0 0 1rem;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  display: flex;
  justify-content: space-between;
flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  gap: 10px;
}
.card:is(:hover, :focus-visible) {
  box-shadow: 2px 4px 12px #000;
  cursor: pointer;
  transform: translateY(-5px);
}
.card h3 {
  margin: 0.75rem 0 0.25rem;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card i {
  font-size: 60px;
}
.card img {
  border-radius: 15px 15px 0 0;
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.chip {
  border: 1px dashed var(--brand);
  background: #ecfeff;
  color: #065f46;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.specialties-grid .sp {
  transition: 0.2s;
}
.specialties-grid .sp.hidden {
  display: none;
}

.testimonials .slider {
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  overflow: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.testimonials .slide {
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.testimonials blockquote {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.conv-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.conv-logos img {
  filter: grayscale(1) contrast(1.1);
  opacity: 0.9;
}
@media (max-width: 700px) {
  .conv-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(90deg, #ecfeff, #f0fdf4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.cta h2 {
  margin: 0.25rem 0;
}

.page-hero {
  padding: 2.5rem 0 1rem;
  background: linear-gradient(0deg, #ffffff, #f0fdf4);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .profissional {
    flex-direction: column;
  }
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.feature h3 {
  margin: 0.75rem 0 0.25rem;
}
.feature ul {
  margin: 0.25rem 0 0 0rem;
  color: var(--muted);
}
.feature img {
  border-radius: 15px 15px 0 0;
}
.pro-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.pro-card:hover {
  transform: translateY(-2px);
}

.form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #fff;
}
.form .form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-wrap {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 2rem 0 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
}
.site-footer h4 {
  margin: 0.25rem 0;
}
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}
@media (max-width: 700px) {
  .footer-base {
    flex-direction: column;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
}
.whatsapp-fab:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.profissionais {
  max-width: 1140px;
  margin: auto;
  padding: 2rem;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #009894;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 6px;
  transition: background 0.3s;
}
.faq-btn:hover {
  background: #007f7d;
}

.faq-content {
  display: none;
  padding: 1rem;
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.profissional {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 50px;
}
.profissional img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20%;
  margin-right: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  color: var(--ink);
  padding: 1rem 1.25rem;
  z-index: 9999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.cookie-banner p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}
.cookie-banner a {
  color: var(--ink);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
a {
  text-decoration: none;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-accept {
  background: var(--brand);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff80;
}

#cookie-ok:target ~ .cookie-banner {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  padding: 1rem;
}
#cookie-settings:target {
  display: grid;
}
.cookie-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 1.25rem 1.25rem 1rem;
}
.cookie-card h2 {
  margin: 0.25rem 0 0.25rem;
  font-size: 1.15rem;
}
.cookie-card p {
  margin: 0.3rem 0 0.8rem;
  color: #333;
}
.cookie-list {
  background: var(--muted);
  border-radius: 10px;
  padding: 0.75rem;
}
.cookie-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}
.cookie-card .row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 0.75rem;
}
.cookie-card .btn {
  border-radius: 10px;
}
.btn-close {
  background: #e3e3e7;
  color: #111;
}
.badge {
  display: inline-block;
  background: #1112;
  color: #111;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.5rem;
  margin-left: 0.35rem;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    align-self: stretch;
    justify-content: stretch;
  }
  .btn {
    flex: 1;
    text-align: center;
  }
}
