:root {
  --qc-dark: #253d4d;
  --qc-dark-2: #1f3442;
  --qc-light: #f7f7fb;
  --qc-white: #ffffff;
  --qc-text: #5e6574;
  --qc-heading: #253d4d;
  --qc-border: rgba(15, 23, 40, 0.1);
  --qc-primary: #65c4cf;
  --qc-primary-strong: #4eaeb9;
  --qc-radius-lg: 28px;
  --qc-radius-md: 22px;
  --qc-shadow: 0 20px 60px rgba(10, 22, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--qc-text);
  background: var(--qc-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

.site-shell {
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(101, 196, 207, 0.20), transparent 30%),
    linear-gradient(135deg, #253d4d 0%, #213744 55%, #1b2f3b 100%);
  color: rgba(255,255,255,0.8);
}

.header-area .navbar {
  backdrop-filter: blur(14px);
}

.header-area.header-dark-start .navbar {
  background: rgba(8, 17, 31, 0.94) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  color: #fff;
  font-size: 1.1rem;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  padding: 0.8rem 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.btn-search {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.btn-search:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--qc-primary), #8bd8e0);
  color: var(--qc-dark);
  border: 0;
  padding: 0.95rem 1.6rem;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(101, 196, 207, 0.28);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--qc-primary-strong), var(--qc-primary));
  color: var(--qc-dark);
}

.btn-lg-custom {
  padding: 1rem 1.7rem;
}

.btn-link-custom {
  color: var(--qc-heading);
  font-weight: 700;
}

.hero-section {
  padding: 8rem 0 4rem;
}

.hero-cover {
  min-height: calc(100vh - 92px - 86px);
  display: flex;
  align-items: stretch;
  padding: 7.5rem 0 0;
}

.hero-background-wrap {
  position: absolute;
  inset: 0;
}

.hero-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 26, 36, 0.42) 0%, rgba(12, 26, 36, 0.56) 35%, rgba(12, 26, 36, 0.78) 100%), radial-gradient(circle at left top, rgba(101, 196, 207, 0.22), transparent 28%);
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-cover-content {
  display: flex;
  align-items: flex-end;
  flex: 1;
  padding-bottom: 3.5rem;
}

.hero-cover-row {
  min-height: calc(100vh - 92px - 86px - 7.5rem);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.glow-one {
  top: -120px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(101, 196, 207, 0.22);
}

.glow-two {
  bottom: 60px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
}

.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,0.78);
}

.text-accent {
  color: var(--qc-primary) !important;
}

.hero-title,
.section-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1.3rem;
}

.section-title {
  color: var(--qc-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.hero-text,
.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
}

.hero-visual {
  position: relative;
  max-width: 590px;
  min-height: 580px;
}

.hero-photo-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--qc-shadow);
}

.hero-photo-card img,
.image-stack img,
.destination-card img,
.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-main {
  width: min(100%, 440px);
  height: 560px;
  margin-left: auto;
}

.card-float {
  position: absolute;
  border: 6px solid rgba(255,255,255,0.9);
}

.card-float-top {
  top: 40px;
  left: 0;
  width: 220px;
  height: 220px;
}

.card-float-bottom {
  bottom: 35px;
  left: 30px;
  width: 250px;
  height: 180px;
}

.floating-badge {
  position: absolute;
  right: 40px;
  bottom: 20px;
  background: rgba(255,255,255,0.96);
  color: var(--qc-heading);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  min-width: 160px;
  box-shadow: var(--qc-shadow);
}

.floating-badge span,
.floating-badge small,
.metric-card small,
.muted-label,
.partner-tag,
.destination-overlay span,
.pill-light {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-badge strong,
.metric-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  margin: 0.35rem 0;
}

.metric-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.3rem;
  height: 100%;
}

.logo-strip {
  padding: 1.3rem 0;
  border-top: 1px solid var(--qc-border);
  border-bottom: 1px solid var(--qc-border);
  background: #fff;
}

.logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,40,0.2), transparent);
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(15,23,40,0.05);
  color: var(--qc-heading);
  font-weight: 700;
}

.muted-label {
  color: var(--qc-heading);
}

.section-space {
  padding: 7rem 0;
}

.bg-light-soft {
  background: var(--qc-light);
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack-main,
.image-stack-side {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--qc-shadow);
}

.image-stack-main {
  width: min(100%, 470px);
  height: 560px;
}

.image-stack-side {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 220px;
  height: 240px;
  border: 6px solid #fff;
}

.steps-wrap {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15,23,40,0.08);
}

.step-item span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--qc-heading);
  background: rgba(217, 164, 65, 0.14);
}

.step-item p {
  margin: 0;
  color: var(--qc-heading);
  font-weight: 500;
}

