@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: rgb(0, 0, 0);
  background-color: #fff;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-gradient {
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

@media (max-width: 1023.98px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

.w-full {
  width: 100% !important;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  color: white;
  z-index: 1000;
  width: 100%;
  position: absolute;
  top: 1.25rem;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .site-header {
    top: 2.375rem;
    padding: 0 1.5rem;
  }
}
.site-header {
  /* ==========================================================================
     Header Wrapper
     ========================================================================== */
}
.site-header .header-wrapper {
  background-color: rgba(40, 40, 40, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 0.9375rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 1.25rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  width: 100%;
  height: 5rem;
}
@media (min-width: 1024px) {
  .site-header .header-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    box-shadow: none;
    padding: 0.625rem 1rem;
    height: auto;
  }
}
@media (min-width: 1536px) {
  .site-header .header-wrapper {
    max-width: 81rem;
  }
}
.site-header {
  /* ==========================================================================
     Logo
     ========================================================================== */
}
.site-header .logo img,
.site-header .logo svg {
  height: auto;
  max-width: 10rem;
}
@media (min-width: 1024px) {
  .site-header .logo img,
  .site-header .logo svg {
    max-width: 12.5rem;
  }
}
.site-header .logo {
  /* Default link styles for logo */
}
.site-header .logo a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}
.site-header {
  /* ==========================================================================
     Navigation Menu (Desktop)
     ========================================================================== */
}
.site-header .nav-menu {
  display: none;
}
@media (min-width: 1024px) {
  .site-header .nav-menu {
    display: block;
  }
}
.site-header .nav-menu ul {
  display: flex;
  gap: 2rem;
}
.site-header .nav-menu ul li a {
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(93.79deg, #fff 2.94%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.site-header .nav-menu ul li a:hover {
  color: #ffffff;
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.site-header {
  /* ==========================================================================
     Mobile Navigation Toggle
     ========================================================================== */
}
.site-header .mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .site-header .mobile-nav-toggle {
    display: none;
  }
}
.site-header .mobile-nav-toggle img {
  width: 25px;
  height: 21px;
}

/* ==========================================================================
   Mobile Menu Overlay
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 7.5rem 1.5rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-overlay .mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow-y: auto;
  width: 100%;
  padding-bottom: 2.5rem;
}
.mobile-menu-overlay .mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu-overlay .mobile-nav ul li a {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.mobile-menu-overlay .mobile-menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgb(250, 208, 103);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* ==========================================================================
   Stocks List Mobile
   ========================================================================== */
.stocks-list-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.stocks-list-mobile .stock-item-mobile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stocks-list-mobile .stock-item-mobile__info {
  display: flex;
  flex-direction: column;
}
.stocks-list-mobile .stock-item-mobile__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}
.stocks-list-mobile .stock-item-mobile__id {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}
.stocks-list-mobile .stock-item-mobile__values {
  text-align: right;
  display: flex;
  flex-direction: column;
}
.stocks-list-mobile .stock-item-mobile__value {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}
.stocks-list-mobile .stock-item-mobile__change {
  font-size: 0.6875rem;
  font-weight: 600;
}
.stocks-list-mobile .stock-item-mobile__change--up {
  color: #4caf50;
}
.stocks-list-mobile .stock-item-mobile__change--down {
  color: #ff5252;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 0 0;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 0 0;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 5rem 0 0;
  }
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .site-footer .container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.site-footer {
  /* Brand Column */
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .site-footer__brand {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .site-footer__brand {
    grid-column: span 1;
  }
}
.site-footer__logo {
  max-width: 11.25rem;
  height: auto;
}
@media (min-width: 768px) {
  .site-footer__logo {
    max-width: 13.75rem;
  }
}
.site-footer__description {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.375rem;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .site-footer__description {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}
.site-footer__social {
  display: flex;
  gap: 1rem;
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
.site-footer__social-link:hover {
  opacity: 0.7;
}
.site-footer__social-link img {
  width: 1.5rem;
  height: 1.5rem;
}
.site-footer {
  /* Link Columns */
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.site-footer__heading {
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .site-footer__heading {
    font-size: 1.125rem;
  }
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__links li a {
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .site-footer__links li a {
    font-size: 1rem;
  }
}
.site-footer__links li a:hover {
  opacity: 0.7;
}
.site-footer {
  /* Contact Column */
}
.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__contact-item a,
.site-footer__contact-item span {
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .site-footer__contact-item a,
  .site-footer__contact-item span {
    font-size: 1rem;
  }
}
.site-footer__contact-item a:hover {
  opacity: 0.7;
}
.site-footer__contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.site-footer {
  /* Bottom Bar */
}
.site-footer__bottom {
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .site-footer__bottom {
    margin-top: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer__bottom {
    margin-top: 4rem;
  }
}
.site-footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.site-footer__copyright {
  color: #ffffff;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__copyright {
    text-align: left;
    font-size: 0.9375rem;
  }
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__legal a {
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .site-footer__legal a {
    font-size: 0.9375rem;
  }
}
.site-footer__legal a:hover {
  opacity: 0.7;
}
.site-footer__separator {
  color: #ffffff;
  font-size: 0.75rem;
}

/* ==========================================================================
   Base Button
   ========================================================================== */
.btn {
  border-radius: 14px;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .btn {
    padding: 0.75rem 1.25rem;
  }
}

/* ==========================================================================
   Primary Button (Gold)
   ========================================================================== */
.btn-primary {
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  color: rgb(0, 0, 0);
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .btn-primary {
    padding: 1rem 1.5rem;
  }
}
.btn-primary img {
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover img {
  transform: translateX(5px);
}

/* ==========================================================================
   Stock Price
   ========================================================================== */
.stock-price {
  display: flex;
  flex-direction: column;
}
.stock-price__label, .stock-price__value {
  color: #ffffff;
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.stock-price__label {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .stock-price__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .stock-price__label {
    font-size: 1rem;
  }
}
.stock-price__value {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .stock-price__value {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .stock-price__value {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Stocks Menu Wrapper
   ========================================================================== */
.stocks-menu-wrapper {
  position: relative;
  cursor: pointer;
}

/* ==========================================================================
   Stocks Dropdown
   ========================================================================== */
.stocks-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  height: 40px;
  background: white;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .stocks-dropdown {
    height: 45px;
  }
}
.stocks-dropdown.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.stocks-dropdown__ticker-wrapper {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}
.stocks-dropdown__ticker-wrapper::-webkit-scrollbar {
  display: none;
}
.stocks-dropdown__ticker-wrapper:active {
  cursor: grabbing;
}
.stocks-dropdown__ticker {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-animation 60s linear infinite;
  padding: 0 6px;
}
.stocks-dropdown__ticker:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   Stock Item
   ========================================================================== */
.stock-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  flex-shrink: 0;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .stock-item {
    gap: 10px;
    padding: 0 15px;
  }
}
.stock-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: #e5e5e5;
}
@media (min-width: 768px) {
  .stock-item::after {
    height: 27px;
  }
}
.stock-item:last-child::after {
  display: none;
}
.stock-item__icon-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .stock-item__icon-placeholder {
    width: 30px;
    height: 30px;
  }
}
.stock-item__info {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .stock-item__info {
    gap: 8px;
  }
}
.stock-item__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stock-item__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Lato", sans-serif;
}
@media (min-width: 768px) {
  .stock-item__name {
    font-size: 1rem;
  }
}
.stock-item__id {
  font-size: 0.6875rem;
  color: #666;
  display: none;
}
@media (min-width: 768px) {
  .stock-item__id {
    font-size: 0.8125rem;
  }
}
.stock-item__bottom {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .stock-item__bottom {
    gap: 6px;
  }
}
.stock-item__value {
  display: none;
}
.stock-item__change {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
@media (min-width: 768px) {
  .stock-item__change {
    font-size: 1rem;
  }
}
.stock-item__change--up {
  color: #69ff61;
}
.stock-item__change--down {
  color: #ce4b40;
}

/* ==========================================================================
   Ticker Animation
   ========================================================================== */
@keyframes ticker-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   Banner Slider Styles
   ========================================================================== */
/* Base Styles (Mobile First - applies to all breakpoints by default) */
.banner-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-slider {
  width: 100%;
  height: auto;
}

.banner-slide {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner-slide {
    min-height: 600px;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .banner-slide {
    min-height: 794px;
  }
}
.banner-slide .container {
  height: 100%;
  display: flex;
}
@media (min-width: 1536px) {
  .banner-slide .container {
    max-width: 81rem;
  }
}

.banner-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.banner-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(2, 8, 13) 0%, rgba(12, 32, 55, 0.81) 100%);
  z-index: 1;
}
@media (max-width: 639.98px) {
  .banner-slide__overlay {
    background: rgba(0, 0, 0, 0.75);
  }
}

.banner-slide__content {
  position: relative;
  z-index: 2;
  max-width: 810px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 13px;
  text-align: center;
  margin: 96px 16px 20px;
}
@media (min-width: 640px) {
  .banner-slide__content {
    margin: 60px 20px;
    max-width: calc(100% - 40px);
  }
}
@media (min-width: 768px) {
  .banner-slide__content {
    margin: 100px 50px;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (min-width: 1024px) {
  .banner-slide__content {
    margin: 150px 50px 150px 100px;
  }
}
@media (min-width: 1280px) {
  .banner-slide__content {
    margin: 200px 50px 200px 200px;
  }
}
@media (min-width: 1536px) {
  .banner-slide__content {
    margin: 0px 0 0;
  }
}

.banner-slide__title {
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: 746px;
  text-align: center;
}
@media (min-width: 768px) {
  .banner-slide__title {
    font-size: 2.25rem;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .banner-slide__title {
    font-size: 3rem;
    margin: 0 0 2.5rem 0;
    text-align: left;
  }
}

.banner-slide__description {
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: 540px;
  text-align: center;
}
@media (min-width: 1024px) {
  .banner-slide__description {
    margin: 0 0 2.5rem 0;
    text-align: left;
  }
}

/* Gold gradient matching Figma spec (131deg angle) */
.btn-gold {
  display: inline-block;
  padding: 0.8125rem 3.125rem;
  background: linear-gradient(131deg, #f0b500 2%, #ffebac 96%);
  color: rgb(0, 0, 0);
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 181, 0, 0.4);
}

/* ==========================================================================
   Swiper Navigation Buttons
   ========================================================================== */
.banner-slider__nav {
  color: #ffffff;
  width: 44px;
  height: 44px;
}
.banner-slider__nav::after {
  font-size: 24px;
  font-weight: bold;
}
.banner-slider__nav--prev {
  left: 10px;
}
@media (min-width: 640px) {
  .banner-slider__nav--prev {
    left: 30px;
  }
}
@media (min-width: 768px) {
  .banner-slider__nav--prev {
    display: none;
  }
}
.banner-slider__nav--next {
  right: 10px;
}
@media (min-width: 640px) {
  .banner-slider__nav--next {
    right: 30px;
  }
}
@media (min-width: 768px) {
  .banner-slider__nav--next {
    display: none;
  }
}

/* ==========================================================================
   Swiper Pagination
   ========================================================================== */
.banner-slider__pagination {
  bottom: 30px !important;
}
.banner-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 6px !important;
}
.banner-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints (< 480px specific adjustments)
   ========================================================================== */
@media (max-width: 480px) {
  .banner-slide {
    min-height: 754px;
  }
  .banner-slide__content {
    padding: 1.25rem;
  }
  .banner-slider__nav--prev, .banner-slider__nav--next {
    display: none !important;
  }
}
/* ==========================================================================
   Section Values
   ========================================================================== */
.section-values {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  /* ==========================================================================
   Background Image with Overlay
   ========================================================================== */
}
.section-values__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.section-values__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 71, 0.56);
}
.section-values .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1536px) {
  .section-values .container {
    max-width: 1296px !important;
  }
}
@media (min-width: 1920px) {
  .section-values .container {
    max-width: 1296px !important;
  }
}
.section-values {
  /* ==========================================================================
   Cards Grid (Static - no carousel)
   ========================================================================== */
}
.section-values__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .section-values__cards {
    flex-direction: row;
    gap: 1.375rem;
  }
}
.section-values {
  /* ==========================================================================
   Carousel Container (Mobile/Tablet with Swiper)
   ========================================================================== */
}
.section-values__carousel {
  width: 100%;
  position: relative;
  padding: 0 0 5rem 0;
}
@media (min-width: 1024px) {
  .section-values__carousel {
    padding-bottom: 0;
  }
}
.section-values {
  /* ==========================================================================
   Swiper Container
   ========================================================================== */
}
.section-values .values-swiper {
  padding-bottom: 5rem;
  overflow: visible;
}
@media (min-width: 1024px) {
  .section-values .values-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.375rem;
  }
}
@media (min-width: 1280px) {
  .section-values .values-swiper .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-values .values-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.section-values {
  /* ==========================================================================
   Pagination Dots
   ========================================================================== */
}
.section-values__pagination,
.section-values .values-swiper__pagination {
  position: absolute;
  bottom: 0;
  left: 50% !important;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  /* Hide on desktop */
}
@media (min-width: 1024px) {
  .section-values__pagination,
  .section-values .values-swiper__pagination {
    display: none;
  }
}
.section-values .swiper-pagination-bullet {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.section-values .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f0b500 !important;
  transform: scale(1.2);
  width: 3.375rem;
  border-radius: 30px;
}
.section-values {
  /* ==========================================================================
   Individual Card
   ========================================================================== */
}
.section-values__card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.5rem);
  border-radius: 1.375rem;
  padding: 6rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 29.8125rem;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.section-values__card:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-0.25rem);
}
.section-values__card-icon {
  width: 5.375rem;
  height: 5.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-values__card-icon svg {
  width: 100%;
  height: 100%;
}
.section-values__card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.section-values__card-description {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Section Services
   ========================================================================== */
.section-services {
  background-color: #ffffff;
  padding: 7.5rem 0;
}
.section-services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
}
@media (min-width: 1024px) {
  .section-services .container {
    max-width: 81rem;
  }
}
.section-services {
  /* ==========================================================================
   Section Header
   ========================================================================== */
}
.section-services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
}
.section-services__title {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .section-services__title {
    font-size: 3rem;
  }
}
.section-services__subtitle {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  max-width: 45.0625rem;
}
@media (min-width: 768px) {
  .section-services__subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.section-services {
  /* ==========================================================================
   Cards Grid (Static - no carousel)
   ========================================================================== */
}
.section-services__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .section-services__cards {
    flex-direction: row;
    justify-content: center;
    gap: 1.625rem;
  }
}
.section-services {
  /* ==========================================================================
   Carousel Container (Mobile/Tablet with Swiper)
   ========================================================================== */
}
.section-services__carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .section-services__carousel {
    overflow: visible;
  }
}
.section-services {
  /* ==========================================================================
   Swiper Container
   ========================================================================== */
}
.section-services .services-swiper {
  overflow: hidden;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  .section-services .services-swiper {
    overflow: visible;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .section-services .services-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.625rem;
    justify-items: center;
  }
}
.section-services .services-swiper .swiper-slide {
  height: auto;
  display: flex;
}
@media (min-width: 1024px) {
  .section-services .services-swiper .swiper-slide {
    width: auto !important;
    max-width: 26rem !important;
  }
}
.section-services .services-swiper {
  /* Navigation arrows container */
}
.section-services .services-swiper__navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .section-services .services-swiper__navigation {
    display: none;
  }
}
.section-services .services-swiper {
  /* Individual navigation button */
}
.section-services .services-swiper__nav {
  position: relative;
  width: 4.9375rem;
  height: 4.9375rem;
  border-radius: 50%;
  background-color: #fafafa;
  border: 0.1875rem solid #dfad3a;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  padding: 0;
}
.section-services .services-swiper__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.section-services .services-swiper__nav:hover {
  background-color: #dfad3a;
  color: #fafafa;
  border-color: #dfad3a;
}
.section-services .services-swiper__nav:hover svg {
  stroke: #fafafa;
}
.section-services .services-swiper__nav {
  /* Hide on desktop */
}
@media (min-width: 1024px) {
  .section-services .services-swiper__nav {
    display: none;
  }
}
.section-services .services-swiper__nav svg {
  width: 2rem;
  height: 2rem;
  stroke: #333333;
  transition: all 0.3s ease-in-out;
}
.section-services {
  /* ==========================================================================
   Individual Card
   ========================================================================== */
}
.section-services__card {
  background-color: #171717;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 100%;
  /* @include rem(max-width, 416); */
  min-height: 30.8125rem;
  padding: 1.875rem 1.25rem 1.25rem 1.25rem;
}
.section-services__card:hover {
  border-color: rgba(240, 181, 0, 0.5);
  transform: translateY(-0.25rem);
}
.section-services__card:hover .section-services__card-icon-default {
  opacity: 0;
}
.section-services__card:hover .section-services__card-icon-hover {
  opacity: 1;
}
.section-services__card-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}
.section-services__card-title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
}
.section-services__card-icon {
  width: 3.4375rem;
  height: 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.section-services__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.section-services__card-icon-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.section-services__card-icon svg {
  width: 100%;
  height: 100%;
}
.section-services__card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  flex: 1;
}
.section-services__card-divider {
  width: 100%;
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
}
.section-services__card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
  flex: 1;
  max-width: 21.25rem;
}
.section-services__card-image {
  width: 100%;
  height: 21.9375rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 1.25rem 0 0 0;
  border-radius: 1.25rem;
}
.section-services__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0%, rgba(23, 23, 23, 0.3) 100%);
}
.section-services {
  /* ==========================================================================
   CTA
   ========================================================================== */
}
.section-services__cta {
  display: flex;
  justify-content: center;
}

