:root {
  --bg: #122439;
  --bg-dark: #0d1a2a;
  --light: #ececec;
  --white: #ffffff;
  --text: #313131;
  --muted: #6b6b6b;
  --gold: #b99c63;
  --gold-light: #fcfae6;
  --border: #dbdbdb;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --font-body: "Inter", sans-serif;
  --font-head: "Poppins", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 0;
  background: rgba(18, 36, 57, 0.96);
  backdrop-filter: blur(10px);
}
.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(200%) contrast(100%);
}
.menu {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
  font: 500 15px var(--font-head);
}
.menu a:hover { color: #f0d8aa; }
.menu-cta, .btn-primary {
  background: linear-gradient(45deg, #e6cfa2, #9e7a48, #e6cfa2, #9e7a48);
  background-size: 400% 200%;
  animation: texture 3.4s cubic-bezier(0, 0.81, 1, 0.19) 2s infinite normal none running texture;
  color: #2a1a00;
}
.menu-cta {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 780px;
  background-color: #13253d;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 37, 61, 0.18), rgba(19, 37, 61, 0.72));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 780px;
  padding: 52px 0 24px;
}
.hero-copy h1, .section h2, .showcase-copy h2 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  color: var(--white);
  max-width: 8ch;
}
.hero-copy .lead {
  color: #ffffff;
}
.eyebrow, .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(171, 145, 119, 0.92);
  color: var(--white);
  font: 500 15px var(--font-head);
}
.section-kicker-caps {
  display: block;
  background: transparent;
  color: #8a8a8a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0;
  margin-bottom: 18px;
}
.section-kicker-left {
  text-align: left;
}
.section-kicker-muted {
  color: rgba(138, 138, 138, 0.5) !important;
}
.section-dark .section-kicker-muted,
.section-dark .section-kicker-caps.section-kicker-muted {
  color: rgba(138, 138, 138, 0.5) !important;
}
.lead, .section p, .quote {
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-copy .lead { max-width: 670px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 22px;
  font: 500 18px var(--font-head);
  text-transform: uppercase;
}
.btn-secondary {
  background: var(--gold-light);
  color: #2a1a00;
}
.btn-full { width: 100%; }
.hero-actions .btn,
.section-cta,
.final-actions .btn {
  width: auto;
  max-width: 100%;
}
.section-cta-wrap {
  display: flex;
  justify-content: center;
}
.section-cta {
  min-width: 240px;
  display: inline-flex;
}
.hero-visual {
  align-self: end;
  justify-self: end;
  max-width: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section { padding: 84px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--bg); color: var(--white); }
.section-dark .section-kicker,
.section-dark .section-kicker-caps,
.section-dark h2,
.section-dark p,
.section-dark li,
.section-dark .quote,
.section-dark .quote-author,
.section-dark .elementor-heading-title,
.section-dark .elementor-heading-title a,
.section-dark .elementor-widget-text-editor,
.section-dark .elementor-widget-text-editor p,
.section-dark .elementor-widget-text-editor li,
.section-dark .elementor-button,
.section-dark .elementor-button .elementor-button-text {
  color: #ffffff !important;
}
.section-light .section-kicker-caps {
  color: #8a8a8a;
}
.section-kicker-muted {
  color: rgba(138, 138, 138, 0.5) !important;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #122439;
  margin-bottom: 16px;
}
.section p { color: #313131; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.section#sobre {
  position: relative;
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  background-color: var(--light);
}
.section#sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
}
.about-layout {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 52% 48%;
}
.about-copy {
  grid-column: 2;
  align-self: center;
  justify-self: start;
  width: min(100%, 470px);
  padding: 56px 0;
  margin-left: clamp(12px, 2vw, 36px);
  text-align: left;
}
.about-copy .section-kicker-caps,
.about-copy h2,
.about-copy p {
  color: #ffffff;
}
.about-copy p {
  max-width: 100%;
}

.about-cta {
  margin-top: 26px;
  margin-bottom: 24px;
}

