/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #f8cb2e;
  --secondary-color: #f8cb2e;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #f8cb2e;
  --custom-btn-bg-hover-color: #f8cb2e;
  --dark-color: #000000;
  --p-color: #ffffff;
  --border-color: #7fffd4;
  --link-hover-color: #f8cb2e7;

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --body-bg: #f2f4ff; /* fundo da página (usado para 'recorte') */
  --nav-bg: #ffffff; /* cor da barra */
  --accent: #f8cb2e; /* cor principal (ícone ativo + botão) */
  --muted: #9aa0b4; /* ícone inativo */
  --radius: 18px; /* borda da barra */
  --nav-height: 64px; /* altura da barra (visível) */
  --plus-size: 72px; /* diâmetro do botão + */
  --bottom-gap: 20px; /* espaço entre a barra e a borda inferior da viewport */
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: #000000;
}

.nav-tabs h5 {
  color: #000000;
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: #000000;
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: #000a42;
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
}

.video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* fica atrás do conteúdo */
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);

  padding: 4px 0; /* faixa mais fina */
  text-align: center;
}

.typing-text {
  font-weight: bold;
  color: #222;
  font-size: 1.1rem;
  white-space: nowrap;
  border-right: 2px solid #222; /* cursor piscando */
  display: inline-block;
  overflow: hidden;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background: rgba(163, 163, 163, 0.425); /* fundo semi-transparente */
  backdrop-filter: blur(10px); /* desfoca o que está atrás */
  -webkit-backdrop-filter: blur(10px); /* compatibilidade Safari */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* opcional: borda sutil */
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #cecece;
}
/* 
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
} */

.mobile-bottom-nav {
  display: none; /* padrão: escondido em desktop */
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url("../images/Arena-PE-2.png");
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.26);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

.color {
  color: #000000;
}

/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url("../images/backfundo1.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}
.coolor {
  color: #f7f7f7;
}
.ticket-form {
  /* fundo vidro fosco */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border-radius: var(--border-radius-medium);
  padding: 50px;

  /* borda animada em degradê */
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.ticket-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    270deg,
    #ff7eb3,
    #ff758c,
    #42e695,
    #3bb2b8,
    #ff7eb3
  );
  background-size: 400% 400%;
  animation: borderFlow 12s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: rgba(248, 203, 46, 0.3); /* amarelo suave semi-transparente */
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* centraliza texto */
}

.artists-hover p {
  display: flex;
  flex-wrap: wrap; /* permite quebrar para telas muito pequenas */
  justify-content: center; /* centraliza os itens horizontalmente */
  align-items: center;
  gap: 10px; /* espaço entre label e texto */
}

.artists-hover p strong {
  color: var(--white-color);
  min-width: 70px; /* mantém uma largura mínima */
}

.artists-hover p a {
  color: var(--white-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
  width: 50%; /* linha menor, centralizada */
  border-top: 1px solid rgba(255,255,255,0.5);
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url("../images/backfundo1.png");
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url("../images/artists/Daniel\ kOLENDA.png");
}

.schedule-table .rock-background-image {
  background-image: url("../images/artists/isaias\ SAAD.png");
}

.schedule-table .country-background-image {
  background-image: url("../images/artists/sarah\ FARIAS.png");
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/

.contact-section {
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255),
    rgba(255, 215, 0, 0.15)
  );
  backdrop-filter: blur(6px);
  padding: 60px 0;
  border-radius: 16px;
}

.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: #0b0b0d;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);

  /* background-image: url("../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg");
  background-repeat: no-repeat; */
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================
   Desktop enhancement styles
   Apply only for screens >= 992px
   New class: .artists-desktop-enhanced
   ============================ */

