:root {
  /* ===================================
     SMACSS BASE - Design System Tokens
     =================================== */

  /* Typography */
  --font-family-primary: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Color Palette */
  --primary-color: #181363;
  --primary-color-hover: #332ab1;
  --secondary-color: #073797;
  --accent-color: #363697;

  /* Text Colors */
  --text-color-heading: #2c2d3f;
  --text-color-heading-hover: #6b6c78;
  --text-color-primary: #414252;
  --text-color-contrast: #ffffff;
  --text-color-light: #bcbcbc;

  /* Background Colors */
  --background-color-body: #ffffff;
  --background-color-section-primary: #9b9b9b;
  --background-color-section-secondary: #073797;
  --background-color-footer: #2c2d3f;
  --background-color-button-footer: #0556ac;

  /* Borders & Shadows */
  --border-color-light: #b3b3b3;
  --shadow-color-primary: rgba(26, 118, 209, 0.3);
  --shadow-color-primary-light: rgba(26, 118, 209, 0.25);

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.625rem;
  --spacing-md: 0.9375rem;
  --spacing-lg: 1.25rem;
  --spacing-xl: 1.875rem;

  /* Border Radius Scale */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.625rem;
  --border-radius-lg: 1.875rem;
  --border-radius-pill: 3.125rem;

  /* Animation Duration */
  --animation-duration-fast: 0.3s;
  --animation-duration-normal: 0.6s;

  /* Responsive Breakpoints */
  --breakpoint-xs: 384px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1366px;
  /* Fixed navbar anchor offset (updated dynamically via JS) */
  --navbar-offset: 72px; /* Default fallback value */
}

/* ===================================
   SMACSS BASE - GLOBAL STYLES
   =================================== */
html {
  scroll-behavior: smooth;
}

/*
 * Anchor offset compensation for fixed navbar
 * Applies to all sections and elements with IDs that might be navigation targets
 */
section[id],
header[id],
main[id],
footer[id],
div[id] {
  scroll-margin-top: var(--navbar-offset);
}

body {
  overflow-x: hidden;
  background-color: var(--background-color-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--text-color-heading);
}

p,
a {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--text-color-primary);
}

a {
  text-decoration: none !important;
}

/* ===================================
   SMACSS LAYOUT - HEADER & NAVIGATION
   =================================== */
.navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
}

h1 > .navbar-img {
  color: var(--accent-color) !important;
  font-size: 25px;
}

@media only screen and (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }
}

.format-text-nav a {
  color: var(--text-color-heading) !important;
}

.format-text-nav a:hover {
  color: var(--text-color-heading-hover) !important;
}

.format-size-text a {
  font-size: 22px;
}

.withUs {
  color: var(--primary-color) !important;
}

.withUs:hover {
  color: var(--primary-color-hover) !important;
}

/* ===================================
   SMACSS MODULES - HERO CAROUSEL
   =================================== */

.carousel-item {
  position: relative;
  height: 100vh;
  min-height: 350px;
  max-height: 600px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.image-background-color {
  background: linear-gradient(
    90deg,
    rgba(24, 19, 99, 0.92) 0%,
    rgba(24, 19, 99, 0.82) 42%,
    rgba(24, 19, 99, 0.52) 70%,
    rgba(24, 19, 99, 0.2) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  text-align: left;
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: var(--text-color-contrast);
  margin: 0px 250px 0px 120px !important;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(8, 10, 30, 0.42);
}

.hero-text > h2,
.hero-text > p {
  color: var(--text-color-contrast) !important;
}

.hero-text span {
  color: #b9f1ff !important;
  text-shadow: 0 2px 14px rgba(8, 10, 30, 0.5);
}

.hero-text > h2 {
  font-size: 50px !important;
}

.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.88);
  opacity: 0.9;
}

.carousel-indicators .active {
  background-color: #b9f1ff;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(24, 19, 99, 0.78);
  background-size: 42% 42%;
  box-shadow: 0 3px 12px rgba(8, 10, 30, 0.32);
}

@media only screen and (max-width: 1366px) {
  .carousel-item {
    height: 50vh;
    min-height: 300px;
    max-height: 420px;
  }

  .hero-text > h2 {
    font-size: 28px !important;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color-contrast);
    margin: 0px 0px 0px 0px !important;
  }

  .image-background-color {
    background: linear-gradient(
      180deg,
      rgba(24, 19, 99, 0.7) 0%,
      rgba(24, 19, 99, 0.84) 100%
    );
  }
}