.solucoes-banner {
  position: relative;
  width: 100%;
  min-height: 22.5rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .solucoes-banner {
    min-height: 32.5rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-banner {
    min-height: 37.5rem;
  }
}
.solucoes-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}
.solucoes-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  text-align: center;
}
.solucoes-banner__title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 45rem;
}
@media (min-width: 768px) {
  .solucoes-banner__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-banner__title {
    font-size: 3rem;
  }
}
.solucoes-banner__description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 35rem;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .solucoes-banner__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-banner__description {
    font-size: 1.25rem;
  }
}

.solucoes-intro {
  background-color: #ffffff;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .solucoes-intro {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .solucoes-intro {
    padding: 6.25rem 0;
  }
}
.solucoes-intro .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .solucoes-intro .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}
.solucoes-intro__title {
  flex: 1;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  margin: 0;
}
@media (min-width: 768px) {
  .solucoes-intro__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-intro__title {
    font-size: 2.75rem;
    max-width: 32.5rem;
  }
}
@media (min-width: 1280px) {
  .solucoes-intro__title {
    font-size: 3.25rem;
  }
}
.solucoes-intro__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.solucoes-intro__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #1b263b;
  margin: 0;
}
@media (min-width: 1024px) {
  .solucoes-intro__paragraph {
    font-size: 1.125rem;
  }
}