.step-item.active {
  background: var(--qc-heading);
}

.step-item.active p,
.step-item.active span {
  color: #fff;
}

.step-item.active span {
  background: rgba(255,255,255,0.12);
}

.section-header {
  margin-bottom: 0.5rem;
}

.feature-card,
.content-card,
.value-card,
.partner-card,
.destination-card,
.cta-box,
.accordion-item,
.accent-card {
  border-radius: var(--qc-radius-lg);
}

.feature-card,
.content-card,
.value-card,
.partner-card,
.accordion-item {
  background: #fff;
  border: 1px solid rgba(15,23,40,0.08);
  box-shadow: var(--qc-shadow);
}

.feature-card {
  padding: 2rem;
  height: 100%;
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(101, 196, 207, 0.16);
  color: var(--qc-heading);
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}

.feature-card h3,
.value-card h3,
.partner-body h3,
.destination-overlay h3,
.accent-card h3,
.footer-title {
  color: var(--qc-heading);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 750;
  margin-bottom: 0.9rem;
}

.read-more,
.partner-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--qc-heading);
  font-weight: 700;
  margin-top: 1rem;
}

.destination-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.large-card {
  min-height: 100%;
}

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,6,12,0.04), rgba(3,6,12,0.72));
}

.destination-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.7rem;
  z-index: 1;
  color: #fff;
}

.destination-overlay h3,
.accent-card h3 {
  color: #fff;
  margin-bottom: 0;
}

.accent-card {
  min-height: 280px;
  padding: 1.7rem;
  background: linear-gradient(145deg, rgba(101, 196, 207, 0.95), rgba(78, 174, 185, 0.95));
  box-shadow: 0 20px 50px rgba(101, 196, 207, 0.24);
}

.pill-light {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.content-card {
  padding: 2rem;
}

.value-card {
  padding: 1.8rem;
  height: 100%;
}

.partner-card {
  overflow: hidden;
  height: 100%;
}

.partner-card img {
  height: 220px;
}

.partner-body {
  padding: 1.5rem;
}

.partner-tag {
  color: var(--qc-primary-strong);
  margin-bottom: 0.65rem;
}

.faq-accordion .accordion-item {
  border: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--qc-heading);
  padding: 1.4rem 1.5rem;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--qc-heading);
}

.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.cta-section {
  padding: 0 0 7rem;
}

.instagram-section {
  padding: 7rem 0;
}

.cta-box {
  padding: 2.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-area {
  padding: 5rem 0 2rem;
  background: var(--qc-dark);
  color: rgba(255, 255, 255, 0.84);
}

.footer-text {
  max-width: 360px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.footer-title {
  font-size: 1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: var(--qc-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-area .brand-logo,
.footer-area .navbar-brand {
  filter: none;
}

.footer-area .footer-bottom p,
.footer-area .footer-bottom small {
  color: rgba(255, 255, 255, 0.72);
}



.instagram-box {
  background: rgba(255,255,255,0.05);
}

.instagram-preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--qc-shadow);
}

.instagram-preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.5));
}

.instagram-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.instagram-preview-card:hover img {
  transform: scale(1.05);
}

.instagram-preview-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--qc-heading);
  font-weight: 700;
}

.instagram-widget-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.instagram-widget-note strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.instagram-embed-code {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #d9edf1;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(8, 17, 31, 0.98);
    padding: 1rem;
    border-radius: 20px;
  }

  .hero-visual {
    max-width: 100%;
  }

  .card-main {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 7rem;
  }

  .hero-cover {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-cover-content {
    padding-bottom: 2.5rem;
  }

  .hero-cover-row {
    min-height: 520px;
    align-items: end;
  }

  .hero-title,
  .section-title {
    max-width: 100%;
  }

  .hero-visual,
  .image-stack {
    min-height: auto;
  }

  .card-main,
  .image-stack-main {
    height: 420px;
  }

  .card-float-top,
  .card-float-bottom,
  .image-stack-side,
  .floating-badge {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .card-float,
  .image-stack-side {
    border-width: 0;
  }
}

@media (max-width: 767.98px) {
  .section-space,
  .cta-section {
    padding: 4.5rem 0;
  }

  .hero-cover {
    min-height: calc(100vh - 72px - 102px);
    padding-top: 6.8rem;
  }

  .hero-cover-row {
    min-height: calc(100vh - 72px - 102px - 6.8rem);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card,
  .content-card,
  .value-card,
  .partner-body,
  .cta-box {
    padding: 1.4rem;
  }

  .card-main,
  .image-stack-main {
    height: 340px;
  }

  .instagram-widget-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .instagram-embed-code {
    white-space: normal;
  }
}

body.is-loading {
  overflow: hidden;
}

body.search-open {
  overflow: hidden;
}

.page-top-space {
  padding-top: 11rem;
  min-height: 100vh;
}



.site-header,
header,
.navbar,
.navbar-area,
.main-header {
  position: relative;
  z-index: 9999 !important;
}

.site-header.is-sticky,
.site-header.fixed,
header.fixed,
.navbar.fixed-top,
.navbar.sticky-top {
  z-index: 9999 !important;
}

.hero-slider-section,
.hero-slider,
.hero-slide {
  position: relative;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
}



.header-area {
  transition: transform .3s ease, background .3s ease;
}

.header-area .navbar {
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.header-area .navbar.scrolled {
  background: rgba(8, 17, 31, 0.88) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.inner-header .brand-text,
.inner-header .navbar .nav-link,
.inner-header .btn-search {
  color: #fff;
}

.site-preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08111f;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: min(150px, 26vw);
  height: auto;
  animation: preloaderPulse 1.7s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.06); opacity: 1; }
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: min(100%, 920px);
  color: #fff;
}

.search-overlay-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.search-overlay-form {
  margin-top: 1.5rem;
}

.search-field-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 1rem 1.1rem 1rem 1.25rem;
}

