:root {
  --bg: #ffffff;
  --soft: #f4f8ff;
  --text: #101828;
  --muted: #475467;
  --border: #e4e7ec;
  --primary: #0b74d3;
  --primary-2: #d6333f;
  --shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 12px;
}
ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
li {
  margin: 6px 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
}
.brand-logo {
  width: 64px;
  height: auto;
}
.brand-copy {
  display: grid;
  line-height: 1.1;
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-area {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap; /* sem quebrar em duas linhas */
  white-space: nowrap;
}
.nav-desktop a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav-desktop a:hover {
  color: var(--text);
}
.nav-desktop a.btn-primary {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.06);
  cursor: pointer;
}
.hamburger {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-top: 2px solid #1d2939;
  border-bottom: 2px solid #1d2939;
  position: relative;
}
.hamburger:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2px solid #1d2939;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.nav-mobile a {
  padding: 12px 12px;
  border-radius: 14px;
  background: var(--soft);
  font-weight: 700;
  color: var(--text);
}
.nav-mobile a.btn-primary {
  background: var(--primary);
  color: #fff;
}

.section {
  padding: 62px 0;
}
.section-soft {
  background: var(--soft);
}
.section-head {
  margin-bottom: 22px;
}
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.section-intro {
  color: var(--muted);
  max-width: 68ch;
}
.mono {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.95em;
}

.hero {
  padding: 56px 0 22px;
  background:
    radial-gradient(
      1200px 550px at 20% -10%,
      rgba(11, 116, 211, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 95% 10%,
      rgba(214, 51, 63, 0.1),
      transparent 55%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: #0b3d67;
  background: rgba(11, 116, 211, 0.1);
  border: 1px solid rgba(11, 116, 211, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  width: fit-content;
}
.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}
.hero-ctas {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-checks {
  margin-top: 18px;
  color: var(--muted);
}
.hero-checks li {
  margin: 8px 0;
}

.hero-photo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-photo figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 16px;
}
.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
  padding: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0 0 10px;
}
.card ul {
  color: var(--muted);
  margin-top: 10px;
}
.card-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.06s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn-small {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 12px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 22px rgba(11, 116, 211, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(11, 116, 211, 0.3);
}
.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: #cfd4dc;
}

.tip {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(11, 116, 211, 0.35);
  background: rgba(11, 116, 211, 0.06);
  color: #0b3d67;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(214, 51, 63, 0.12);
  color: #7a1f28;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.lead-small {
  color: var(--muted);
  font-size: 16px;
}
.bullets {
  margin: 14px 0 0;
  color: var(--muted);
}

.testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}
.testimonial figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.contact-card .stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.contact-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
  font-size: 14px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}
.faq-body {
  padding: 0 18px 18px;
  color: var(--muted);
}
.faq-body h4 {
  margin: 14px 0 8px;
  color: var(--text);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-meta {
  justify-self: end;
}

.floating-whats {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #19a974;
  color: #fff;
  font-weight: 900;
  padding: 14px 16px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.22);
  z-index: 40;
}
.floating-whats span {
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img {
    height: 360px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .brand {
    min-width: auto;
  }
}

@media (max-width: 560px) {
  .cards,
  .testimonials,
  .gallery {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-photo img {
    height: 320px;
  }
  .floating-whats span {
    font-size: 13px;
  }
}

/* Instagram (carrossel) */
.ig-strip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--soft);
}
.ig-strip strong {
  font-weight: 900;
}
.ig-note {
  margin-top: 10px;
}

.ig-carousel {
  position: relative;
  margin-top: 16px;
}
.ig-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 42px; /* espaço pros botões */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.ig-track:focus {
  outline: 2px solid rgba(11, 116, 211, 0.35);
  outline-offset: 6px;
  border-radius: var(--radius);
}
.ig-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}
.ig-card.card {
  padding: 12px;
}

.ig-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ig-btn:hover {
  background: #fff;
}
.ig-prev {
  left: 6px;
}
.ig-next {
  right: 6px;
}

@media (max-width: 560px) {
  .ig-card {
    flex-basis: 86vw;
  }
  .ig-track {
    padding: 2px 14px;
  }
  .ig-btn {
    display: none;
  } /* no celular, arrasta */
}

/* FAQ (details) */
.faq details {
  border-top: 1px solid var(--border);
}
.faq details:first-child {
  border-top: none;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-weight: 900;
  color: var(--muted);
  margin-left: 14px;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}