.solucoes-services {
  background-color: #ffffff;
  padding: 2.5rem 0 3.75rem;
}
@media (min-width: 768px) {
  .solucoes-services {
    padding: 3.75rem 0 5rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-services {
    padding: 0rem 0 0rem;
  }
}
.solucoes-services__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (min-width: 1024px) {
  .solucoes-services__list {
    gap: 0;
  }
}
.solucoes-services__item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .solucoes-services__item {
    flex-direction: row;
    align-items: center;
  }
}
.solucoes-services__item__content {
  padding-right: 32rem;
  width: 50%;
}
.solucoes-services__item--image-right .solucoes-services__content {
  padding-right: 8rem;
  padding-left: 4rem;
}
@media (min-width: 1024px) {
  .solucoes-services__item--image-left {
    flex-direction: row-reverse;
  }
}
.solucoes-services__item--image-left .solucoes-services__content {
  padding-left: 4rem;
  padding-right: 8rem;
}
.solucoes-services__media {
  flex: 1;
  width: 100%;
  overflow: hidden;
  background-color: #1b263b;
  aspect-ratio: 4/3;
}
.solucoes-services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .solucoes-services__media {
    min-width: 50%;
  }
}
.solucoes-services__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.solucoes-services__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(240, 181, 0, 0.25);
}
.solucoes-services__icon img,
.solucoes-services__icon svg {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.solucoes-services__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .solucoes-services__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-services__title {
    font-size: 2.25rem;
  }
}
.solucoes-services__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1b263b;
  margin: 0;
}
@media (min-width: 1024px) {
  .solucoes-services__description {
    font-size: 1.125rem;
  }
}
.solucoes-services__included-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0.25rem 0 0;
  text-transform: none;
}
.solucoes-services__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solucoes-services__features li {
  position: relative;
  padding-left: 2.125rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1b263b;
}
@media (min-width: 1024px) {
  .solucoes-services__features li {
    font-size: 1rem;
  }
}
.solucoes-services__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'><defs><linearGradient id='g' x1='0' y1='0' x2='22' y2='22' gradientUnits='userSpaceOnUse'><stop stop-color='%23F0B500'/><stop offset='1' stop-color='%23FFEBAC'/></linearGradient></defs><circle cx='11' cy='11' r='11' fill='url(%23g)'/><path d='M6.5 11.25L9.5 14.25L15.5 8.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.solucoes-services__features li p {
  margin: 0;
}
.solucoes-services__cta {
  margin-top: 0.75rem;
  align-self: flex-start;
}

.solucoes-investments-club {
  background: radial-gradient(60% 70% at 50% 50%, rgb(67, 49, 3) 0%, #060606 100%);
  color: #ffffff;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .solucoes-investments-club {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .solucoes-investments-club {
    padding: 6.25rem 0;
  }
}
.solucoes-investments-club .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .solucoes-investments-club .container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
.solucoes-investments-club__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.solucoes-investments-club__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.375rem 0.875rem;
  border-radius: 62.4375rem;
  background: rgba(240, 181, 0, 0.12);
  border: 1px solid rgba(240, 181, 0, 0.4);
  color: #f0b500;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solucoes-investments-club__badge svg {
  width: 0.875rem;
  height: 0.875rem;
}
.solucoes-investments-club__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .solucoes-investments-club__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-investments-club__title {
    font-size: 2.75rem;
  }
}
.solucoes-investments-club__description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}
@media (min-width: 1024px) {
  .solucoes-investments-club__description {
    font-size: 1.125rem;
  }
}
.solucoes-investments-club__features {
  margin-top: 0.5rem;
}
.solucoes-investments-club__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solucoes-investments-club__features li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .solucoes-investments-club__features li {
    font-size: 1rem;
  }
}
.solucoes-investments-club__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
}
.solucoes-investments-club__features li p {
  margin: 0;
}
.solucoes-investments-club__cta {
  margin-top: 1rem;
  align-self: flex-start;
}
.solucoes-investments-club__media {
  flex: 1;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: rgba(255, 255, 255, 0.05);
}
@media (min-width: 1024px) {
  .solucoes-investments-club__media {
    aspect-ratio: 5/4;
  }
}
.solucoes-investments-club__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solucoes-cta {
  background: linear-gradient(90deg, #f0b500 12.98%, rgb(250, 208, 103) 50%, #f0b500 93.27%);
  color: #0d1b2a;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .solucoes-cta {
    padding: 4.5rem 0;
  }
}
@media (min-width: 1024px) {
  .solucoes-cta {
    padding: 5.5rem 0;
  }
}
.solucoes-cta .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .solucoes-cta .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
}
.solucoes-cta__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solucoes-cta__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0d1b2a;
  margin: 0;
}
@media (min-width: 768px) {
  .solucoes-cta__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .solucoes-cta__title {
    font-size: 2.5rem;
    max-width: 35rem;
  }
}
.solucoes-cta__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #0d1b2a;
  margin: 0;
  max-width: 35rem;
}
@media (min-width: 1024px) {
  .solucoes-cta__description {
    font-size: 1.125rem;
  }
}
.solucoes-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 768px) {
  .solucoes-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .solucoes-cta__actions {
    flex-direction: column;
    width: auto;
    min-width: 20rem;
  }
}
.solucoes-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 62.4375rem;
  background-color: #0d1b2a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid #0d1b2a;
}
.solucoes-cta__button:hover {
  background-color: transparent;
  color: #0d1b2a;
}
@media (min-width: 1024px) {
  .solucoes-cta__button {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
  }
}

.single-solucao-hero {
  position: relative;
  background-color: #0d1b2a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8.75rem 0 2.5rem;
  min-height: 30rem;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .single-solucao-hero {
    padding: 10rem 0 5rem;
    min-height: 35rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-hero {
    padding: 11.25rem 0 7.5rem;
    min-height: 40rem;
  }
}
.single-solucao-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.55) 0%, rgba(13, 27, 42, 0.25) 100%);
  pointer-events: none;
}
.single-solucao-hero .container {
  position: relative;
  z-index: 1;
  max-width: 81rem;
}
.single-solucao-hero__card {
  width: 100%;
  max-width: 32.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #0d1b2a;
}
@media (min-width: 768px) {
  .single-solucao-hero__card {
    padding: 2.5rem 2.25rem;
  }
}
.single-solucao-hero__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(240, 181, 0, 0.3);
}
.single-solucao-hero__icon img,
.single-solucao-hero__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.single-solucao-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .single-solucao-hero__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-hero__title {
    font-size: 2.5rem;
  }
}
.single-solucao-hero__description {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .single-solucao-hero__description {
    font-size: 1rem;
  }
}
.single-solucao-hero__included-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0.25rem 0 0;
  color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .single-solucao-hero__included-title {
    font-size: 1rem;
  }
}
.single-solucao-hero__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.single-solucao-hero__features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .single-solucao-hero__features li {
    font-size: 0.875rem;
  }
}
.single-solucao-hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='%23F0B500'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.single-solucao-hero__features li p {
  margin: 0;
}