.search-field-wrap i {
  font-size: 1.15rem;
  color: #fff;
}

.search-field-wrap input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 1.05rem;
  min-width: 0;
}

.search-field-wrap input::placeholder {
  color: rgba(255,255,255,.65);
}

.search-field-wrap button,
.search-close {
  border: 0;
  border-radius: 16px;
}

.search-field-wrap button {
  padding: .95rem 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--qc-primary), #8bd8e0);
  color: var(--qc-dark);
}

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.1rem;
}

.segment-wrap {
  display: grid;
  gap: 2rem;
}

.segment-block {
  border: 1px solid var(--qc-border);
  border-radius: 28px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 60px rgba(10, 22, 44, 0.06);
}

.segment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.segment-head h3 {
  margin: 0;
  color: var(--qc-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.segment-head a {
  color: var(--qc-heading);
  font-weight: 700;
}

.drag-carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.drag-carousel.is-dragging {
  cursor: grabbing;
}

.drag-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 clamp(260px, 28vw, 340px);
}

.partner-card {
  height: 100%;
}

.reveal-section, .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-section.is-visible, .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .header-area .navbar {
    background: rgba(8, 17, 31, 0.92) !important;
  }

  .search-overlay-inner h2 {
    font-size: 2rem;
  }

  .search-field-wrap {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .search-field-wrap i {
    display: none;
  }

  .search-field-wrap button {
    width: 100%;
  }

  .search-close {
    top: 1rem;
    right: 1rem;
  }
}


/* ===== Refinos de interação e responsividade ===== */
:root {
  --qc-btn-radius: 18px;
  --qc-section-padding-x: clamp(16px, 2vw, 28px);
  --qc-carousel-gap: 1.25rem;
}

.bg-light-soft {
  background: #f8f9fc;
}

.header-area {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
}

.header-area .navbar {
  background: rgba(8, 17, 31, 0.42);
}

.header-area .navbar.scrolled {
  background: rgba(8, 17, 31, 0.94) !important;
}

.btn,
.btn-search,
.search-close,
.search-field-wrap button,
.btn-primary-custom,
.btn-outline-custom,
.btn-outline-light-custom,
.btn-card-action {
  border-radius: var(--qc-btn-radius) !important;
}

.btn-search,
.search-close {
  width: 50px;
  height: 50px;
}

.btn-search {
  border-radius: 18px !important;
}

.btn-primary-custom {
  padding: 0.95rem 1.6rem;
}

.btn-outline-custom,
.btn-outline-light-custom {
  padding: 0.95rem 1.45rem;
  font-weight: 700;
}

.btn-outline-custom {
  border: 1px solid rgba(15, 23, 40, 0.16);
}

.btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,0.22);
}

.search-overlay {
  background: rgba(0, 0, 0, 0.96);
}

.search-field-wrap {
  border-radius: 24px;
}

.segment-full-bleed .container {
  max-width: 100%;
  padding-left: var(--qc-section-padding-x);
  padding-right: var(--qc-section-padding-x);
}

.segment-wrap {
  gap: 1.75rem;
}

.segment-block {
  padding: 1.5rem;
  overflow: hidden;
}