@media (min-width: 992px) {
  .artists-desktop-enhanced .row.g-4 {
    --gap: 150px;
    gap: var(--gap);
  }

  .artists-desktop-enhanced .artists-thumb {
    position: relative;
    overflow: visible; /* we show shadows outside */
    border-radius: 18px;
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 520ms cubic-bezier(0.2, 0.9, 0.25, 1),
      box-shadow 420ms;
    will-change: transform;
    cursor: pointer;
    margin: 10px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(0, 0, 0, 0.02)
    );
    padding: 8px;
    box-shadow: 0 12px 30px rgba(10, 10, 20, 0.18),
      0 2px 6px rgba(10, 10, 20, 0.06);
    transition-property: transform, box-shadow, filter;
  }

  /* inner wrap gives 3D layers */
  .artists-desktop-enhanced .artists-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    transform-origin: center center;
    will-change: transform;
    transition: transform 600ms cubic-bezier(0.2, 0.9, 0.22, 1);
    box-shadow: inset 0 -24px 40px rgba(0, 0, 0, 0.25);
    height: 320px;
  }

  .artists-desktop-enhanced .artists-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 850ms cubic-bezier(0.22, 0.9, 0.25, 1);
    will-change: transform, filter;
    backface-visibility: hidden;
    user-select: none;
    pointer-events: none;
  }

  /* fancy overlay */
  .artists-desktop-enhanced .artists-hover {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 12px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.48),
      rgba(0, 0, 0, 0.65)
    );
    color: #fff;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 420ms;
    backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    z-index: 6;
  }
  .artists-desktop-enhanced .artists-hover p {
    margin: 6px 0;
    color: #f3f3f3;
  }
  .artists-desktop-enhanced .artists-hover a {
    color: #ffe7b4;
    text-decoration: underline;
  }

  /* decorative halo */
  .artists-desktop-enhanced .artists-thumb::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 22px;
    pointer-events: none;
    background: radial-gradient(
        600px 200px at 10% 0%,
        rgba(255, 200, 120, 0.06),
        transparent 8%
      ),
      radial-gradient(
        400px 160px at 90% 100%,
        rgba(120, 200, 255, 0.03),
        transparent 12%
      );
    z-index: 0;
    transition: opacity 400ms;
  }

  /* hovered state applied by JS */
  .artists-desktop-enhanced .artists-thumb.is-hovered {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 60px rgba(12, 12, 30, 0.3),
      0 6px 18px rgba(12, 12, 30, 0.12);
  }

  .artists-desktop-enhanced .artists-thumb.is-hovered .artists-image {
    transform: scale(1.09) translateZ(40px);
    filter: saturate(1.06) contrast(1.02);
  }
  .artists-desktop-enhanced .artists-thumb.is-hovered .artists-image-wrap {
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  }
  .artists-desktop-enhanced .artists-thumb.is-hovered .artists-hover {
    transform: translateY(0);
    opacity: 1;
  }

  /* small highlight ribbon top-left */
  .artists-desktop-enhanced .artists-thumb .ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 9;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transform: translateZ(30px);
  }

  /* entrance animation (staggered) */
  .artists-desktop-enhanced .artists-thumb[data-animated="false"] {
    opacity: 0;
    transform: translateY(24px) scale(0.994);
  }
  .artists-desktop-enhanced .artists-thumb[data-animated="true"] {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 720ms cubic-bezier(0.22, 0.9, 0.25, 1), opacity 620ms;
  }

  /* accessible focus */
  .artists-desktop-enhanced .artists-thumb:focus-within,
  .artists-desktop-enhanced .artists-thumb:focus {
    outline: 3px solid rgba(255, 215, 120, 0.12);
    box-shadow: 0 18px 48px rgba(10, 10, 30, 0.25);
  }

  /* lightbox modal */
  .ads-modal {
    --bg: rgba(6, 6, 10, 0.76);
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 9999;
    background: var(--bg);
    animation: ads-fade-in 0.25s ease;
  }
  @keyframes ads-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .ads-modal .panel {
    width: min(1100px, 92%);
    max-height: 88vh;
    overflow: auto;
    border-radius: 14px;
    background: linear-gradient(180deg, #0b0b0d, #0f1113);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 18px;
  }
  .ads-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .ads-modal .meta {
    color: #f7f7f7;
    padding: 12px;
  }
  .ads-modal .meta h3 {
    margin: 6px 0 12px;
    font-size: 22px;
  }
  .ads-modal .meta p {
    margin: 8px 0;
    color: #d7d7d7;
  }
  .ads-modal .close-btn {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
  }
  


  /* ensure grid columns shrink gracefully */
  @media (max-width: 1150px) {
    .ads-modal .panel {
      grid-template-columns: 1fr 320px;
    }
  }
  @media (max-width: 980px) {
    /* fallback: if screen becomes smaller than our desktop breakpoint, hide enhancements */
    .artists-desktop-enhanced .artists-thumb,
    .artists-desktop-enhanced .artists-hover,
    .artists-desktop-enhanced .ribbon {
      all: initial;
    }
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background: transparent;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* Mostrar a nav para telas até 900px (mobile + tablet) */
@media (max-width: 900px) {
  .mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(
      var(--bottom-gap) + env(safe-area-inset-bottom)
    ); /* distância do rodapé (espaçinho) */
    z-index: 9999;
    width: min(
      720px,
      calc(100% - 32px)
    ); /* não ocupa 100% para ter margem nas laterais */
    pointer-events: auto;
  }

  /* Shell: container principal da barra */
  .nav-shell {
    position: relative;
    background: var(--nav-bg);
    border-radius: var(--radius);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    /* justify-content: space-between;
    padding: 0 18px; */
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    overflow: visible; /* overflow visível para o recorte/pseudoelementos */
    transition: transform 0.22s e ase, box-shadow 0.22s ease;
  }

  /* Pseudoelemento que cria o 'recorte' (cutout) - círculo do mesmo background do body.
       Ele fica SOBRE a barra, dando a sensação de que a barra foi recortada. */
  .nav-shell::before {
    content: "";
    position: absolute;
    top: calc(
      -1 * (var(--plus-size) / 2) + 6px
    ); /* ajusta vertical para encaixe */
    left: 50%;
    transform: translateX(-50%);
    width: calc(
      var(--plus-size) + 6px
    ); /* ligeiramente maior que o botão para um recorte suave */
    height: calc(var(--plus-size) + 6px);
    background: var(--body-bg);
    border-radius: 50%;
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.06),
      /* sombra externa para profundidade */ inset 0 -10px 18px rgba(0, 0, 0, 0.02); /* leve sombreado interno para realçar o contorno */
    z-index: 2; /* fica acima do fundo da barra, abaixo dos itens interativos */
    pointer-events: none; /* não atrapalha cliques */
  }

  /* pequenos detalhes: contorno fino ao redor do recorte (linha sutil) */
  .nav-shell::after {
    content: "";
    position: absolute;
    top: calc(-1 * (var(--plus-size) / 2) + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--plus-size) + 10px);
    height: calc(var(--plus-size) + 10px);
    border-radius: 50%;
    border: 1px solid rgba(71, 81, 248, 0.08); /* sutil linha que segue o recorte */
    z-index: 2;
    pointer-events: none;
  }

  /* Lista de itens (espaçamento adequado considerando o recorte central) */
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 18px;
    width: 100%;
    z-index: 3; /* acima do recorte */
  }

  /* Itens normais (botões) */
  .nav-item {
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.18s ease, transform 0.14s ease;
    -webkit-tap-highlight-color: transparent;
  }

  /* estilo quando ativo (apenas cor muda) */
  .nav-item.active {
    color: var(--accent);
    transform: translateY(-3px);
  }

  /* foco acessível */
  .nav-item:focus {
    outline: 2px solid rgba(71, 81, 248, 0.16);
    outline-offset: 4px;
  }

  /* Ícones (SVG) usam stroke/currentColor */
  .nav-item svg {
    width: 100%; /* ocupa todo o espaço do botão */
    max-width: 28px; /* limita tamanho máximo */
    height: auto; /* mantém proporção */
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    transition: stroke 0.18s ease, transform 0.18s ease;
  }

  /* + central - link (leva a outra página) */
  .plus-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(-1 * (var(--plus-size) / 2));
    z-index: 4;
    display: grid;
    place-items: center;
    width: var(--plus-size);
    height: var(--plus-size);
    border-radius: 50%;

    /* Degradê animado */
    background: linear-gradient(
      270deg,
      rgb(248, 98, 71),
      rgb(59, 72, 224),
      rgb(248, 98, 71)
    );
    background-size: 600% 600%;
    animation: gradientMove 6s ease infinite;

    box-shadow: 0 14px 30px rgba(71, 81, 248, 0.24),
      0 4px 8px rgba(2, 6, 23, 0.12);
    transform-origin: center;
    transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    border: 4px solid rgba(255, 255, 255, 0.9);
    text-decoration: none;
  }

  .plus-wrap:active {
    transform: translateX(-50%) scale(0.98);
  }

  .plus-wrap .plus-icon {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    user-select: none;
  }

  /* Keyframes para animar o degradê */
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  /* separação visual dos grupos (opcional) */
  .left-group,
  .right-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* adaptativo: reduz ícones em telas muito pequenas */
  @media (max-width: 360px) {
    :root {
      --plus-size: 64px;
      --nav-height: 60px;
      --radius: 16px;
    }
    .nav-item svg {
      max-width: 20px;
      height: auto;
    }
  }
} /* fim media <=900px */

