/* Estilos exclusivos da pagina inicial. */

/* =========================================
   HERO
========================================== */
.hero {
  position: relative;
  padding: 60px 0 140px;
  min-height: 640px;
}

.hero__text h1,
.hero__subtitle {
  --ody-hero-title-color: var(--navy);
  --ody-hero-title-fill: linear-gradient(180deg, #0f63af 0%, #063c6c 100%);
  --ody-hero-title-outline: #fff;
  --ody-hero-title-outline-width: clamp(1px, 0.22vw, 3px);
}

.hero__text h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin: 0 0 12px;
}

.hero__subtitle {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero__logos-wrap {
  display: none;
}

.hero__logos {
  display: block;
  width: clamp(180px, 16vw, 300px);
  max-width: 78vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 12px rgba(20, 29, 63, 0.18));
}

/* --- Área que segura vídeo + tartaruga --- */
.hero__media {
  position: relative;
  margin: 0 auto;
  padding-top: 98px;
  width: 100%;
  max-width: 980px;
}

.hero__turtle {
  position: absolute;
  left: -6%;
  top: -16px;
  width: clamp(150px, 22vw, 270px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.25));
  pointer-events: none;
}

.video-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-video);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  width: 100%;
  max-width: 980px;
  background: var(--navy-dark);
  box-shadow: 0 20px 45px rgba(20, 29, 63, 0.35);
}

.video-card__video,
.video-card__embed {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  transition: opacity .2s ease;
}

.video-card__video {
  object-fit: cover;
}

.video-card__embed {
  border: 0;
}

.video-card__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(120deg, rgba(20, 29, 63, 0.78), rgba(34, 168, 207, 0.45)),
    url('../images/backgrounds/BackgroundHero.webp') center / cover no-repeat;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 3;
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.video-card__play:hover {
  transform: scale(1.06);
  background: var(--white);
}

.video-card__play svg {
  transform: translateX(2px);
}

.video-card.is-playing .video-card__play {
  opacity: 0;
  pointer-events: none;
}

.video-card.is-unavailable .video-card__video {
  opacity: 0;
}

.video-card.is-unavailable .video-card__play {
  opacity: 0;
  pointer-events: none;
}





/* =========================================
   RESORT
========================================== */
.secao-resort {
  position: relative;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  aspect-ratio: 2880 / 2860;
  margin-top: -150px;
  background-image: url('../images/backgrounds/BackgroundResort.webp');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  line-height: 0;
}

.secao-resort a,
.secao-resort button,
.secao-resort .resort-imagem {
  pointer-events: auto;
}

.resort-menu-toggle {
  display: none;
}

.resort-menu {
  position: absolute;
  top: clamp(-72px, -4vw, -44px);
  left: 50%;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(calc(100% - 64px), 1180px);
  padding: 34px 44px;
  border-radius: 18px;
  background: #eef3ff;
  box-shadow: 0 14px 24px rgba(20, 49, 79, 0.14);
  line-height: 1.2;
  transform: translateX(-50%);
}



.resort-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease;
}

.resort-menu__item:hover,
.resort-menu__item:focus-visible {
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.resort-menu__item:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 6px;
  border-radius: 12px;
}

.resort-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e3eafa;
}

.resort-menu__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resort-overlay {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56%;
  line-height: 1.5;
}

.resort-overlay .container {
  max-width: 1240px;
  padding-right: 32px;
  padding-left: 32px;
}

.resort-conteudo {
  max-width: 520px;
  margin-right: 30px;
  margin-left: auto;
  padding: 0;
}

.resort-titulo {
  --ody-hero-title-color: #fff;
  --ody-hero-title-fill: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
  --ody-hero-title-outline: #0f4b8c;
  --ody-hero-title-outline-width: clamp(1px, 0.2vw, 3px);
  margin: 0 0 1rem;
  font-size: 42px;
  line-height: 1.08;
  animation: resortFadeInUp .7s ease-out both;
}

.resort-titulo .destaque-titulo {
  display: inline-block;
  color: inherit;
}

.resort-texto {
  margin: 0 0 1.5rem;
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  animation: resortFadeInUp .7s ease-out .15s both;
}

.resort-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-bottom: 1.8rem;
  animation: resortFadeInUp .7s ease-out .3s both;
}

.resort-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  background: rgba(255, 244, 214, 0.58);
  color: #007540;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: default;
  box-shadow: 0 8px 20px rgba(87, 48, 5, 0.08);
  transition: background .3s ease, box-shadow .3s ease;
}

.resort-tag i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #bdf8c7;
  color: #007540;
  font-size: 13px;
  line-height: 1;
}

.resort-tag i::before {
  content: '\2605';
}

.resort-tag:hover {
  background: rgba(255, 244, 214, 0.72);
  box-shadow: 0 12px 24px rgba(87, 48, 5, 0.12);
}