.single-solucao-cards {
  background-color: #ffffff;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .single-solucao-cards {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .single-solucao-cards {
    padding: 6.25rem 0;
  }
}
.single-solucao-cards__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0d1b2a;
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .single-solucao-cards__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-cards__title {
    font-size: 2.5rem;
  }
}
.single-solucao-cards__description {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1b263b;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 45rem;
}
@media (min-width: 1024px) {
  .single-solucao-cards__description {
    font-size: 1.0625rem;
    margin-bottom: 3.5rem;
  }
}
.single-solucao-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 81rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .single-solucao-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .single-solucao-cards__grid {
    gap: 1.75rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .single-solucao-cards__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.single-solucao-cards__grid--with-sublist .single-solucao-cards__card {
  align-items: stretch;
  text-align: left;
}
.single-solucao-cards__grid--with-sublist .single-solucao-cards__card .single-solucao-cards__icon {
  align-self: center;
}
.single-solucao-cards__grid--with-sublist .single-solucao-cards__card .single-solucao-cards__card-title,
.single-solucao-cards__grid--with-sublist .single-solucao-cards__card .single-solucao-cards__card-description {
  text-align: center;
}
.single-solucao-cards__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .single-solucao-cards__card {
    padding: 2rem 1.75rem;
  }
}
.single-solucao-cards__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  /* background: $gradient-gold; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(240, 181, 0, 0.3);
}
.single-solucao-cards__icon img,
.single-solucao-cards__icon svg {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
.single-solucao-cards__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .single-solucao-cards__card-title {
    font-size: 1.25rem;
  }
}
.single-solucao-cards__card-description {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1b263b;
  margin: 0;
}
@media (min-width: 1024px) {
  .single-solucao-cards__card-description {
    font-size: 0.9375rem;
  }
}
.single-solucao-cards__features {
  width: 100%;
  margin-top: 0.5rem;
}
.single-solucao-cards__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.single-solucao-cards__features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0d1b2a;
  text-align: left;
}
@media (min-width: 1024px) {
  .single-solucao-cards__features li {
    font-size: 0.875rem;
  }
}
.single-solucao-cards__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='%23F0B500'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.single-solucao-cards__features li p {
  margin: 0;
}

.single-solucao-expertise {
  background-color: #2a2a2a;
}
.single-solucao-expertise__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .single-solucao-expertise__inner {
    flex-direction: row;
    align-items: stretch;
  }
}
.single-solucao-expertise__media {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.single-solucao-expertise__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .single-solucao-expertise__media {
    flex: 1 1 50%;
    aspect-ratio: auto;
    min-height: 27.5rem;
  }
}
.single-solucao-expertise__content {
  flex: 1;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .single-solucao-expertise__content {
    padding: 3.75rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-expertise__content {
    flex: 1 1 50%;
    padding: 5rem 4.5rem;
    justify-content: center;
  }
}
.single-solucao-expertise__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .single-solucao-expertise__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-expertise__title {
    font-size: 2.5rem;
  }
}
.single-solucao-expertise__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 1024px) {
  .single-solucao-expertise__description {
    font-size: 1.0625rem;
  }
}
.single-solucao-expertise__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.single-solucao-expertise__features li {
  position: relative;
  padding-left: 2.125rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .single-solucao-expertise__features li {
    font-size: 1rem;
  }
}
.single-solucao-expertise__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='%23F0B500'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.single-solucao-expertise__features li p {
  margin: 0;
}

.single-solucao-process {
  background-color: #f7f7f7;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .single-solucao-process {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .single-solucao-process {
    padding: 6.25rem 0;
  }
}
.single-solucao-process__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0d1b2a;
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .single-solucao-process__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-process__title {
    font-size: 2.5rem;
  }
}
.single-solucao-process__description {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1b263b;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 45rem;
}
@media (min-width: 1024px) {
  .single-solucao-process__description {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
}
.single-solucao-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .single-solucao-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .single-solucao-process__steps::before {
    content: "";
    position: absolute;
    top: 1.875rem;
    left: 12.5%;
    right: 12.5%;
    height: 5px;
    background-color: rgb(255, 255, 255);
    z-index: 0;
  }
}
.single-solucao-process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.single-solucao-process__number {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #ffffff;
  /* border: 2px solid rgba(13, 27, 42, 0.12); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.06);
}
.single-solucao-process__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .single-solucao-process__step-title {
    font-size: 1.25rem;
  }
}
.single-solucao-process__step-description {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  margin: 0;
  max-width: 13.75rem;
}
@media (min-width: 1024px) {
  .single-solucao-process__step-description {
    font-size: 0.875rem;
  }
}

.single-solucao-included {
  background-color: #ffffff;
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .single-solucao-included {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .single-solucao-included {
    padding: 6.25rem 0;
  }
}
.single-solucao-included .container-solucao {
  max-width: 1296px;
  margin: 0 auto;
}
.single-solucao-included__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  text-align: center;
  margin: 0 0 2.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .single-solucao-included__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-included__title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}
.single-solucao-included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1296px;
}
@media (min-width: 768px) {
  .single-solucao-included__grid--two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3.75rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-included__grid--two-columns {
    gap: 2rem 5rem;
    max-width: 62.5rem;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .single-solucao-included__grid--with-club {
    grid-template-columns: minmax(0, 1fr) 45rem;
    gap: 3rem;
    align-items: start;
  }
}
.single-solucao-included__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .single-solucao-included__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.single-solucao-included__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single-solucao-included__features li {
  position: relative;
  padding-left: 2.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .single-solucao-included__features li {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .single-solucao-included__features li {
    font-size: 1.5rem;
  }
}
.single-solucao-included__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='%23F0B500'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.single-solucao-included__features li p {
  margin: 0;
}
.single-solucao-included__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.single-solucao-included__club-card {
  background-color: #2b2b2b;
  border-radius: 1rem;
  padding: 2.25rem 1.75rem;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
.single-solucao-included__club-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(240, 181, 0, 0.35);
}
.single-solucao-included__club-icon img,
.single-solucao-included__club-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}
.single-solucao-included__club-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .single-solucao-included__club-title {
    font-size: 1.375rem;
  }
}
.single-solucao-included__club-description {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 1024px) {
  .single-solucao-included__club-description {
    font-size: 0.9375rem;
  }
}
.single-solucao-included__club-cta {
  margin-top: 0.5rem;
  min-width: 12.5rem;
}
.single-solucao-included__expertise-card {
  background-color: #ffffff;
  border: 1px solid #ffebac;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .single-solucao-included__expertise-card {
    padding: 1.75rem;
  }
}
.single-solucao-included__expertise-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}
@media (min-width: 1024px) {
  .single-solucao-included__expertise-title {
    font-size: 1.25rem;
  }
}
.single-solucao-included__expertise-description {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #1b263b;
  margin: 0;
}
@media (min-width: 1024px) {
  .single-solucao-included__expertise-description {
    font-size: 0.875rem;
  }
}

.single-solucao-cta {
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  padding: 3.75rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .single-solucao-cta {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .single-solucao-cta {
    padding: 6.25rem 0;
  }
}
.single-solucao-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.single-solucao-cta__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.2;
  max-width: 45rem;
}
@media (min-width: 768px) {
  .single-solucao-cta__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-solucao-cta__title {
    font-size: 2.5rem;
  }
}
.single-solucao-cta__description {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #0d1b2a;
  margin: 0;
  max-width: 40rem;
}
@media (min-width: 1024px) {
  .single-solucao-cta__description {
    font-size: 1.0625rem;
  }
}
.single-solucao-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: rgb(0, 0, 0);
  color: #f0b500;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 0.5rem;
  min-width: 16.25rem;
}
@media (min-width: 1024px) {
  .single-solucao-cta__button {
    font-size: 1rem;
    padding: 1.125rem 3.5rem;
  }
}
.single-solucao-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.about-banner {
  position: relative;
  width: 100%;
  min-height: 23.75rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-banner {
    min-height: 32.5rem;
  }
}
@media (min-width: 1024px) {
  .about-banner {
    min-height: 37.5rem;
  }
}
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.65) 100%);
  z-index: 1;
}
.about-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  text-align: center;
}
.about-banner__title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 45rem;
}
@media (min-width: 768px) {
  .about-banner__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 1024px) {
  .about-banner__title {
    font-size: 3rem;
  }
}
.about-banner__subtitle {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 35rem;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .about-banner__subtitle {
    font-size: 1.125rem;
  }
}
.about-banner__cta {
  margin-top: 0.5rem;
}

.about-elevate {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
@media (min-width: 1024px) {
  .about-elevate {
    padding: 5rem 0;
  }
}
.about-elevate .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-elevate .container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
}
.about-elevate__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .about-elevate__content {
    flex: 1;
    max-width: 35rem;
  }
}
.about-elevate__title {
  font-family: "DM Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: #0d1b2a;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .about-elevate__title {
    font-size: 3rem;
  }
}
.about-elevate__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1b263b;
  max-width: 28.75rem;
}
@media (min-width: 1024px) {
  .about-elevate__description {
    font-size: 1.125rem;
  }
}
.about-elevate__features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-elevate__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-elevate__feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-elevate__feature-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.about-elevate__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-elevate__feature-text strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d1b2a;
}
.about-elevate__feature-text span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1b263b;
}
.about-elevate__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.about-elevate__cta img {
  width: 1rem;
  height: 1rem;
}
.about-elevate__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  position: relative;
}
@media (min-width: 1024px) {
  .about-elevate__gallery {
    flex: 1;
    max-width: 32.5rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
}
.about-elevate__gallery:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-height: 137px;
  max-width: 137px;
  min-width: 137px;
  min-height: 137px;
  background-image: url("../images/sticky.png");
  background-size: cover;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-elevate__gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
}
.about-elevate__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
.about-elevate__gallery-item:nth-child(1), .about-elevate__gallery-item:nth-child(4) {
  max-height: 237px;
  min-height: 237px;
}
.about-elevate__gallery-item:nth-child(2), .about-elevate__gallery-item:nth-child(3) {
  max-height: 304px;
  min-height: 304px;
}
.about-elevate__gallery-item:nth-child(1) {
  align-self: end;
}
.about-elevate__gallery-item:nth-child(4) {
  align-self: start;
}

.about-consultant {
  padding: 0 0 3rem;
  background-color: #f0f0f0;
}
@media (min-width: 1024px) {
  .about-consultant {
    padding: 0 0 5rem;
  }
}
.about-consultant .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-consultant .container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
}
.about-consultant__photo {
  position: relative;
  width: 100%;
  max-width: 26.25rem;
}
@media (min-width: 1024px) {
  .about-consultant__photo {
    flex: 0 0 auto;
    width: 26.25rem;
  }
}
.about-consultant__photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  border-radius: 0 0 50% 50%;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .about-consultant__photo::before {
    max-width: 636px;
    right: -0rem;
    bottom: -0rem;
  }
}
.about-consultant__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 0rem;
  bottom: 0rem;
}
.about-consultant__bio {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1b263b;
  max-width: 40rem;
}
@media (min-width: 1024px) {
  .about-consultant__bio {
    font-size: 1rem;
  }
}
.about-consultant__bio p {
  margin: 0 0 1rem;
}
.about-consultant__bio p:last-child {
  margin-bottom: 0;
}
.about-consultant__bio strong {
  font-weight: 700;
  color: #0d1b2a;
}

.about-mvv {
  background-color: #e2e2e2;
  padding: 2.5rem 0;
}
.about-mvv .container {
  max-width: 1296px;
}
@media (min-width: 768px) {
  .about-mvv {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .about-mvv {
    padding: 5rem 0;
  }
}
.about-mvv__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .about-mvv__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.about-mvv__card {
  background-color: #ffffff;
  border-radius: 0.9375rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .about-mvv__card {
    padding: 2.5rem 2rem;
    min-height: 23.3125rem;
    justify-content: center;
  }
}
.about-mvv__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-mvv__icon {
    width: 5.1875rem;
    height: 5.1875rem;
    margin-bottom: 2rem;
  }
}
.about-mvv__icon img {
  width: 45%;
  height: 45%;
  object-fit: contain;
}
.about-mvv__title {
  color: rgb(0, 0, 0);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .about-mvv__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.about-mvv__description {
  color: rgb(0, 0, 0);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 18rem;
}
@media (min-width: 768px) {
  .about-mvv__description {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------
 * Base (shared) — Propósito e Quem Somos
 *
 * Full-bleed: sem .container. No desktop, a imagem ocupa 50%
 * da largura da tela e o conteúdo textual os outros 50%.
 * ------------------------------------------------------------ */