/* ============ escondemos a nav em telas maiores ============ */
@media (min-width: 901px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}
/* 
LOGOS */

/* Define tamanho máximo e mantém proporção */
.logo {
  height: 70px; /* altura do logotipo */
  width: auto; /* largura proporcional */
}

/* Para telas pequenas (responsividade) */
@media (max-width: 768px) {
  .logo {
    height: 40px; /* reduz altura em dispositivos móveis */
  }
}

.hero-logo {
  max-width: 600px; /* define largura máxima no desktop */
  width: 80%; /* ocupa 80% do container em telas menores */
  height: auto; /* mantém proporção */
}

/* Ajuste para telas bem pequenas */
@media (max-width: 576px) {
  .hero-logo {
    max-width: 200px;
  }
}

/* Container da hero section */
.heero-section {
  display: flex;
  flex-direction: column; /* empilha os elementos verticalmente */
  align-items: center; /* centraliza horizontalmente */
  justify-content: center; /* centraliza verticalmente se necessário */
  text-align: center; /* garante que o texto fique centralizado */
  gap: 1rem; /* espaço entre os elementos */
}

/* Logo grande */
.heero-logo {
  max-width: 600px;
  width: 80%;
  height: auto;
}

/* Subtítulo */
.heero-subtitle {
  font-size: 1rem;
  color: #fff;
}