.section-cta-wrap {
  display: flex;
  margin-top: 28px;
}
.section-cta-wrap-center {
  justify-content: center;
}
.section-cta-wrap-left {
  justify-content: flex-start;
}
.section-cta {
  min-width: 240px;
  padding-left: 26px;
  padding-right: 26px;
}
.about-copy .section-kicker-caps,
.about-copy h2,
.about-copy p {
  text-align: left;
}
.section-title-center {
  text-align: center;
}
.section-center {
  text-align: center;
}
.section-white {
  color: #ffffff !important;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.card-outline { padding: 30px; }
.card-outline h3, .service-card h3, .course-card h3 { font-family: var(--font-head); margin-top: 0; }
.checklist { margin: 0; padding-left: 18px; line-height: 2; color: #444; }

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}
.showcase-visual {
  min-height: 420px;
  border-radius: 18px;
  background-color: #13253d;
  box-shadow: var(--shadow);
}
.showcase-copy p {
  color: #fff;
}
.showcase-copy h2 {
  color: #ffffff;
}
.showcase-card img { width: 100%; border-radius: 14px; box-shadow: var(--shadow); }
.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 156, 99, 0.16);
  color: var(--gold);
  font: 700 12px var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.service-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.service-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  object-fit: contain;
}
.service-card p { margin-bottom: 0; color: var(--muted); }

.card-quote {
  padding: 30px;
  background: linear-gradient(145deg, #1d3554, #13253d);
  border: 1px solid rgba(255,255,255,0.08);
}
.quote {
  font-style: italic;
  font-size: 1.22rem;
}
.quote-author { display: inline-block; margin-top: 14px; color: rgba(255,255,255,0.7); }
.quote-sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 22px 0;
}
.steps {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}
.steps li + li { margin-top: 10px; }

.courses-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}
.courses-copy h2 {
  text-align: left;
  color: #122439;
  margin-top: 0;
}
.courses-copy p {
  color: var(--text);
  max-width: 620px;
}
.courses-banners {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.courses-banners a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.courses-banners img {
  width: 100%;
  display: block;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.results-marquee {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 16px;
}
.results-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.results-track img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.video-frame {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #000;
}
.map-frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe, .map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.map-frame iframe {
  min-height: 420px;
}

.footer {
  padding: 30px 0;
  background: #33302f;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  height: 42px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(200%) contrast(100%);
}
.footer p, .footer a { color: rgba(255,255,255,0.88) !important; }
.footer .elementor-heading-title,
.footer .elementor-heading-title a,
.footer .elementor-widget-text-editor,
.footer .elementor-widget-text-editor p {
  color: rgba(255,255,255,0.88) !important;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.final-copy {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.final-copy h2,
.final-copy p {
  text-align: center;
}
.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.final-actions .btn {
  width: min(100%, 680px);
}
.final-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}


.menu-toggle,
.menu-toggle-button {
  display: none;
}

@keyframes texture {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero-grid, .split, .showcase, .cards-grid, .course-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { min-height: auto; padding-bottom: 40px; }
  .hero { min-height: auto; }
}

@media (max-width: 720px) {
  .topbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .container {
    width: min(1180px, calc(100% - 40px));
  }
  .topbar-inner {
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand {
    height: 40px;
  }
  .menu-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(185, 156, 99, 0.96);
    cursor: pointer;
    margin-top: 0;
    margin-left: auto;
    position: relative;
  }
  .menu-toggle-button span,
  .menu-toggle-button span::before,
  .menu-toggle-button span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    position: relative;
  }
  .menu-toggle-button span::before {
    position: absolute;
    top: -6px;
    left: 0;
  }
  .menu-toggle-button span::after {
    position: absolute;
    top: 6px;
    left: 0;
  }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0 4px;
  }
  .menu-toggle:checked ~ .menu {
    display: flex;
  }
  .hero-grid, .split, .showcase, .cards-grid, .gallery-grid, .courses-layout {
    grid-template-columns: 1fr;
  }
  .hero-title-line {
    display: block;
  }
  .hero {
    background-position: center 8% !important;
    background-size: cover !important;
    min-height: 460px;
  }
  .section#sobre {
    min-height: auto;
  }
  #sobre {
    min-height: 791px !important;
  }
  #sobre::before {
    background: transparent;
  }
  .hero-grid {
    min-height: 460px;
    padding-top: 20px;
    padding-bottom: 18px;
    align-items: end;
  }
  .hero-copy {
    margin-top: 400px;
    text-align: center;
  }
  .hero-copy h1 {
    max-width: none;
    white-space: normal;
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.02;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-actions .btn {
    min-height: 50px;
    padding: 0 10px;
    min-width: 0;
    font-size: 12px;
    line-height: 1.1;
  }
  .hero-visual { justify-self: stretch; max-width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-frame {
    aspect-ratio: 9 / 16;
  }
  .video-frame iframe {
    height: 100%;
  }
  .results-track img { width: 220px; height: 220px; }
  .about-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 200px;
  }
  .about-copy {
    grid-column: 1;
    width: 100%;
    padding: 0 14px 0;
    justify-self: stretch;
    margin-left: 0;
    margin-top: 200px;
  }
  #tratamentos .section-kicker,
  #tratamentos .section-title-center,
  #tratamentos .section-center,
  #provas .section-title-center,
  #provas .section-center,
  #galeria .section-title-center,
  #galeria .section-center,
  #cursos .courses-copy h2,
  #cursos .courses-copy p,
  #localizacao h2,
  #localizacao p,
  #provas .section-white,
  #galeria .section-white,
  .final-copy h2,
  .final-copy p {
    text-align: left;
  }
  #provas .section-white,
  #galeria .section-white {
    text-align: left;
  }
  #tratamentos .section-kicker {
    text-align: left;
  }
  .section-title-center,
  .section-center {
    text-align: left;
  }
  .video-grid {
    gap: 12px;
  }
  .showcase-visual {
    min-height: 280px;
  }
  .final-copy {
    margin: 0;
    text-align: left;
    width: 100%;
  }
  .final-actions {
    align-items: stretch;
  }
  .final-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 9px;
    line-height: 1.1;
    white-space: normal;
    word-break: keep-all;
  }
  .section-cta-wrap-center,
  .section-cta-wrap-left {
    justify-content: flex-start;
  }
  .section-cta {
    min-width: 0;
  }
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 66px;
  height: 66px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.floating-cta-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Elementor fine tuning for the live page */