.about-who, .about-purpose {
  background-color: #2a2a2a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .about-who, .about-purpose {
    flex-direction: row;
    align-items: stretch;
  }
}

.about-who__image, .about-purpose__image {
  width: 100%;
}
@media (min-width: 1024px) {
  .about-who__image, .about-purpose__image {
    flex: 0 0 50%;
    max-width: 50%;
    align-self: stretch;
  }
}
.about-who__image img, .about-purpose__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-who__content, .about-purpose__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.25rem;
}
@media (min-width: 768px) {
  .about-who__content, .about-purpose__content {
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .about-who__content, .about-purpose__content {
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: center;
    padding: 4rem 5rem;
  }
}
@media (min-width: 1280px) {
  .about-who__content, .about-purpose__content {
    padding: 5rem 6rem;
  }
}

.about-who__title, .about-purpose__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .about-who__title, .about-purpose__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.about-who__paragraph, .about-purpose__paragraph {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (min-width: 1024px) {
  .about-who__paragraph, .about-purpose__paragraph {
    font-size: 1rem;
  }
}
.about-who__paragraph strong, .about-purpose__paragraph strong {
  font-weight: 700;
  color: #ffffff;
}

/* ------------------------------------------------------------
 * Propósito — imagem à esquerda, texto à direita (alinhado à esquerda)
 * ------------------------------------------------------------ */
.about-purpose__content {
  text-align: left;
  align-items: flex-start;
}
/* ------------------------------------------------------------
 * Quem Somos — imagem à direita, texto à esquerda (centralizado)
 * ------------------------------------------------------------ */
@media (min-width: 1024px) {
  .about-who {
    flex-direction: row-reverse;
  }
}
.about-who__content {
  text-align: right;
  align-items: right;
}
.about-differentials {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .about-differentials {
    padding: 5rem 0;
  }
}
.about-differentials__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2.5rem;
}
@media (min-width: 1024px) {
  .about-differentials__title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}
.about-differentials__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-differentials__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
  }
  .about-differentials__list::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 0.125rem;
    border-top: 0.25rem solid #ffffff;
    z-index: 0;
  }
}
.about-differentials__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .about-differentials__item--top {
    justify-content: flex-start;
    padding-bottom: 5rem;
  }
  .about-differentials__item--top .about-differentials__item-text {
    order: 0;
  }
  .about-differentials__item--top .about-differentials__item-icon {
    order: 1;
    margin-top: auto;
  }
  .about-differentials__item--bottom {
    justify-content: flex-end;
    padding-top: 5rem;
  }
  .about-differentials__item--bottom .about-differentials__item-text {
    order: 1;
  }
  .about-differentials__item--bottom .about-differentials__item-icon {
    order: 0;
    margin-bottom: auto;
  }
}
.about-differentials__item-text {
  max-width: 15rem;
}
.about-differentials__item-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 0.375rem;
}
@media (min-width: 1024px) {
  .about-differentials__item-text h3 {
    font-size: 1.125rem;
  }
}
.about-differentials__item-text p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.about-differentials__item-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-differentials__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ------------------------------------------------------------
 * Página de Contato
 * Fundo escuro com mapa-múndi pontilhado, info à esquerda,
 * form branco arredondado à direita.
 * ------------------------------------------------------------ */
.page-contact {
  background-color: #2a2a2a;
  color: #ffffff;
}

.contact-section {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0 0 0;
  }
}
@media (min-width: 1024px) {
  .contact-section {
    padding: 12.5rem 0 5rem;
  }
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/contact/map.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ------------------------------------------------------------
 * Informações
 * ------------------------------------------------------------ */
.contact-info {
  color: #ffffff;
}
.contact-info__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact-info__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-info__title {
    font-size: 3rem;
  }
}
.contact-info__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem;
  max-width: 26.25rem;
}
@media (min-width: 1024px) {
  .contact-info__description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-info__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}
.contact-info__icon img {
  width: 1.625rem;
  height: 1.625rem;
  object-fit: contain;
  filter: brightness(0);
}
.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.contact-info__label {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .contact-info__label {
    font-size: 1.125rem;
  }
}
.contact-info__value {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .contact-info__value {
    font-size: 0.875rem;
  }
}