@media only screen and (max-width: 768px) {
  .carousel-item {
    height: 45vh;
    min-height: 260px;
    max-height: 360px;
  }
  .hero-text > h2 {
    font-size: 22px !important;
  }
  .hero-text > p {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 576px) {
  .carousel-item {
    height: 40vh;
    min-height: 220px;
    max-height: 300px;
  }
  .hero-text > h2 {
    font-size: 18px !important;
  }
  .hero-text > p {
    font-size: 12px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .image-background-color {
    background: linear-gradient(
      180deg,
      rgba(24, 19, 99, 0.68) 0%,
      rgba(24, 19, 99, 0.9) 100%
    );
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.background-section-two {
  background-color: var(--primary-color);
}

.background-section-two h2 {
  color: var(--text-color-contrast);
}

.btn-result {
  background-color: white;
  padding: 16px;
  border: none;
  border-radius: 50%;
  color: var(--primary-color) !important;
  font-family: var(--font-family-primary);
  font-weight: 900 !important;
  font-size: 30px;
}

@media only screen and (max-width: 992px) {
  .btn-result {
    background-color: white !important;
    padding: 16px 16px !important;
    border-radius: 50% !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-family: var(--font-family-primary);
  }
}

@media only screen and (max-width: 769px) {
  .space-result > div:nth-child(1) {
    padding-bottom: 10px;
  }

  .space-result > div:nth-child(3) {
    padding-top: 10px;
  }
}

.click {
  cursor: pointer !important;
}

/* ===================================
   SMACSS LAYOUT - MAIN CONTENT
   =================================== */
/* Module: About Section */
.img-main-one {
  max-width: 500px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .img-main-one {
    max-width: 320px !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-one {
    max-width: 280px !important;
    margin: auto !important;
  }
}

.who-we-are > h2 {
  color: var(--text-color-heading);
}

.who-we-are p {
  color: var(--text-color-primary) !important;
}

/* Module: Icon Highlights */
.format-text-icon > i {
  padding: 20px 20px !important;
  background-color: var(--primary-color) !important;
  color: white;
  border-radius: 50%;
  /* margin: 0px 140px 0px 140px !important; */
  font-size: 25px;
}

@media only screen and (max-width: 384px) {
  .format-text-icon > i {
    padding: 20px 20px !important;
    background-color: var(--primary-color) !important;
    color: white;
    border-radius: 50%;
    margin: 0px !important;
    font-size: 25px;
  }
}

.format-text-icon {
  text-align: center !important;
}

.format-text-icon p {
  color: var(--text-color-primary) !important;
}

.format-text-icon h5 {
  padding-top: 15px;
  color: var(--text-color-heading);
}

/* Module: Feature Spotlight */
.background-main-section-three {
  background-color: var(--background-color-section-primary);
}

.background-main-section-three h2 {
  color: var(--text-color-heading);
}

.featured {
  color: var(--primary-color) !important;
}

.img-main-three > img {
  max-width: 500px;
  position: relative;
  top: -50px;
}

.btn-section-three > button,
.btn-section-three > a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

.btn-section-three {
  text-align: left;
}

@media only screen and (max-width: 992px) {
  .img-main-three > img {
    max-width: 380px;
    position: relative;
    top: 40px;
  }

  .background-main-section-three {
    padding-bottom: 50px !important;
  }

  .background-main-section-three > .container {
    text-align: center !important;
  }

  .btn-section-three {
    text-align: center !important;
  }
}

@media only screen and (max-width: 769px) {
  .img-main-three > img {
    max-width: 340px;
    position: relative;
    top: 40px;
  }

  .background-main-section-three {
    padding-bottom: 50px !important;
  }

  .background-main-section-three > .container {
    text-align: center !important;
  }

  .btn-section-three {
    text-align: center !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-three > img {
    max-width: 280px;
    position: relative;
    top: 40px;
  }
}

/* Module: Locations Gallery */

.background-main-section-four .container-fluid {
  text-align: center !important;
}

.btn-section-four > button {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

.btn-section-four {
  text-align: center !important;
}

.map {
  color: white !important;
  font-weight: bold !important;
}

.map:hover {
  text-decoration: underline !important;
}

.row .img-background-section-four {
  position: relative;
  overflow: hidden;
  height: 400px;
  max-width: 320px;
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.row .img-background-section-four:nth-child(1) {
  background-image: url("../img/unity01.jpg");
}

.row .img-background-section-four:nth-child(2) {
  background-image: url("../img/unity02.jpg");
}

.row .img-background-section-four:nth-child(3) {
  background-image: url("../img/unity03.jpg");
}

.row .img-background-section-four:nth-child(4) {
  background-image: url("../img/unity02.jpg");
}

@media only screen and (max-width: 767px) {
  .row .img-background-section-four {
    height: 400px;
    max-width: 90%;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .row .img-background-section-four:nth-child(1) {
    background-image: url("../img/unity01.jpg");
  }

  .row .img-background-section-four:nth-child(2) {
    background-image: url("../img/unity02.jpg");
  }

  .row .img-background-section-four:nth-child(3) {
    background-image: url("../img/unity03.jpg");
  }

  .row .img-background-section-four:nth-child(4) {
    background-image: url("../img/unity02.jpg");
  }
}

.text-format-four {
  text-align: center;
  top: 35% !important;
  position: relative;
  color: var(--text-color-contrast);
}

.text-format-four h4,
.text-format-four p,
.text-format-four span {
  color: var(--text-color-contrast);
}

.image-background-color-four {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.image-background-color-four-in {
  background: linear-gradient(145deg, #a7a7a7 0%, #8f8f8f 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.text-format-four-in {
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  text-align: center;
  top: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  color: var(--text-color-contrast);
}

.text-format-four-in h4,
.text-format-four-in p,
.text-format-four-in span {
  color: var(--text-color-contrast);
}

.text-format-four-in h4 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.text-format-four-in p {
  font-size: 14px !important;
  line-height: 1.45;
  margin: 0 0 1.15rem;
  max-width: 100%;
}

.text-format-four-in p:nth-of-type(2) {
  padding: 0.8rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.text-format-four-in p:last-child {
  margin-bottom: 0;
}

/* Module: Call-to-Action Banner */
.background-main-five {
  background-color: var(--primary-color) !important;
}

.background-main-five h2 {
  color: white;
}

.background-main-five p {
  color: white;
}

.btn-section-five {
  text-align: center !important;
}

.btn-section-five > button,
.btn-section-five > a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

/* Module: Agreements Carousel */
.main-section-six .glider-contain {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 2rem;
}

.main-section-six .glider {
  margin: 0;
}

.main-section-six .glider-slide {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.main-section-six .glider-slide > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-section-six .glider-slide img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.main-section-six .glider-prev,
.main-section-six .glider-next {
  width: 2.25rem;
  height: 2.25rem;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--background-color-body);
  box-shadow: 0 0.25rem 0.75rem rgba(44, 45, 63, 0.16);
  font-size: 1.25rem;
}

.main-section-six .glider-prev {
  left: 0.25rem;
}

.main-section-six .glider-next {
  left: auto;
  right: 0.25rem;
}

.main-section-six .glider-prev.disabled,
.main-section-six .glider-next.disabled {
  opacity: 0.35;
}

.main-section-six .glider-dots {
  margin-top: 1rem;
  gap: 0.15rem;
}

.main-section-six .glider-dot {
  width: 0.65rem;
  height: 0.65rem;
  margin: 0.35rem;
}

.main-section-six .glider-dot.active {
  background: var(--primary-color);
}

@media only screen and (max-width: 575px) {
  .main-section-six .glider-contain {
    padding: 0;
  }

  .main-section-six .glider-slide {
    padding: 0 0.25rem;
  }

  .main-section-six .glider-slide img {
    height: 104px;
  }

  .main-section-six .glider-prev,
  .main-section-six .glider-next {
    display: none;
  }

  .main-section-six .glider-dots {
    margin-top: 0.75rem;
  }
}

.main-section-six h2 {
  color: var(--text-color-heading);
}

.main-section-six p {
  color: var(--text-color-primary);
}

/* Module: Team Spotlight */
.background-main-section-seven {
  background-color: var(--background-color-section-secondary);
}

.background-main-section-seven h2 {
  color: white !important;
  padding: 10px 0px 20px 0px;
}

.background-main-section-seven p {
  color: var(--text-color-primary);
}

/* Module: BMI Calculator */
.imc {
  margin-top: 30px !important;
}

.imc .input {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-primary);
  background-color: #ffffff;
  border: 1px solid var(--background-color-section-secondary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.imc .input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.18);
}

.imc .input::placeholder {
  color: rgba(65, 66, 82, 0.6);
}

.imc-button {
  display: inline-block;
  font-family: var(--font-family-primary);
  font-weight: 700;
  background-color: var(--background-color-section-secondary);
  color: #ffffff;
  border: 1px solid var(--background-color-section-secondary);
  border-radius: 9999px;
  padding: 0.75rem 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.imc-button:hover,
.imc-button:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(26, 118, 209, 0.25);
  outline: none;
}

.format-text-section-ten h3 {
  color: var(--primary-color);
}

.main-section-ten {
  color: var(--text-color-primary);
}

#img-imc {
  max-width: 18.125rem;
  width: 100%;
}

/* Module: Contact Section */
.main-section-eleven h2 {
  color: var(--text-color-heading);
}

.main-section-eleven p {
  color: var(--text-color-primary);
}

.main-section-eleven input {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven textarea {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven button {
  background-color: var(--background-color-section-secondary);
  padding-left: 50px;
  padding-right: 50px;
  border-color: var(--background-color-section-secondary) !important;
  border-radius: 50px !important;
}

/* ===================================
   SMACSS LAYOUT - FOOTER
   =================================== */
.background-section-footer-one {
  background-color: var(--background-color-footer);
}

.background-section-footer-one p {
  color: white !important;
}

.background-section-footer-one a {
  color: white !important;
  text-decoration: none !important;
}

.background-section-footer-one a:hover {
  text-decoration: underline !important;
}

@media only screen and (max-width: 992px) {
  .background-section-footer-one p {
    text-align: center !important;
  }
}

/*Sticky não mexer*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 2%;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
}

#myBtn:hover {
  background-color: #555;
}

/* Mantém o WhatsApp acima do badge do reCAPTCHA */
#myDiv.floating-wpp {
  bottom: 90px;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
}