html, body {
  overflow-x: hidden;
}

body {
  padding-top: 0 !important;
}

body .hostinger-elementor-aos {
  opacity: 1 !important;
  transform: none !important;
}

body .elementor .e-con.e-parent,
body .elementor .e-con.e-child,
body .elementor .e-con-inner {
  margin: 0 !important;
}

body .elementor .container {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body .btn-primary .elementor-button,
body .section-cta .elementor-button,
body .final-actions .btn-primary .elementor-button {
  background: linear-gradient(45deg, #e6cfa2, #9e7a48, #e6cfa2, #9e7a48) !important;
  background-size: 400% 200% !important;
  color: #2a1a00 !important;
}

body .btn-secondary .elementor-button,
body .final-actions .btn-secondary .elementor-button {
  background: var(--gold-light) !important;
  color: #2a1a00 !important;
}

body .section-light .elementor-heading-title {
  color: #122439 !important;
}

body #sobre .elementor-heading-title,
body #sobre .elementor-widget-text-editor,
body #sobre .elementor-widget-text-editor p {
  color: #ffffff !important;
}

body .topbar,
body .main,
body .hero {
  padding: 0 !important;
}

body .topbar-inner {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  padding: 0 !important;
}

body .topbar .menu {
  padding: 0 !important;
}

body .menu-toggle-shell {
  width: auto !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

body .elementor .main {
  gap: 0 !important;
}

body .hero .elementor-heading-title,
body .hero .elementor-widget-text-editor,
body .hero .elementor-widget-text-editor p,
body .section-dark .elementor-heading-title,
body .section-dark .elementor-heading-title a,
body .section-dark .elementor-widget-text-editor,
body .section-dark .elementor-widget-text-editor p,
body .section-dark .elementor-widget-text-editor li,
body .section-dark .elementor-button,
body .section-dark .elementor-button .elementor-button-text,
body .section-dark .section-white,
body .section-dark .section-white p {
  color: #ffffff !important;
}

body .btn-primary .elementor-button,
body .btn-primary,
body .section-cta,
body .section-dark .btn-primary .elementor-button,
body .section-light .btn-primary .elementor-button,
body .section-cta .elementor-button,
body .section-dark .section-cta .elementor-button,
body .section-light .section-cta .elementor-button {
  background: linear-gradient(45deg, #e6cfa2, #9e7a48, #e6cfa2, #9e7a48) !important;
  background-size: 400% 200% !important;
  color: #2a1a00 !important;
}

body .btn-secondary .elementor-button,
body .btn-secondary,
body .section-dark .btn-secondary .elementor-button,
body .section-light .btn-secondary .elementor-button {
  background: var(--gold-light) !important;
  color: #2a1a00 !important;
}

body .hero-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

body .hero-actions > .elementor-widget-button {
  flex: 0 1 auto;
  width: auto;
}

body .hero-actions .elementor-button {
  width: auto;
  white-space: nowrap;
}

body .menu {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: flex-end;
  align-items: center;
  direction: ltr;
}

body .results-marquee {
  overflow: hidden;
}

body .results-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: max-content;
}

body .results-track > .elementor-widget-image {
  flex: 0 0 auto;
  width: 260px;
}

body .results-track .elementor-widget-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
}

body .topbar-inner,
body .footer-links {
  flex-direction: row;
}

@media (max-width: 720px) {
  body .topbar-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 8px;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  body .topbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body .elementor .container:not(.hero-grid) {
    width: calc(100% - 40px) !important;
    max-width: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .elementor .hero-grid.container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .brand {
    height: 34px;
  }

  body .menu-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(185, 156, 99, 0.96);
    cursor: pointer;
    margin-top: 0;
    margin-left: auto;
    position: relative;
  }

  body .menu-toggle-button span,
  body .menu-toggle-button span::before,
  body .menu-toggle-button span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    position: relative;
  }

  body .menu-toggle-button span::before {
    position: absolute;
    top: -6px;
    left: 0;
  }

  body .menu-toggle-button span::after {
    position: absolute;
    top: 6px;
    left: 0;
  }

  body .topbar .menu {
    display: none !important;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 12px 0 4px;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow: hidden;
    white-space: normal;
  }

  body .menu .elementor-heading-title {
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  body .menu-toggle:checked ~ .menu {
    display: flex !important;
  }

  body .hero {
    min-height: 692px !important;
    background-position: center 8% !important;
    background-size: cover !important;
  }

  body .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: 100% !important;
    max-width: none !important;
    min-height: 692px;
    padding: 0 20px 44px;
  }

  body .hero-copy {
    width: 100%;
    padding: 0 !important;
    margin-top: 0;
    text-align: center;
  }

  body .hero-copy h1,
  body .hero-copy .lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  body .hero-actions {
    width: calc(100vw - 40px) !important;
    max-width: 350px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .hero-actions > .elementor-widget-button,
  body .hero-actions .elementor-button {
    width: 100% !important;
    max-width: none !important;
  }

  body .hero-actions > .elementor-widget-button {
    padding: 0 !important;
  }

  body .hero-actions .elementor-button {
    min-height: 50px !important;
    padding: 0 10px !important;
    border-radius: 22px !important;
    white-space: nowrap !important;
  }

  body .hero-actions .elementor-button-content-wrapper,
  body .hero-actions .elementor-button-text {
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  body .section {
    padding: 48px 0;
  }

  body .about-layout,
  body .showcase,
  body .split,
  body .courses-layout,
  body .video-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  body .about-layout {
    min-height: auto;
    padding-top: 96px;
  }

  body .about-copy {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
    padding: 0 0 24px;
    text-align: center;
  }

  body #sobre .about-layout {
    display: flex !important;
    min-height: 791px !important;
    padding: 0 14px 23px !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
  }

  body #sobre .about-copy {
    width: 100% !important;
    max-width: 362px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  body #sobre .about-copy .elementor-heading-title,
  body #sobre .about-copy .elementor-widget-text-editor,
  body #sobre .about-copy .elementor-widget-text-editor p {
    color: #ffffff !important;
    text-align: left !important;
  }

  body #sobre .about-cta,
  body #sobre .about-cta .elementor-button {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  body .section-cta-wrap,
  body .section-cta-wrap-center,
  body .section-cta-wrap-left {
    justify-content: flex-start !important;
  }

  body .section-cta {
    width: 263px !important;
    min-width: 263px !important;
    max-width: 263px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
  }

  body .section-cta .elementor-button {
    width: 100% !important;
    min-width: 263px !important;
    min-height: 58px !important;
    padding: 0 26px !important;
    font-size: 18px !important;
  }

  body .cards-grid {
    grid-template-columns: 1fr;
  }

  body .results-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body .results-marquee::-webkit-scrollbar {
    display: none;
  }

  body .results-track {
    gap: 12px;
  }

  body .results-track > .elementor-widget-image {
    width: 190px;
    flex: 0 0 190px;
  }

  body .results-track .elementor-widget-image img {
    width: 190px;
    height: 190px;
  }

  body .final-actions {
    align-items: stretch;
    flex-direction: column !important;
  }

  body .final-actions .btn,
  body .final-actions .elementor-button {
    width: 100%;
  }

  body .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  body .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  body .section-title-center,
  body .section-center,
  body .section-kicker,
  body .section-kicker-caps,
  body .about-copy h2,
  body .about-copy p,
  body .courses-copy h2,
  body .courses-copy p,
  body .final-copy h2,
  body .final-copy p,
  body #localizacao h2,
  body #localizacao p,
  body #tratamentos .section-title-center,
  body #tratamentos .section-center,
  body #provas .section-title-center,
  body #provas .section-center,
  body #galeria .section-title-center,
  body #galeria .section-center {
    text-align: center;
  }

  body .section-cta .elementor-button {
    min-height: 42px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }

  body .section-cta {
    min-width: 0;
  }

  body .footer p,
  body .footer a,
  body .footer .elementor-heading-title,
  body .footer .elementor-heading-title a {
    color: rgba(255, 255, 255, 0.88) !important;
  }

  body .map-frame iframe {
    min-height: 320px;
  }
}