/* ------------------------------------------------------------
 * Formulário
 * ------------------------------------------------------------ */
.contact-form {
  background-color: #ffffff;
  color: #1b263b;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-form {
    padding: 3.5rem 3rem;
    border-radius: 2rem;
  }
}
.contact-form__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1b263b;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-form__title {
    font-size: 1.625rem;
  }
}
@media (min-width: 1024px) {
  .contact-form__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form__row {
  margin-bottom: 1rem;
}
.contact-form__row p {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact-form__row p {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__field {
  display: block;
  width: 100%;
}
.contact-form__field .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background-color: #eef0f2;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: #1b263b;
  transition: all 0.3s ease-in-out;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(27, 38, 59, 0.6);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #f0b500;
  background-color: #ffffff;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 7.5rem;
}
.contact-form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  color: rgb(0, 0, 0);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 2.25rem;
  border: 0;
  border-radius: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 0.5rem;
  position: relative;
}
.contact-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.375rem 1rem rgba(240, 181, 0, 0.4);
}
.contact-form__submit:after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/arrow.svg");
  background-size: cover;
  position: absolute;
  z-index: 1;
}
.contact-form__submit svg {
  width: 1rem;
  height: 1rem;
}

.club-banner {
  position: relative;
  background-color: #2a2a2a;
  color: #ffffff;
  overflow: hidden;
  background-image: var(--club-banner-bg-mobile, none);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .club-banner {
    background-image: var(--club-banner-bg-tablet, var(--club-banner-bg-mobile, none));
  }
}
@media (min-width: 1024px) {
  .club-banner {
    background-image: var(--club-banner-bg-desktop, var(--club-banner-bg-tablet, var(--club-banner-bg-mobile, none)));
  }
}
@media (min-width: 1280px) {
  .club-banner {
    min-height: 760px;
  }
}
.club-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10rem 1.25rem 3.75rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .club-banner__inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 3.75rem;
    padding: 2.5rem 3.75rem 2.5rem;
    min-height: 32.5rem;
  }
}
.club-banner__portrait {
  position: relative;
  width: 100%;
  max-width: 20rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .club-banner__portrait {
    max-width: 27.5rem;
    width: 40%;
    align-self: center;
  }
}
.club-banner__portrait-image {
  width: 100%;
  /* background-color: #2a2a2a; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .club-banner__portrait-image {
    border-radius: 50%;
    aspect-ratio: 1/1;
  }
}
.club-banner__content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .club-banner__content {
    text-align: left;
    max-width: 32.5rem;
    padding-top: 3.75rem;
  }
}
.club-banner__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .club-banner__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .club-banner__title {
    font-size: 2.5rem;
  }
}
.club-banner__subtitle {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
@media (min-width: 768px) {
  .club-banner__subtitle {
    font-size: 1rem;
  }
}
.club-banner__cta {
  align-self: center;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .club-banner__cta {
    align-self: flex-start;
  }
}

.club-what-is {
  background-color: #2a2a2a;
  color: #ffffff;
}
.club-what-is__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .club-what-is__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.75rem;
    padding: 4.375rem 3.75rem;
  }
}
.club-what-is__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .club-what-is__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .club-what-is__title {
    font-size: 2rem;
    flex: 0 0 40%;
    max-width: 26.25rem;
    text-align: center;
  }
}
.club-what-is__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .club-what-is__content {
    flex: 1;
    max-width: 38.75rem;
  }
}
.club-what-is__paragraph {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
@media (min-width: 768px) {
  .club-what-is__paragraph {
    font-size: 0.9375rem;
  }
}

.club-for-whom {
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .club-for-whom {
    flex-direction: row;
    align-items: stretch;
  }
}
.club-for-whom__image {
  width: 100%;
  min-height: 15rem;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .club-for-whom__image {
    min-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .club-for-whom__image {
    flex: 0 0 50%;
    min-height: 27.5rem;
  }
}
.club-for-whom__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .club-for-whom__content {
    padding: 3.125rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .club-for-whom__content {
    justify-content: center;
    padding: 3.75rem 3.75rem;
    max-width: 38.75rem;
  }
}
.club-for-whom__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .club-for-whom__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .club-for-whom__title {
    font-size: 2rem;
  }
}
.club-for-whom__intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.club-for-whom__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.club-for-whom__list-item {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.club-for-whom__list-item::marker {
  color: #f0b500;
}

.club-benefits {
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .club-benefits {
    flex-direction: row;
    align-items: stretch;
  }
}
.club-benefits__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .club-benefits__content {
    padding: 3.125rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .club-benefits__content {
    justify-content: center;
    padding: 3.75rem 3.75rem;
    flex: 0 0 45%;
    max-width: 38.75rem;
  }
}
.club-benefits__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .club-benefits__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .club-benefits__title {
    font-size: 2rem;
  }
}
.club-benefits__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.club-benefits__list-item {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.club-benefits__list-item::marker {
  color: #f0b500;
}
.club-benefits__image {
  width: 100%;
  min-height: 15rem;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .club-benefits__image {
    min-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .club-benefits__image {
    flex: 1;
    min-height: 27.5rem;
  }
}

.club-strategy {
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .club-strategy {
    flex-direction: row;
    align-items: stretch;
  }
}
.club-strategy__image {
  width: 100%;
  min-height: 15rem;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .club-strategy__image {
    min-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .club-strategy__image {
    flex: 0 0 50%;
    min-height: 27.5rem;
  }
}
.club-strategy__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .club-strategy__content {
    padding: 3.125rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .club-strategy__content {
    justify-content: center;
    padding: 3.75rem 3.75rem;
    max-width: 38.75rem;
  }
}
.club-strategy__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .club-strategy__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .club-strategy__title {
    font-size: 2rem;
  }
}
.club-strategy__text {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.club-strategy__paragraph {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.club-how-form {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .club-how-form {
    flex-direction: row;
    align-items: stretch;
  }
}
.club-how-form__how, .club-how-form__form {
  flex: 1;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media (min-width: 768px) {
  .club-how-form__how, .club-how-form__form {
    padding: 3.125rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .club-how-form__how, .club-how-form__form {
    padding: 4.375rem 3.75rem;
  }
}
.club-how-form__how {
  background-color: #2a2a2a;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .club-how-form__how {
    flex: 0 0 50%;
    justify-content: center;
  }
}
.club-how-form__form {
  background-color: #4a4a4a;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .club-how-form__form {
    flex: 1;
    justify-content: center;
  }
}
.club-how-form__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .club-how-form__title {
    font-size: 1.625rem;
  }
}
@media (min-width: 1024px) {
  .club-how-form__title {
    font-size: 1.75rem;
  }
}
.club-how-form__subtitle {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: center;
  max-width: 30rem;
  margin-inline: auto;
}
.club-how-form__steps {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 28.75rem;
  align-self: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .club-how-form__steps {
    align-self: flex-start;
    margin-left: 1.25rem;
  }
}
.club-how-form__step {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}
.club-how-form__step::marker {
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================================
   Club Form
   ========================================================================== */
.club-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .club-form {
    grid-template-columns: 1fr 1fr;
  }
}
.club-form__field {
  display: flex;
}
@media (min-width: 768px) {
  .club-form__field--full {
    grid-column: 1/-1;
  }
}
.club-form__field input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.625rem;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Lato", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}
.club-form__field input::placeholder {
  color: rgba(42, 42, 42, 0.6);
}
.club-form__field input:focus {
  border-color: #f0b500;
}
.club-form__submit {
  grid-column: 1/-1;
  margin-top: 0.375rem;
  text-align: center;
  justify-self: stretch;
}

.club-faq {
  background-color: #f4f4f4;
  padding: 3.75rem 1.25rem;
}
@media (min-width: 768px) {
  .club-faq {
    padding: 5rem 2.5rem;
  }
}
.club-faq .container {
  max-width: 60rem;
  margin: 0 auto;
}
.club-faq__title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: #1b263b;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .club-faq__title {
    font-size: 1.875rem;
  }
}
.club-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.club-faq__item {
  background-color: #ffffff;
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.club-faq__item.is-open {
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.club-faq__item.is-open .club-faq__icon {
  transform: rotate(180deg);
}
.club-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1b263b;
  font-family: inherit;
}
.club-faq__icon {
  flex-shrink: 0;
  color: #1b263b;
  transition: transform 0.3s ease-in-out;
}
.club-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.35s ease-in-out, opacity 0.25s ease-in-out, visibility 0s linear 0.35s;
}
.club-faq__answer[hidden] {
  display: grid;
}
.club-faq__item.is-open .club-faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 0.35s ease-in-out, opacity 0.25s ease-in-out, visibility 0s linear 0s;
}
.club-faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(27, 38, 59, 0.8);
}
.club-faq__answer-inner p {
  margin: 0;
  padding-bottom: 1rem;
}

