:root {
  --teal: #008ab2;
  --teal-dark: #006b8a;
  --teal-soft: #e6f5f9;
  --navy: #384870;
  --ink: #3a3a3a;
  --muted: #5f6368;
  --line: #e7e7e7;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --footer: #efefef;
  --shadow: 0 14px 40px rgba(0, 138, 178, 0.12);
  --radius: 10px;
  --container: 1200px;
  --header-h: 118px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-dark);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--teal);
  color: #fff;
  padding: 8px 12px;
  z-index: 2000;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 10px 0;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 96px;
  width: auto;
  max-width: none;
  mix-blend-mode: multiply;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desktop > li {
  position: relative;
}

.nav-desktop > li > a,
.nav-desktop .has-sub > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-desktop .has-sub > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-desktop > li > a:hover,
.nav-desktop .has-sub > button:hover,
.nav-desktop > li.current > a {
  color: var(--teal-dark);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px 0;
  display: none;
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub.open .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 14px;
}

.submenu a:hover {
  background: var(--teal-soft);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 8px 16px 20px;
}

.mobile-panel a,
.mobile-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 4px;
  border: 0;
  background: none;
  color: var(--navy);
  font: inherit;
}

.mobile-panel .sub a {
  padding-left: 18px;
  color: var(--muted);
}

/* Hero slider — fiel ao Smart Slider original (1920x650, texto central) */
.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: #dce6ea 51% 43% / cover no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 110, 128, 0.31);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 88px;
}

.hero-copy {
  max-width: 760px;
}

.hero-num { display: none; }