body .elementor .e-con.container {
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body .elementor-widget-button.btn,
body .elementor-widget-button.btn-primary,
body .elementor-widget-button.btn-secondary {
  background: transparent !important;
  animation: none !important;
  color: inherit !important;
  padding: 0 !important;
}

body .elementor-widget-button.btn .elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 58px !important;
  padding: 0 30px !important;
  border-radius: 22px !important;
  font: 500 18px var(--font-head) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 0 !important;
}

body .elementor-widget-button.btn-primary .elementor-button,
body .elementor-widget-button.section-cta .elementor-button {
  background: linear-gradient(45deg, #e6cfa2, #9e7a48, #e6cfa2, #9e7a48) !important;
  background-size: 400% 200% !important;
  color: #2a1a00 !important;
}

body .elementor-widget-button.btn-secondary .elementor-button {
  background: var(--gold-light) !important;
  color: #2a1a00 !important;
}

body .elementor-widget-button.section-cta .elementor-button {
  width: 263px !important;
  min-width: 263px !important;
}

body .elementor-widget-button.about-cta .elementor-button {
  width: 271px !important;
}

body .final-actions .elementor-widget-button.btn .elementor-button {
  width: 680px !important;
  max-width: 100% !important;
}

@media (max-width: 720px) {
  body .elementor .e-con.container:not(.hero-grid) {
    width: calc(100% - 40px) !important;
    max-width: 350px !important;
  }

  body .elementor .e-con.hero-grid.container {
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .final-actions .elementor-widget-button.btn .elementor-button {
    width: 350px !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
  }

  body .hero-actions .elementor-widget-button.btn .elementor-button,
  body .hero-actions .elementor-button {
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 10px !important;
  }

  body .hero-actions .elementor-button-content-wrapper,
  body .hero-actions .elementor-button-text {
    font-size: 12px !important;
    line-height: 1.1 !important;
  }
}