.club-disclaimer {
  background-color: #ffffff;
  padding: 1.875rem 1.25rem 3.125rem;
}
@media (min-width: 768px) {
  .club-disclaimer {
    padding: 2.5rem 2.5rem 3.75rem;
  }
}
.club-disclaimer .container {
  margin: 0 auto;
}
.club-disclaimer__text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(27, 38, 59, 0.75);
  margin: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .club-disclaimer__text {
    font-size: 1.5rem;
  }
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1720px;
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

/* ==========================================================================
   Home Layout
   ==========================================================================
   This file is reserved for home page specific layout styles.
   Currently, all home page styles are managed in section partials
   (e.g., sections/home/_about.scss).
   ========================================================================== */
/* ==========================================================================
   Section About
   ========================================================================== */
.section-about {
  background-color: #333333;
}
.section-about .container {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 3.4375rem;
  padding-bottom: 3.4375rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .section-about .container {
    padding-right: 0;
    padding-left: 0;
    flex-direction: row;
  }
  .section-about .container > div:nth-child(1) {
    width: 45%;
  }
  .section-about .container > div:nth-child(2) {
    width: 55%;
  }
}
.section-about h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  text-wrap: balance;
  text-align: center;
}
.section-about h3 strong {
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
@media (min-width: 768px) {
  .section-about h3 {
    text-align: left;
    font-size: 2.375rem;
  }
}
.section-about p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .section-about p {
    line-height: 2rem;
  }
}