/* Título principal */
.heero-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Botão */
.heero-btn {
  margin-top: 0.5rem;
}

.ticket-btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  background: linear-gradient(
    45deg,
    #b8860b,
    #ffd700,
    #daa520,
    #ffd700,
    #b8860b
  );
  background-size: 300% 300%;
  animation: goldenShine 6s linear infinite;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  white-space: nowrap;
}

/* formato de ingresso (cortes laterais) */
.ticket-btn::before,
.ticket-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #111;
  border-radius: 50%;
  z-index: 2;
}

.ticket-btn::before {
  left: -10px;
}

.ticket-btn::after {
  right: -10px;
  animation: shineMove 3s infinite;
}

/* Hover com efeito 3D */
.ticket-btn:hover {
  transform: scale(1.05);
}

/* animação degrade dourado */
@keyframes goldenShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* brilho lateral */
@keyframes shineMove {
  0% {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: inset 200px 0 50px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0);
  }
}

.btn-idosos {
  height: 5rem;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
}

/* ==================== */
/* RESPONSIVIDADE */
/* ==================== */

/* Tablets (até 992px) */
@media (max-width: 992px) {
  .ticket-btn {
    padding: 0.65rem 1.8rem;
    font-size: 1.1rem;
  }
  .ticket-btn::before,
  .ticket-btn::after {
    width: 16px;
    height: 16px;
  }
}