.btn-resort-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  overflow: hidden;
  padding: 1rem 2.65rem;
  border: 0;
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 62, 109, 0.35);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  animation: resortFadeInUp .7s ease-out .45s both;
  transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.btn-resort-cta:hover,
.btn-resort-cta:focus-visible {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 29, 63, 0.35);
}

.btn-resort-cta i {
  transition: transform .3s ease;
}

.btn-resort-cta:hover i,
.btn-resort-cta:focus-visible i {
  transform: translateX(5px);
}

.btn-resort-cta:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.resort-imagem-container {
  padding: 0;
}

.resort-imagem-wrapper {
  position: relative;
  max-width: 560px;
  margin-right: auto;
  margin-left: 30px;
  animation: resortFadeInRight .9s ease-out .2s both;
}

.resort-imagem-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  z-index: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  opacity: 0.2;
}

.resort-imagem {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform .4s ease, box-shadow .4s ease;
}

.resort-imagem:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

@keyframes resortFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resortFadeInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}



















/* =========================================
   PACOTES
========================================== */
.pacotes-section {
  --pacotes-azul: #1f4975;
  --pacotes-azul-escuro: #0f4b8c;
  --pacotes-texto: #0d417d;
  --pacotes-amarelo: #ffd51f;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
  margin-top: clamp(-280px, -18vw, -120px);
  padding: clamp(7.5rem, 11vw, 10.5rem) 0 clamp(9rem, 18vw, 17rem);
  background: var(--white) url('../images/backgrounds/BackgroundSecaoPacotes.webp') center top / cover no-repeat;
  color: var(--white);
}

.pacotes-container {
  max-width: 1160px;
}

.pacotes-header {
  margin-bottom: 2.25rem;
}