.hero h1,
.hero-title {
  font-family: "Calligraffitti", cursive;
  font-size: clamp(52px, 6.4vw, 86px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero p {
  margin: 0 auto 22px;
  max-width: 540px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.hero-nav { display: none; }

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 0;
  border-radius: 3px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
.hero-arrow:hover { background: var(--teal-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 0;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--teal) !important;
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff !important;
}

.btn-light {
  background: #fff;
  color: var(--teal) !important;
}

/* Sections */
.section { padding: 72px 0; }

.about-section {
  padding: 80px 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 53px;
  object-fit: contain;
  background: #fff;
}

.about-copy {
  max-width: 460px;
}

.about-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #808285;
  margin: 0 0 4px;
}

.about-title {
  font-family: "Calligraffitti", cursive;
  font-size: clamp(34px, 3.6vw, 46px);
  color: var(--teal);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.15;
}

.about-text {
  margin: 0 0 22px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.about .btn {
  border-radius: 2px;
  min-height: 42px;
  padding: 0 22px;
}

.kicker {
  font-family: "Calligraffitti", cursive;
  color: var(--teal);
  font-size: 28px;
  margin: 0 0 4px;
}

.section-title {
  font-family: "Calligraffitti", cursive;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--teal);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.15;
}

.center { text-align: center; }

.lede { color: var(--muted); font-size: 17px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-section {
  background: #efefef;
  padding: 50px 0 20px;
}

.card-specialty {
  position: relative;
  height: 300px;
  border-radius: 37px;
  overflow: hidden;
  color: #fff;
  background: #6a6a6a center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  border: 5px solid var(--teal);
}

.card-specialty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.3;
}

.card-specialty:hover::after { opacity: 0.4; }

.card-specialty .inner {
  position: relative;
  z-index: 1;
  padding: 30px;
  width: 100%;
}

.card-specialty h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.card-specialty .more { display: none; }

.blog-wrap { position: relative; }

.blog-card {
  background: #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .body {
  padding: 30px;
  min-height: 222px;
  display: flex;
  flex-direction: column;
}

.blog-card time {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 400;
}

.blog-card h3 {
  margin: 3px 0 16px;
  font-size: 17px;
  color: #000;
  line-height: 1.35;
  font-weight: 600;
}

.blog-card h3 a { color: #000; }

.blog-card .btn {
  margin-top: auto;
  align-self: center;
  border-radius: 0;
  min-height: 0;
  padding: 10px 30px 8px;
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  position: relative;
  min-height: 337px;
  color: #fff;
  background-color: #1a1a1a;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  display: flex;
  align-items: stretch;
}

.cta-band .cta-box {
  width: min(50%, 600px);
  background: rgba(0, 0, 0, 0.55);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.cta-band p {
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band .btn {
  align-self: flex-start;
  border-radius: 0;
  min-height: 0;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6%;
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto;
}

.split-card {
  background: #efefef;
  text-align: center;
  color: #000;
}

.split-card .bar {
  height: 100px;
  background: var(--teal);
}

.split-card .icon {
  width: 80px;
  height: 80px;
  margin: -40px auto 0;
  border-radius: 50%;
  background: #4e4e4e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-card .icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.split-card .content { padding: 16px 30px 30px; }
.split-card .content p { color: #767676; margin: 15px 0 0; }

.split-card h2 {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #000;
}

.split-card a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

/* Inner pages — medidas do Elementor/Astra original */
.page-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
}

.page-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3em;
  color: #008ab2;
  margin: 0 0 10px;
}

.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin: 0;
}

.page-split + .page-split {
  margin-top: 50px;
}

.page-split:has(> .split-card:last-child) {
  align-items: stretch;
}

.page-split > .split-card {
  height: 100%;
}

.page-split img,
.page-split .cover {
  width: 100%;
  border-radius: 53px;
}

.page-split img.narrow {
  width: 74%;
  margin-top: 20px;
}

.page-split .prose {
  padding: 0;
}

.page-split .prose p,
.page-copy p {
  color: #7a7a7a;
  font-size: 15px;
  line-height: 1.65;
}

.page-copy {
  margin: 10px 0 50px;
}

.page-copy ul,
.prose ul {
  list-style: disc;
  padding-left: 1.2em;
  color: #7a7a7a;
}

.page-copy img.cover {
  width: 100%;
  max-width: 720px;
  border-radius: 8px;
  margin: 16px 0 24px;
}

.page-copy .prose h2,
.page-copy h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3em;
  color: #008ab2;
}

.page-copy .form,
.page-copy .map-wrap {
  margin-top: 20px;
}

.article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.article img.cover {
  width: 100%;
  border-radius: 53px;
  object-fit: cover;
}

.prose h2,
.prose h3 {
  color: var(--navy);
  margin-top: 1.6em;
}

.prose p { color: #444; }

.steps,
.chips {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.steps li,
.chip {
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  padding: 10px 14px;
  color: var(--navy);
}

.chips {
  grid-template-columns: repeat(2, 1fr);
}

.chip { border-radius: 6px; font-weight: 600; font-size: 14px; }

.map-wrap iframe {
  width: 100%;
  height: 450px;
  min-height: 450px;
  border: 0;
}

.form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #d7dde3;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(0, 138, 178, 0.25);
  border-color: var(--teal);
}

.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.feedback {
  display: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.feedback.ok { display: block; background: #e8f8ee; color: #146c2e; }
.feedback.err { display: block; background: #fdecec; color: #9b1c1c; }

/* Footer */
.site-footer {
  background: #efefef;
  padding: 40px 0 0;
  color: #4a4a4a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: "Calligraffitti", cursive;
  font-size: 24px;
  font-weight: 600;
}

.site-footer h4::after {
  content: "";
  display: block;
  width: 90%;
  height: 2.4px;
  background: var(--teal);
  margin-top: 8px;
}

.site-footer a { color: #4a4a4a; }
.site-footer a:hover { color: var(--teal); }

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-list svg {
  width: 14px;
  height: 14px;
  fill: var(--teal);
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  width: 74%;
  max-width: 220px;
  mix-blend-mode: multiply;
}

.social {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: #1877f2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social a.ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social a.yt { background: #ff0000; }

.social svg { width: 16px; height: 16px; fill: currentColor; }

.copy {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--teal);
  color: #fdfdfd;
  font-size: 13px;
  text-align: center;
}

.copy a { color: #fdfdfd; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  height: 48px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-panel.open { display: block; }
  .about,
  .article,
  .page-split,
  .grid-3,
  .footer-grid,
  .split-cta,
  .chips { grid-template-columns: 1fr; }
  .split-cta { gap: 28px; }
  .page-split .prose { padding: 0; }
  .page-title { font-size: 20px; }
  .cta-band .cta-box { width: 100%; }
  .cta-band { background-attachment: scroll; background-size: cover; }
}

@media (max-width: 720px) {
  .hero { height: 460px; }
  .hero-content { padding: 0 24px; }
  .hero-arrow { display: none; }
  .section { padding: 48px 0; }
  .logo img { height: 72px; }
  .header-inner { min-height: 88px; }
}