.carousel-shell {
  position: relative;
  padding-inline: 3.4rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(15, 23, 40, 0.12);
  background: #fff;
  color: var(--qc-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(10, 22, 44, 0.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 16px 34px rgba(10, 22, 44, 0.14);
  background: #fff;
}

.carousel-arrow-prev {
  left: 0;
}

.carousel-arrow-next {
  right: 0;
}

.drag-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  background: #fff;
  padding-block: 0.25rem;
}

.drag-carousel::-webkit-scrollbar {
  display: none;
}

.drag-carousel.is-dragging {
  cursor: grabbing;
}

.drag-track {
  display: flex;
  align-items: stretch;
  gap: var(--qc-carousel-gap);
  width: max-content;
}

.carousel-card {
  flex: 0 0 calc((100vw - (var(--qc-section-padding-x) * 2) - 6.8rem - (var(--qc-carousel-gap) * 5)) / 6);
  min-width: 210px;
  max-width: 320px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}

.partner-card img {
  height: 210px;
  flex-shrink: 0;
}

.partner-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  padding: 1.5rem;
  min-height: 250px;
}

.partner-body h3 {
  min-height: 3.4rem;
  margin-bottom: 0.85rem;
}

.partner-body p {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.partner-footer-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: auto;
}

.partner-city {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--qc-text);
}

.partner-city i {
  color: var(--qc-primary);
}

.btn-card-action {
  margin-top: auto;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  color: var(--qc-heading);
  background: rgba(15, 23, 40, 0.05);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.btn-card-action:hover {
  background: rgba(15, 23, 40, 0.09);
  color: var(--qc-heading);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-section {
  opacity: 1;
  transform: none;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1399.98px) {
  .carousel-card {
    flex-basis: calc((100vw - (var(--qc-section-padding-x) * 2) - 6.8rem - (var(--qc-carousel-gap) * 3)) / 4);
  }
}

@media (max-width: 991.98px) {
  .carousel-shell {
    padding-inline: 2.9rem;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .carousel-card {
    flex-basis: calc((100vw - (var(--qc-section-padding-x) * 2) - 5.8rem - var(--qc-carousel-gap)) / 2);
    min-width: 230px;
    max-width: none;
  }

  .partner-body {
    min-height: 230px;
  }
}

@media (max-width: 767.98px) {
  .segment-block {
    padding: 1rem;
    border-radius: 22px;
  }

  .segment-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-shell {
    padding-inline: 0;
  }

  .carousel-arrow {
    display: none;
  }

  /* .carousel-card {
    flex-basis: calc((100vw - (var(--qc-section-padding-x) * 2) - var(--qc-carousel-gap)) / 2);
    min-width: 175px;
  } */
	
  .carousel-card {
    flex: 0 0 86vw;
    max-width: 86vw;
  }

  .partner-card img {
    height: 180px;
  }

  .partner-body {
    min-height: 220px;
    padding: 1.1rem;
  }

  .partner-body h3 {
    min-height: 3rem;
    font-size: 1.1rem;
  }
}


/* ===== Agenda de eventos ===== */
.agenda-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--qc-border);
  box-shadow: 0 18px 50px rgba(10, 22, 44, 0.06);
}

.agenda-highlight-date,
.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  border-radius: 20px;
  background: var(--qc-heading);
  color: #fff;
  text-align: center;
  padding: 0.9rem 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.agenda-highlight-date {
  min-height: 76px;
}

.agenda-highlight strong {
  display: block;
  color: var(--qc-heading);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.agenda-highlight p {
  margin: 0;
  color: var(--qc-text);
}

.agenda-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--qc-border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10, 22, 44, 0.05);
}

.event-date span {
  font-size: 1.6rem;
  line-height: 1;
}

.event-date small {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.event-meta {
  color: var(--qc-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.event-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  color: var(--qc-heading);
}

.event-content p {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .event-card {
    grid-template-columns: auto 1fr;
  }

  .event-card .btn-card-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .agenda-highlight,
  .event-card {
    grid-template-columns: 1fr;
  }

  .agenda-highlight-date,
  .event-date {
    min-width: 100%;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
}




.hero-picture img.hero-cover-image {
  height: 100% !important;
  min-height: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}




.space-section-lg {
	margin-top: 120px;
	margin-bottom: 120px;
}

/* CARROSSEL MARCAS PATROCINADORES */
.supporters-carousel {
  width: 100%;
  position: relative;
}

.supporters-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.supporter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.supporter-item img {
  display: block;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* tablet */
@media (max-width: 991.98px) {
  .supporters-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .supporters-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
  }

  .supporters-carousel::-webkit-scrollbar {
    display: none;
  }

  .supporters-carousel.is-dragging {
    cursor: grabbing;
  }

  .supporters-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
  }

  .supporter-item {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .supporter-item img {
    width: 100%;
    max-width: none;
    aspect-ratio: 2 / 1;
    object-fit: contain;
  }
}