/* Smartphones médios (até 768px) */
@media (max-width: 768px) {
  .ticket-btn {
    padding: 0.55rem 1.5rem;
    font-size: 1rem;
  }
  .ticket-btn::before,
  .ticket-btn::after {
    width: 14px;
    height: 14px;
    left: -7px;
    right: -7px;
  }
}

/* Smartphones pequenos (até 480px) */
@media (max-width: 480px) {
  .ticket-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .ticket-btn::before,
  .ticket-btn::after {
    width: 12px;
    height: 12px;
    left: -6px;
    right: -6px;
  }
}

/* ========== GLOBAL RESPONSIVE FIXES ========== */

/* Modal sempre centralizada em qualquer tela */
.ads-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(6, 6, 10, 0.82);
  padding: 16px; /* espaço nas laterais em telas pequenas */
  overflow-y: auto; /* se for muito conteúdo */
}

/* Painel principal */
.ads-modal .panel {
  width: min(1100px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 14px;
  background: linear-gradient(180deg, #0b0b0d, #0f1113);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  position: relative;
}

/* Imagem */
.ads-modal img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 10px;
}

/* Conteúdo lateral */
.ads-modal .meta {
  color: #f7f7f7;
  padding: 12px;
}

/* Botão fechar */
.ads-modal .close-btn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}

/* ========== BREAKPOINTS ========== */

/* Tablets (até 1150px) */
@media (max-width: 1150px) {
  .ads-modal .panel {
    grid-template-columns: 1fr 300px;
  }
}

/* Celulares grandes (até 768px) */
@media (max-width: 768px) {
  .ads-modal .panel {
    grid-template-columns: 1fr; /* empilha tudo */
    max-height: 88vh;
  }
  .ads-modal img {
    max-height: 40vh;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .ads-modal {
    padding: 10px;
  }
  .ads-modal .panel {
    padding: 14px;
  }
  .ads-modal .meta h3 {
    font-size: 18px;
  }
  .ads-modal .meta p {
    font-size: 14px;
  }
  .ads-modal .close-btn {
    font-size: 18px;
  }
}

/* ====== CARROSSEL HORIZONTAL (desktop) ====== */
@media (min-width: 992px) {
  /* make the row act like a horizontal track */
  .artists-desktop-enhanced .row.g-4 {
    --gap: 36px; /* reduzimos o gap para o carrossel */
    display: flex !important;
    gap: var(--gap);
    flex-wrap: nowrap;
    align-items: stretch;
  }

  /* each column becomes an inline slide */
  .artists-desktop-enhanced .row.g-4 > [class*="col-"] {
    flex: 0 0 300px;
    max-width: 300px;
  }

  /* aumenta um pouco a altura das imagens (como pediu) */
  .artists-desktop-enhanced .artists-image-wrap {
    height: 340px;
  }

  /* grayscale por padrão; volta à cor em hover / focus / is-hovered */
  .artists-desktop-enhanced .artists-image {
    filter: grayscale(100%) contrast(0.98) brightness(0.98);
    transition: filter 420ms cubic-bezier(0.2, 0.9, 0.25, 1),
      transform 420ms cubic-bezier(0.22, 0.9, 0.25, 1);
    will-change: filter, transform;
  }
  .artists-desktop-enhanced .artists-thumb:hover .artists-image,
  .artists-desktop-enhanced .artists-thumb.is-hovered .artists-image,
  .artists-desktop-enhanced .artists-thumb:focus-within .artists-image {
    filter: none;
  }

  /* wrapper criado dinamicamente pelo JS para controlar o overflow/scroll */
  .artists-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  /* pequenas melhorias visuais nas clones (não necessárias, só garante consistência)
  .artists-desktop-enhanced .row.g-4 .cloned {
    /* clones ficam visualmente iguais; deixei sem pointer-events none para que sejam interativos */
  /* } */
}

/* fallback: em telas menores as regras originais do seu CSS já voltam a valer */

.logo-wrapper {
  position: relative;
  display: inline-block;
}

/* imagem do logo */
.logo {
  display: block;
  width: 120px; /* ajuste conforme necessário */
  height: auto;
  position: relative;
  z-index: 1;
}

.logoo {
  width: 150px;
}

/* efeito shine recortado pela transparência da PNG */
.shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  /* gradiente que será animado */
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );

  /* deixa o gradiente "grande" para poder deslocar e parecer que passa */
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: -100% 0;

  /* === MÁSCARA (IMPORTANTE: caminho relativo ao CSS) === */
  /* ajuste o caminho abaixo se seu CSS estiver em outra pasta */
  -webkit-mask-image: url("../images/LOGO-REVIVE.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("../images/LOGO-REVIVE.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  /* animação */
  animation: shineMove 1.8s linear infinite;
}

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