.section-investments-club {
  background: radial-gradient(45.44% 47.19% at 50% 50%, rgb(67, 49, 3) 0%, #060606 100%);
}
.section-investments-club .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1536px) {
  .section-investments-club .container {
    max-width: 1430px;
  }
}
@media (min-width: 1024px) {
  .section-investments-club {
    padding: 5rem 5rem 5rem 5rem;
  }
}
.section-investments-club__title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
.section-investments-club__description {
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
.section-investments-club__featured {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.section-investments-club__featured-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #ffffff;
  gap: 0.25rem;
}
.section-investments-club__slider {
  margin-top: 2.5rem;
  overflow: visible;
}
.section-investments-club__slider .swiper-wrapper {
  align-items: stretch;
}
.section-investments-club__slider .swiper-slide {
  height: auto;
}
.section-investments-club__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}
.section-investments-club__cta .btn-gold {
  padding: 1rem 2rem;
}
@media (min-width: 1024px) {
  .section-investments-club__cta .btn-gold {
    padding: 1rem 3.25rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .section-investments-club__cta .btn-gold {
    padding: 2rem 6.25rem;
    font-size: 1.5rem;
  }
}
.section-investments-club__card {
  border-radius: 1.375rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.section-investments-club__card img {
  display: block;
  width: 100%;
  height: 26.0625rem;
  object-fit: cover;
}
.section-investments-club__card-content {
  background-color: rgb(51, 51, 51);
  padding: 1rem 1.25rem;
  transition: background-color 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-investments-club__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  transition: color 0.3s ease;
}
.section-investments-club__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: color 0.3s ease;
}
.section-investments-club__card-link svg {
  transition: transform 0.3s ease;
}
.section-investments-club__card-link svg path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.section-investments-club__card:hover .section-investments-club__card-content {
  background-color: #ffffff;
}
.section-investments-club__card:hover .section-investments-club__card-title {
  color: rgb(0, 0, 0);
}
.section-investments-club__card:hover .section-investments-club__card-link {
  color: rgb(0, 0, 0);
}
.section-investments-club__card:hover .section-investments-club__card-link svg {
  transform: translateX(0.25rem);
}
.section-investments-club__card:hover .section-investments-club__card-link svg path {
  fill: rgb(0, 0, 0);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .stats {
    flex-direction: row;
    gap: 1.5rem;
    padding-top: 3rem;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .stats {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.stats__item {
  border: 3px solid rgb(235, 235, 235);
  background-color: #ffffff;
  border-radius: 25px;
  padding: 3.5625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .stats__item {
    background-color: rgba(255, 211, 99, 0.33);
    border: 3px solid rgb(250, 208, 103);
    width: 100%;
    min-width: calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
}
@media (min-width: 1280px) {
  .stats__item {
    min-width: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
.stats__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(93.79deg, #f0b500 2.94%, #ffebac 95.79%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.stats__description {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .stats__description {
    color: #ffffff;
  }
}

/* ==========================================================================
   Section Cases de Sucesso
   ========================================================================== */
.section-cases {
  position: relative;
  padding: 5rem 0;
  background-color: #333333;
}
.section-cases .container {
  position: relative;
  max-width: 88.75rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.section-cases__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-cases__title {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
}
.section-cases__grid {
  display: flex;
  justify-content: flex-end;
}
.section-cases .cases-swiper {
  width: 100%;
  padding-bottom: 3.125rem;
}
.section-cases .cases-swiper .swiper-wrapper {
  align-items: stretch;
}
.section-cases .cases-swiper .swiper-slide {
  height: auto;
}
.section-cases .swiper-pagination {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.section-cases .swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 20px !important;
  height: 20px !important;
}
.section-cases .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(250, 208, 103);
  transform: scale(1.2);
  width: 54px !important;
  height: 20px !important;
  border-radius: 30px !important;
}

.case-card {
  position: relative;
  width: 100%;
  max-width: 88.75rem;
  min-height: 46.125rem;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4rem;
}
.case-card--align-left {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 4rem;
}
.case-card--align-right {
  justify-content: flex-end;
}
.case-card__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/cases-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.case-card__content {
  position: relative;
  z-index: 1;
  width: 30.0625rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.875rem;
  backdrop-filter: blur(10px);
  padding: 2.5rem;
}
.case-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.case-card__service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.675;
  color: rgb(0, 0, 0);
}
.case-card__service::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  flex-shrink: 0;
}
.case-card__client {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.302;
  color: rgb(0, 0, 0);
  margin: 0 0 1rem;
}
.case-card__description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.34;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 1.5rem;
}
.case-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.case-card__metrics-row {
  display: flex;
  gap: 0.625rem;
}
.case-card__metric {
  display: flex;
  flex-direction: column;
}
.case-card__metric:not(:last-child) {
  margin-right: 1rem;
}
.case-card__metric-value {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.302;
  color: rgb(0, 0, 0);
  margin-bottom: 0.5rem;
}
.case-card__metric-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.412;
  color: rgba(0, 0, 0, 0.6);
}

.btn-cases {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5625rem;
  height: 3.6875rem;
  padding: 0 1.5rem;
  background: linear-gradient(131deg, rgb(240, 181, 0) 2%, rgb(255, 235, 172) 96%);
  border-radius: 0.9375rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #333333;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-cases:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 181, 0, 0.3);
}

/* ==========================================================================
   Responsive - Cases Section
   ========================================================================== */
@media (min-width: 768px) {
  .section-cases {
    padding: 6.25rem 0;
  }
  .section-cases__title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .section-cases {
    padding: 3.75rem 0;
  }
  .section-cases__header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .section-cases__title {
    text-align: center;
    font-size: 2rem;
  }
  .section-cases__grid {
    justify-content: center;
  }
  .case-card {
    min-height: auto;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: visible;
  }
  .case-card__bg {
    position: relative;
    width: 100%;
    min-height: 25rem;
    border-radius: 1.25rem;
    overflow: hidden;
  }
  .case-card__content {
    position: relative;
    width: 100%;
    margin: 1rem 0 0;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
  }
  .case-card__service {
    font-size: 0.8125rem;
  }
  .case-card__service::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
  .case-card__client {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .case-card__description {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }
  .case-card__metrics {
    gap: 1.25rem;
  }
  .case-card__metrics-row {
    gap: 0.5rem;
  }
  .case-card__metric {
    flex: 1;
  }
  .case-card__metric:not(:last-child) {
    margin-right: 0;
  }
  .case-card__metric-value {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
  }
  .case-card__metric-label {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
  .btn-cases {
    display: flex;
    margin: 1.5rem auto 0;
    width: auto;
    min-width: 11.5625rem;
    max-width: 17.5rem;
  }
}
/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.section-testimonials {
  padding: 3.75rem 0;
  background-color: #1d1d1d;
}
.section-testimonials .container {
  position: relative;
  max-width: 88.75rem;
  padding: 0 1.25rem;
  margin: 0 auto;
}
.section-testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-testimonials__title {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.section-testimonials__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.section-testimonials__carousel {
  position: relative;
}
.section-testimonials {
  /* --- Responsive — Tablet (768px+) --- */
}
@media (min-width: 768px) {
  .section-testimonials {
    padding: 5rem 0;
  }
  .section-testimonials .container {
    padding: 0 2rem;
  }
  .section-testimonials__header {
    margin-bottom: 4rem;
  }
  .section-testimonials__title {
    font-size: 3rem;
  }
  .section-testimonials__subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 31.25rem;
  }
}

/* ==========================================================================
   Testimonials Card
   ========================================================================== */
.testimonials-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: auto;
}
.testimonials-card__image-wrapper {
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.testimonials-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials-card__content {
  display: none;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials-card__content > * {
  overflow: hidden;
}
.testimonials-card__rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials-card__star {
  flex-shrink: 0;
}
.testimonials-card__quote {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials-card__info {
  text-align: center;
  transition: opacity 0.3s ease;
  margin-top: 1.5rem;
}
.testimonials-card__name {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 0.25rem;
}
.testimonials-card__role {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0;
}
.testimonials-card {
  /* Active slide state */
}
.swiper-slide-active .testimonials-card {
  border-color: rgb(250, 208, 103);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-slide-active .testimonials-card .testimonials-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.swiper-slide-active .testimonials-card .testimonials-card__rating {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .testimonials-card .testimonials-card__quote {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .testimonials-card .testimonials-card__image-wrapper {
  aspect-ratio: 4/3;
}
.testimonials-card {
  /* --- Responsive — Tablet (768px+) --- */
}
@media (min-width: 768px) {
  .testimonials-card {
    border-radius: 1.25rem;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .testimonials-card__image-wrapper {
    margin-bottom: 0;
    aspect-ratio: 4/3;
    max-width: 15rem;
  }
  .testimonials-card__rating {
    margin-bottom: 1rem;
  }
  .testimonials-card__quote {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .testimonials-card__name {
    font-size: 1.5rem;
  }
  .testimonials-card__role {
    font-size: 0.875rem;
  }
  .swiper-slide-active .testimonials-card {
    flex-direction: row;
  }
}

/* ==========================================================================
   Swiper Slide Widths
   ========================================================================== */
.section-testimonials .swiper-slide {
  width: auto !important;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-testimonials .swiper-slide.swiper-slide-active {
  width: 100% !important;
}
.section-testimonials .swiper-slide {
  /* --- Responsive — Desktop (1024px+) --- */
}
@media (min-width: 1024px) {
  .section-testimonials .swiper-slide {
    width: 19.125rem !important;
  }
  .section-testimonials .swiper-slide.swiper-slide-active {
    width: 40rem !important;
  }
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.testimonials-swiper__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonials-swiper__pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonials-swiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(250, 208, 103);
  transform: scale(1.2);
  width: 3.375rem;
  border-radius: 1.875rem;
}
.testimonials-swiper__pagination {
  /* --- Responsive — Tablet (768px+) --- */
}
@media (min-width: 768px) {
  .testimonials-swiper__pagination {
    margin-top: 3rem;
  }
}

/* ==========================================================================
   Section Partners
   ========================================================================== */
.section-partners {
  background-color: #333333;
  padding-top: 3.4375rem;
}
@media (min-width: 768px) {
  .section-partners {
    padding-top: 5rem;
    padding-bottom: 0rem;
  }
}
.section-partners__title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
}
@media (min-width: 768px) {
  .section-partners__title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}
.section-partners__carousel {
  width: 100%;
  background-color: #ffffff;
  padding: 2rem 0;
  border-bottom: 0.25rem solid #f0b500;
}
.section-partners .partners-swiper {
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .section-partners .partners-swiper {
    padding: 0 2.5rem;
  }
}
.section-partners .partners-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.section-partners .partners-card__logo {
  max-width: 100%;
  max-height: 5.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.section-partners .partners-card__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Section Contact
   ========================================================================== */
.section-contact {
  background: linear-gradient(135deg, #f0b500 0%, #ffebac 100%);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section-contact {
    padding: 5rem 0;
  }
}
.section-contact .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .section-contact .container {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .section-contact .container {
    max-width: 1296px;
  }
}
.section-contact__content {
  flex: 1;
}
.section-contact__title {
  color: #333333;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .section-contact__title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
}
.section-contact__subtitle {
  color: #333333;
  font-size: 1rem;
  line-height: 1.625rem;
  margin: 0;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .section-contact__subtitle {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.section-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .section-contact__actions {
    width: auto;
    min-width: 20rem;
    gap: 1rem;
  }
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
  color: #f0b500;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.875rem;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .btn-contact {
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
  }
}
.btn-contact:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-solucoes {
  display: block;
  background-color: #ffffff;
  color: #1b263b;
}

/* ==========================================================================
   Portfolio Layout
   ==========================================================================
   Imports for the Portfolio page sections.
   ========================================================================== */
.portfolio-banner {
  position: relative;
  width: 100%;
  min-height: 17.5rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .portfolio-banner {
    min-height: 22.5rem;
  }
}
@media (min-width: 1024px) {
  .portfolio-banner {
    min-height: 26.25rem;
  }
}
.portfolio-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.65) 100%);
  z-index: 1;
}
.portfolio-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}
.portfolio-banner__title {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 45rem;
  margin: 0;
}
@media (min-width: 768px) {
  .portfolio-banner__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .portfolio-banner__title {
    font-size: 2.625rem;
  }
}
.portfolio-banner__subtitle {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 32.5rem;
  opacity: 0.95;
  margin: 0;
}
@media (min-width: 768px) {
  .portfolio-banner__subtitle {
    font-size: 1.0625rem;
  }
}

/* ==========================================================================
   Section Portfolio — Cases List
   ========================================================================== */
.section-portfolio-cases {
  padding: 3.75rem 0;
  background-color: #f4f4f4;
}
.section-portfolio-cases .container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-portfolio-cases__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-portfolio-cases__empty {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  padding: 2.5rem 0;
}
.section-portfolio-cases {
  /* Override the .case-card base layout for the portfolio list:
     smaller height, alternating alignment. */
}
.section-portfolio-cases .case-card {
  min-height: 26.25rem;
  max-width: 100%;
  padding: 1.5rem;
}
.section-portfolio-cases .case-card--align-right {
  justify-content: flex-end;
}
.section-portfolio-cases .case-card--align-left {
  justify-content: flex-start;
}
.section-portfolio-cases .case-card__content {
  width: 100%;
  max-width: 26.25rem;
  padding: 1.75rem;
}
@media (min-width: 768px) {
  .section-portfolio-cases {
    padding: 5rem 0;
  }
  .section-portfolio-cases__list {
    gap: 2.5rem;
  }
  .section-portfolio-cases .case-card {
    min-height: 30rem;
    padding: 2.5rem;
  }
  .section-portfolio-cases .case-card__content {
    max-width: 27.5rem;
    padding: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .section-portfolio-cases .case-card--align-left, .section-portfolio-cases .case-card--align-right {
    justify-content: center;
  }
}

/* ==========================================================================
   Portfolio Pagination (01 02 03 →)
   ========================================================================== */
.portfolio-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.portfolio-pagination__item {
  display: inline-flex;
}
.portfolio-pagination__item a,
.portfolio-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.625rem;
  border-radius: 50%;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.portfolio-pagination__item a:hover {
  background: rgba(240, 181, 0, 0.2);
}
.portfolio-pagination__item .current {
  background: #f0b500;
  color: #333;
}
.portfolio-pagination__item .prev,
.portfolio-pagination__item .next {
  background: transparent;
  font-size: 1.125rem;
}
.portfolio-pagination__item .prev:hover,
.portfolio-pagination__item .next:hover {
  background: rgba(240, 181, 0, 0.2);
}
@media (min-width: 768px) {
  .portfolio-pagination {
    margin-top: 3.5rem;
  }
  .portfolio-pagination__item a,
  .portfolio-pagination__item span {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9375rem;
  }
}

.banner-page {
  min-height: 547px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.banner-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .banner-page {
    min-height: 45rem;
  }
}
.banner-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 10.625rem;
  z-index: 1;
}
.banner-page .container h2,
.banner-page .container p {
  color: #ffffff;
  text-align: center;
}
.banner-page .container h2 {
  font-size: 3rem;
  font-weight: bold;
}
.banner-page .container p {
  font-size: 1.5rem;
  font-weight: bold;
}

/*# sourceMappingURL=main.css.map */