.pacotes-header h2 {
  --ody-hero-title-color: #fff;
  --ody-hero-title-fill: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
  --ody-hero-title-outline: #0f4b8c;
  --ody-hero-title-outline-width: clamp(1px, 0.2vw, 3px);
  margin: 0 0 0.35rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.pacotes-header p {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
}

.pacotes-empty {
  margin: 70px auto;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-align: center;
}

.pacotes-section .btn-mais {
  min-width: 150px;
  padding: 0.8rem 1.45rem;
  border-width: 2px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.pacotes-section .btn-mais:hover,
.pacotes-section .btn-mais:focus-visible {
  background: var(--white);
  color: var(--pacotes-texto);
}

.pacote-card {
  height: 470px;
  overflow: hidden;
  border: 0;
  border-radius: 1.35rem;
  background: var(--white);
  color: #536071;
  box-shadow: 0 14px 35px rgba(4, 34, 67, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pacote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(4, 34, 67, 0.28);
}

.pacote-imagem-wrap {
  position: relative;
  height: 260px;
  flex: 0 0 260px;
  overflow: hidden;
  background: var(--white);
}

.pacote-imagem {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: fill;
  object-position: center;
}

.pacote-card:hover .pacote-imagem {
  transform: none;
}

.pacotes-section .oferta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: var(--pacotes-amarelo);
  color: #063b72;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.pacote-card .card-body {
  min-height: 0;
  flex: 1 1 210px;
  overflow: hidden;
  padding: 1.45rem 1.35rem 1.3rem;
}

.pacote-card .card-title {
  display: -webkit-box;
  min-height: 30px;
  max-height: 30px;
  overflow: hidden;
  margin-bottom: 0.55rem;
  color: var(--pacotes-texto);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.pacote-card .card-text {
  display: -webkit-box;
  min-height: 45px;
  max-height: 45px;
  overflow: hidden;
  margin-bottom: 1.3rem;
  font-size: 0.88rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pacotes-section .btn-quero {
  width: 100%;
  padding: 0.86rem 1.2rem;
  border: 2px solid var(--pacotes-azul-escuro);
  border-radius: 999px;
  background: var(--pacotes-azul-escuro);
  color: var(--white);
  font-weight: 800;
}

.pacotes-section .btn-quero:hover,
.pacotes-section .btn-quero:focus-visible {
  border-color: var(--pacotes-azul-escuro);
  background: var(--white);
  color: var(--pacotes-azul-escuro);
}



/* =========================================
   ATRAÇÕES
========================================== */
.atracoes-section {
  --atracoes-azul: #06365f;
  --atracoes-amarelo: #ffd51f;
  position: relative;
  z-index: 2;
  min-height: clamp(1180px, 110vw, 1550px);
  overflow: hidden;
  margin-top: clamp(-180px, -10vw, -120px);
  padding: clamp(7rem, 10vw, 9.5rem) 0 clamp(24rem, 32vw, 30rem);
  background-color: transparent;
  background-image: url('../images/backgrounds/BackgroundSecaoAtracoes.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: var(--white);
}

.atracoes-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.atracoes-painel {
  padding: clamp(1.4rem, 3vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(6, 46, 87, 0.91), rgba(10, 82, 126, 0.79));
  box-shadow: 0 24px 55px rgba(0, 37, 70, 0.27);
  backdrop-filter: blur(7px);
}

.atracoes-header {
  margin-bottom: 1.5rem;
}

.atracoes-header h2 {
  --ody-hero-title-color: #ed4b00;
  --ody-hero-title-fill: linear-gradient(180deg, #ffa60c 0%, #ed4b00 100%);
  --ody-hero-title-outline: #fff;
  --ody-hero-title-outline-width: clamp(1px, 0.25vw, 3px);
  margin: 0 0 0.42rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.atracoes-header p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  line-height: 1.55;
}

.btn-todas-atracoes {
  min-width: 164px;
  padding: 0.76rem 1.35rem;
  border-width: 2px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.btn-todas-atracoes:hover,
.btn-todas-atracoes:focus-visible {
  background: var(--white);
  color: var(--atracoes-azul);
}

.atracoes-carrossel {
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.65rem;
  background: #082a48;
  box-shadow: 0 17px 36px rgba(2, 24, 49, 0.31);
}

.atracoes-carrossel .carousel-inner {
  height: clamp(400px, 42vw, 480px);
}

.atracoes-carrossel-vazio {
  display: grid;
  min-height: clamp(220px, 28vw, 340px);
  margin: 0;
  place-items: center;
  padding: 2rem;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.65rem;
  background: #082a48;
  box-shadow: 0 17px 36px rgba(2, 24, 49, 0.31);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  text-align: center;
}

.atracao-slide {
  --atracao-imagem: none;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  background-color: #082a48;
  background-image: linear-gradient(90deg, rgba(2, 22, 42, 0.91) 0%, rgba(2, 30, 54, 0.64) 42%, rgba(2, 30, 54, 0.05) 78%), var(--atracao-imagem);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.atracao-slide.active,
.atracao-slide.carousel-item-next,
.atracao-slide.carousel-item-prev,
.atracao-slide.carousel-item-start,
.atracao-slide.carousel-item-end {
  display: flex;
  align-items: center;
}

.atracao-slide--kamikaze {
  background-position: center 30%;
}

.atracao-slide--infantil {
  background-position: 40% 43%;
}

.atracao-slide--rio {
  background-position: center 67%;
}

.atracao-slide__conteudo {
  max-width: 520px;
  margin-left: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--white);
}

.atracao-slide__etiqueta {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--atracoes-amarelo);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atracao-slide h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 0.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.96;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.32);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.atracao-slide p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 490px;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.9rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.btn-ver-atracao {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.74rem 1.3rem;
  border: 2px solid var(--atracoes-amarelo);
  border-radius: 999px;
  background: var(--atracoes-amarelo);
  color: var(--atracoes-azul);
  font-weight: 800;
}

.btn-ver-atracao:hover,
.btn-ver-atracao:focus-visible {
  border-color: var(--atracoes-amarelo);
  background: transparent;
  color: var(--white);
}

.atracoes-controle {
  top: 50%;
  bottom: auto;
  width: 44px;
  height: 44px;
  margin: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(3, 20, 38, 0.61);
  transform: translateY(-50%);
  opacity: 1;
}

.atracoes-indicadores [data-bs-target] {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.atracoes-indicadores .active {
  width: 28px;
  background-color: var(--atracoes-amarelo);
}





/* =========================================
   PROMOÇÕES
========================================== */
.promocoes-section {
  --promocoes-azul: #0f4b8c;
  --promocoes-azul-claro: #2b67ad;
  --promocoes-amarelo: #ffd51f;
  --promocoes-branco: #fff;
  --promocoes-texto: #0d417d;
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-height: 900px;
  overflow: hidden;
  margin-top: clamp(-850px, -48vw, -580px);
  padding: clamp(12rem, 20vw, 17rem) 1rem clamp(7rem, 10vw, 10rem);
  background-color: transparent;
  background-image: url('../images/backgrounds/BackgroundSecaoPromocoes.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.promocoes-container {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
}

.promocoes-cabecalho {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 5vw, 5.4rem);
}

.promocoes-titulo-wrap {
  position: relative;
  width: min(100%, 470px);
  padding-bottom: 58px;
}

.promocoes-titulo {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 165px;
  place-items: center;
  padding: 2.7rem 4.5rem 2.8rem;
  border-radius: 46% 46% 32% 34% / 22% 22% 28% 32%;
  background: linear-gradient(155deg, #ffe357, #ffd31d 55%, #ffc20e);
  box-shadow:
    inset 0 8px 8px rgba(255, 255, 255, 0.38),
    inset 0 -8px 12px rgba(222, 141, 0, 0.24),
    0 12px 18px rgba(103, 50, 104, 0.18);
  transform: rotate(-3deg);
}

.promocoes-titulo::before,
.promocoes-titulo::after {
  position: absolute;
  bottom: -30px;
  z-index: -1;
  width: 52%;
  height: 72px;
  background: #ffca16;
  content: '';
}

.promocoes-titulo::before {
  left: 5%;
  clip-path: polygon(0 0, 100% 0, 54% 100%);
}

.promocoes-titulo::after {
  right: 5%;
  clip-path: polygon(0 0, 100% 0, 42% 100%);
}

.promocoes-titulo h2 {
  --ody-hero-title-color: var(--promocoes-azul);
  --ody-hero-title-fill: linear-gradient(180deg, var(--promocoes-azul-claro) 0%, var(--promocoes-azul) 100%);
  --ody-hero-title-outline: #fff;
  --ody-hero-title-outline-width: clamp(1px, 0.2vw, 3px);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.91;
  text-align: center;
  transform: rotate(3deg);
}

.promocoes-titulo h2 span {
  display: block;
}

.promocoes-titulo__faixa {
  position: absolute;
  right: -6%;
  bottom: 9px;
  left: -6%;
  z-index: 2;
  height: 78px;
  background: var(--promocoes-azul);
  clip-path: polygon(0 18%, 14% 0, 28% 34%, 43% 5%, 57% 37%, 71% 7%, 85% 40%, 100% 16%, 100% 57%, 85% 80%, 71% 52%, 57% 88%, 43% 55%, 28% 91%, 14% 58%, 0 82%);
}

.promocoes-lista {
  --bs-gutter-x: clamp(1.2rem, 3vw, 2.4rem);
}

.promocao-card {
  overflow: hidden;
  border: 0;
  border-radius: 1.35rem;
  background: var(--promocoes-branco);
  color: #536071;
  box-shadow: 0 14px 35px rgba(4, 34, 67, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promocao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(4, 34, 67, 0.28);
}

.promocao-card__imagem-wrap {
  position: relative;
  height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--promocoes-branco);
}

.promocao-card__imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.promocao-card:hover .promocao-card__imagem {
  transform: scale(1.04);
}

.promocao-card__oferta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: var(--promocoes-amarelo);
  color: var(--promocoes-azul);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.promocao-card__corpo {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 210px;
  padding: 1.45rem 1.35rem 1.3rem;
  text-align: center;
}

.promocao-card .card-title {
  margin: 0 0 0.55rem;
  color: var(--promocoes-texto);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.promocao-card .card-text {
  flex: 1;
  margin: 0 0 1.3rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.promocao-card__botao {
  width: 100%;
  padding: 0.86rem 1.2rem;
  border: 2px solid var(--promocoes-azul);
  border-radius: 999px;
  background: var(--promocoes-azul);
  color: var(--promocoes-branco);
  font-family: var(--font-heading);
  font-weight: 800;
}

.promocao-card__botao:hover,
.promocao-card__botao:focus-visible {
  border-color: var(--promocoes-azul);
  background: var(--promocoes-branco);
  color: var(--promocoes-azul);
}

.promocoes-desconto {
  position: absolute;
  z-index: 1;
  display: grid;
  width: clamp(72px, 8vw, 118px);
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(145deg, #ffe856, #ffd31d 52%, #ffbf00);
  clip-path: polygon(50% 0%, 61% 9%, 75% 5%, 83% 18%, 96% 22%, 94% 38%, 100% 50%, 91% 62%, 95% 76%, 81% 82%, 75% 96%, 61% 91%, 50% 100%, 39% 91%, 24% 96%, 18% 82%, 4% 76%, 9% 62%, 0% 50%, 7% 38%, 4% 22%, 18% 18%, 25% 5%, 39% 9%);
  color: #fff8dc;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  text-shadow: 0 4px 0 #e6b300, 0 7px 10px rgba(155, 90, 0, 0.28);
  transform: rotate(-11deg);
}

.promocoes-desconto--esquerda-superior {
  top: 26%;
  left: clamp(1rem, 8vw, 8rem);
}

.promocoes-desconto--esquerda-inferior {
  top: 52%;
  left: -1rem;
  width: clamp(92px, 11vw, 155px);
}

.promocoes-desconto--direita-superior {
  top: 29%;
  right: clamp(1rem, 8vw, 8rem);
  transform: rotate(9deg);
}

.promocoes-desconto--direita-inferior {
  top: 57%;
  right: -1rem;
  width: clamp(102px, 12vw, 175px);
  transform: rotate(13deg);
}

/* =========================================
   TIPOGRAFIA DA PAGINA INICIAL
========================================== */
body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5,
body.home h6 {
  font-family: var(--font-heading);
}

body.home p,
body.home address,
body.home figcaption {
  font-family: var(--font-body);
}