.heero-logo {
  animation: pulseLogo 4s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05); /* aumenta só 5% */
    opacity: 0.92; /* leve suavizada */
  }
}

/* Wrapper geral */
.contador-wrapper {
  background: transparent;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

/* Container */
.contador-container {
  max-width: 600px;
  margin: 0 auto;
  opacity: 100%;
  color: #ffffff;
}

/* Título */
.contador-titulo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Caixa de vidro */
.contador-caixa {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 25px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cada bloco de tempo */
.contador-tempo {
  min-width: 60px;
  text-align: center;
}

/* Números */
.contador-numero {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

/* Labels */
.contador-label {
  display: block;
  font-size: 14px;
  opacity: 0.85;
  color: #fff;
}

/* Subtítulo */
.contador-subtitulo {
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contador-caixaa {
  padding: 2px 1px; /* padding menor */
  min-width: 10px; /* largura mínima menor */
}

.contador-numeroo {
  font-size: 1.2rem; /* diminui os números */
}

.contador-labell {
  font-size: 0.7rem; /* diminui as legendas (Dias, Horas, etc) */
}

.contador-containerr {
  max-width: 400px;
  margin: 0 auto; /* centraliza horizontalmente */
  text-align: center; /* centraliza o conteúdo interno */
}

/* Responsivo */
@media (max-width: 768px) {
  .contador-caixa {
    gap: 2px;
    padding: 10px;
  }
  .contador-numero {
    font-size: 2rem;
  }
  .contador-label {
    font-size: 8px;
  }
}

.central {
  display: flex;
  justify-content: center; /* centraliza horizontal */
  align-items: center; /* centraliza vertical (caso a linha seja alta) */
  width: 100%; /* ocupa toda a largura da linha */
  text-align: center;
}

@media (max-width: 1050px) {
  .footer-mobile-center {
    flex-direction: column !important; /* empilha colunas */
    align-items: center !important; /* centraliza horizontal */
    text-align: center;
  }

  .footer-mobile-center .col-lg-6 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 10px; /* espaço entre logo e ícones */
  }

  .footer-mobile-center .social-icon {
    justify-content: center !important;
  }
}


/* Tela de carregamento */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* fundo semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animado */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f8cb2e; /* cor amarela, pode usar a cor do site */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

  .espacobtn {
  margin-right: 18px;
}

/* Centraliza conteúdo em telas pequenas */
@media (max-width: 768px) {
  .responsive-center {
    flex-direction: column !important; /* coloca ícone e texto em coluna */
    align-items: center; /* centraliza horizontalmente */
    text-align: center; /* centraliza texto */
  }

  .responsive-center .ms-4 {
    margin-left: 0 !important; /* remove a margem lateral do Bootstrap */
    margin-top: 10px; /* adiciona espaçamento entre ícone e texto */
  }
}



/* ===== Botão Kids - versão full-width + ícone à direita ===== */
:root {
  --kids-grad-a: #47daff;
  --kids-grad-b: #ff6bcb;
  --kids-text: #ffffff;
  --kids-accent: #fff3a6;
}

/* Força o botão a preencher o container pai (use onde houver col-12 ou similar) */
.btn-kids--full {
  display: flex;
  /* layout flex para controlar posicionamento */
  align-items: center;
  justify-content: center;
  /* texto centralizado */
  width: 50%;
  height: 4rem;
  /* ocupa todo o comprimento disponível */
  box-sizing: border-box;
  padding: 14px 22px;
  gap: 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--kids-text);
  background: linear-gradient(135deg, var(--kids-grad-a) 0%, var(--kids-grad-b) 100%);
  /* box-shadow:
    0 10px 28px rgba(255, 107, 203, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.10); */
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(.2, .9, .3, 1), box-shadow 220ms ease, filter 220ms ease;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}

/* Texto centralizado e responsivo
   Faz o texto ocupar o espaço restante garantindo centralização visual,
   mesmo com o badge à direita */
.btn-kids--full .kids-text {

  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  /* permite o texto crescer e ficar centralizado */
  text-align: center;
  line-height: 1;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--kids-text);
}

/* Destaque 'Kids' */
.btn-kids--full .kids-text strong {

  font-size: 18px;
  font-weight: 800;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}



/* Hover / foco — sutil elevação e destaque */
.btn-kids--full:hover,
.btn-kids--full:focus {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 44px rgba(255, 107, 203, 0.22),
    0 6px 12px rgba(0, 0, 0, 0.12);
  outline: none;
}

/* Pulso suave quando não está em hover, para chamar atenção */
@keyframes kids-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

.btn-kids--full:where(:not(:hover)) {
  animation: kids-pulse 5.6s ease-in-out infinite;
  will-change: transform;
}

/* Confetes (pseudo-elementos decorativos) adaptados para full width */
.btn-kids--full::before,
.btn-kids--full::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
  filter: saturate(1.05);
  mix-blend-mode: screen;
}

/* pequeno confete superior-esquerdo */
.btn-kids--full::before {
  width: 12px;
  height: 12px;
  left: 8px;
  top: -8px;
  background: radial-gradient(circle at 30% 30%, var(--kids-accent) 0%, transparent 45%),
    linear-gradient(45deg, #ffd86b 0%, #ff9fd9 100%);
  border-radius: 3px;
  transform: rotate(18deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* pequeno confete inferior-direito */
.btn-kids--full::after {
  width: 10px;
  height: 10px;
  right: 8px;
  bottom: -8px;
  background: radial-gradient(circle at 30% 30%, var(--kids-accent) 0%, transparent 45%),
    linear-gradient(45deg, #9fe6ff 0%, #8cffb2 100%);
  border-radius: 3px;
  transform: rotate(-22deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* foco acessível */
.btn-kids--full:focus-visible {
  box-shadow:
    0 8px 26px rgba(255, 107, 203, 0.18),
    0 0 0 5px rgba(255, 183, 224, 0.14);
}

/* responsividade: reduz paddings e tamanhos em telas pequenas */
@media (max-width: 480px) {
  .btn-kids--full {
    padding: 10px 12px;
    gap: 8px;
  }

  .btn-kids--full .kids-text {
    font-size: 15px;
  }

  .btn-kids--full .kids-text strong {
    font-size: 16px;
  }

  .btn-kids--full .kids-badge {
    width: 36px;
    height: 36px;
  }
}

.centrall {
  display: flex;
  flex-direction: column;
  align-items: center;
}


