/* ================================================
   CAMAROTE VIVA BAHIA - CSS Styles
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --color-teal: #000;
  --color-teal-light: hsl(165, 35%, 45%);
  --color-purple: hsl(248, 38%, 39%);
  --color-purple-light: hsl(270, 30%, 65%);
  --color-pink: #ffaad1;
  --color-pink-light: hsl(340, 82%, 75%);
  --color-lime: hsl(78, 45%, 55%);
  --color-lime-light: hsl(78, 60%, 70%);
  --color-orange: #ffa800;
  --color-coral: hsl(5, 55%, 50%);
  --color-yellow: hsl(52, 95%, 78%);
  --color-yellow-light: hsl(52, 95%, 88%);
  --color-blue: #4a3e8a;
  --color-green: #89e57c;
  
  /* Spacing */
  --container-max: 1400px;
  --container-padding: 1rem;
  
  /* Typography */
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: #1a1a1a;
  background: #000;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 768px) {
  .container {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}

/* ---- Utility Classes ---- */
.text-pink { color: var(--color-pink); }
.text-purple { color: var(--color-purple); }
.text-lime { color: var(--color-lime); }
.text-teal { color: var(--color-teal); }
.text-blue { color: var(--color-blue); }

.bg-pink { background-color: var(--color-pink); }
.bg-purple { background-color: var(--color-purple); }
.bg-lime { background-color: var(--color-lime); }

/* Patterns */
.tropical-pattern {
}

.lines-pattern {
}

.highlight-green {
  background: linear-gradient(transparent 60%, hsla(78, 60%, 70%, 0.4) 60%);
  display: inline;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  display: inline-block;
}

.section-underline {
  width: 8rem;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-normal);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-pink);
}

.nav-desktop {
  margin: auto;
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.nav-desktop a:hover {
  color: var(--color-pink);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  margin-top: 0.5rem;
  color: #fff;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--color-pink);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-green);
  color: #fff;
  padding: 0.5rem 2.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter var(--transition-fast);
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
}

.btn-whatsapp span {
  /* display: none; */
}

@media (min-width: 640px) {
  .btn-whatsapp span {
    display: inline;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.5rem;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.active .icon-menu {
  display: none;
}

.menu-toggle.active .icon-close {
  display: block;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--color-pink);
}

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(248, 38%, 39%, 0.6),
    transparent 50%,
    hsla(248, 38%, 39%, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sponsors-row span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sponsors-row {
    gap: 2rem;
  }
  .sponsors-row span {
    font-size: 0.875rem;
  }
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-viva-bahia {
  margin: auto;
  width: 15%;
}

.hero-logo h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-viva {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-bahia {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-pink);
  line-height: 1;
}

.hero-tagline {
  color: var(--color-lime);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

.hero-date {
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================================
   NOSSO ESPAÇO SECTION
   ================================================ */
.nosso-espaco {
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: url("/static/images/bg-2.png") center/cover no-repeat;
}

.nosso-espaco-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nosso-espaco-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nosso-espaco-text {
  text-align: justify;
  color: #fff;
}

.nosso-espaco-text h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.nosso-espaco-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
}

.nosso-espaco-description strong {
  color: var(--color-lime);
}

.services-box {
  padding: 2rem;
}

.services-box h3 {
  color: var(--color-lime);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsla(78, 45%, 55%, 0.2);
  border: 1px solid var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: background var(--transition-fast);
}

.service-item:hover .service-icon {
  background: hsla(78, 45%, 55%, 0.3);
}

.service-item span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ================================================
   ESTRUTURA SECTION
   ================================================ */
.estrutura {
  background: url('/static/images/bg-3.png') center/cover no-repeat;;
  padding: 5rem 0;
}

.estrutura-content {
  position: relative;
}

.estrutura-image {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.estrutura-image img {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-pink);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .estrutura-image img {
    width: 20rem;
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .estrutura-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    z-index: 10;
  }
  
  .estrutura-image img {
    width: 30rem;
    height: 30rem;
  }
}

.estrutura-cards {
  display: grid;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .estrutura-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .estrutura-cards {
    gap: 2rem 32rem;
  }
}

.estrutura-card {
  background: hsla(248, 38%, 39%, 0.6);
  border: 2px solid var(--color-pink);
  border-radius: 0.75rem;
  padding: 1rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast);


  width: 100%;
  max-width: 200px;       /* CONTROLA O TAMANHO */
  aspect-ratio: 1 / 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.estrutura-card:hover {
  background: hsla(248, 38%, 39%, 0.8);
}

.estrutura-card h3 {
  color: #fff;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.estrutura-card p {
  color: var(--color-purple-light);
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .estrutura-card.left {
    text-align: center;
    margin-left: auto;
    margin-right: 5rem;
  }
  
  .estrutura-card.right {
    text-align: center;
    margin-left: 5rem;
  }
}


/* ================================================
   DATAS DO EVENTO
   ================================================ */
.datas-banner {
  background: var(--color-orange);
  padding: 1.5rem 0;
}

.datas-evento {
  background: url(/static/images/bg-4.jpg) center / cover no-repeat;
}

.datas-banner p {
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.video-section {
  position: relative;
  padding: 5rem 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: hsla(5, 55%, 50%, 0.8);
}

.video-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.video-content h3 {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.video-placeholder {
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.play-button {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-placeholder p {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ================================================
   ATRAÇÕES SECTION
   ================================================ */
.atracoes {
  background: url("/static/images/bg-5.png") center/cover no-repeat;
  padding: 5rem 0;
}

.atracoes-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
  gap: 10%;
}

@media (min-width: 1024px) {
  .atracoes-header {
    flex-direction: row;
    text-align: left;
  }
}

.atracoes-title {
  flex: 0 0 45%;
  align-self: flex-start;
}

.atracoes-title h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.atracoes-title h5 {
  color: var(--color-teal);
  max-width: 36rem;
  font-size: 20px;
}

.sun-illustration {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sun-illustration {
    width: 30rem;
    height: 30rem;
    flex: 0 0 45%;
  }
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  padding: 0 0;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease-out;
}

.artist-card {
  flex: 0 0 calc(100% - 0.5rem);
  background: var(--color-blue);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.artist-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .artist-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .artist-card {
    flex: 0 0 calc(25% - 0.75rem);
  }
}

.artist-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-purple), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.artist-info {
  padding: 1rem;
  text-align: center;
}

.artist-info h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.artist-info p {
  color: var(--color-yellow-light);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  /* background: var(--color-blue); */
  background: #ee7a5e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition-fast);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-purple);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn.prev {
  left: -3.5rem;
}

.carousel-btn.next {
  right: -3.5rem;
}

.atracoes-cta {
  text-align: center;
  margin-top: 3rem;
}

.onde-ficar-cta {
  text-align: left;
  margin-top: 3rem;
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: background var(--transition-fast);
}

.btn-green {
  background: #9cc53b;
  color: #1c7158;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: background var(--transition-fast);
}

.btn-primary:hover {
  background: var(--color-purple);
}

.btn-green:hover {
  background: var(--color-green);
}

/* ================================================
   LOCALIZAÇÃO SECTION
   ================================================ */
.localizacao {
  background: url("/static/images/bg-6.png") center/cover no-repeat;
  padding: 5rem 0;
}

.abada {
  background: url("/static/images/bg-8.png") center/cover no-repeat;
  padding: 5rem 0;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.m-auto {
  margin: auto;
}

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

.img-dates {
  margin-left: auto;
}

.localizacao-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .localizacao-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.map-container iframe {
  display: block;
}

.localizacao-info {
  background: #005e5f;
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
}

.localizacao-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-lime);
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-item p {
  opacity: 0.9;
  line-height: 1.6;
}

/* ================================================
   ONDE FICAR SECTION
   ================================================ */
.onde-ficar {
  background: url("/static/images/bg-7.png") center/cover no-repeat;
  padding: 5rem 0;
  display: flex;
}

.title-onde-ficar {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.hotel-text {
  color: #99c664;
}

.onde-ficar-div1 {

}

.onde-ficar-div2 {

}

.image-onde-ficar-div {
  margin: 1rem 0;
  border: 3px solid #fff;
}

.image-sponsors {
  max-width: 50%;
  margin: auto;
  margin-bottom: 2rem;
}

.image-onde-ficar {
  width: 100%;
}

.onde-ficar-text {
  margin-top: 1rem;
  text-align: justify;
}

.onde-ficar-content {
  margin: 0 auto;
  display: grid;
  align-items: stretch;
  gap: 10%;
}

@media (min-width: 1024px) {
  .onde-ficar-content {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.hotel-highlight {
  text-align: center;
  margin-bottom: 2rem;
}

.hotel-highlight p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.hotel-highlight h3 {
  color: var(--color-lime);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.hotel-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.hotel-images {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hotel-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hotel-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--color-pink);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hotel-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.hotel-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hotel-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  text-align: center;
  color: #fff;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.feature h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.hotel-cta {
  text-align: center;
}

.btn-reserve {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: filter var(--transition-fast);
}

.btn-reserve:hover {
  filter: brightness(1.1);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--color-purple);
  padding: 4rem 0;
}

.sponsors-title {
  text-align: center;
  color: var(--color-purple-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sponsors-grid {
    gap: 2.5rem;
  }
}

.sponsors-grid span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.sponsors-grid span:hover {
  color: #fff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo span {
  color: var(--color-pink);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--color-pink);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   SCROLL ANIMATIONS (AOS alternative)
   ================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.color-black {
  color: #000;
}

.vh100 {
  min-height: 100vh;
}

/* Garanta que a section vire o "referencial" do absolute */
.estrutura {
  position: relative;
}

/* No desktop: a imagem fica presa no centro EXATO da section (o mesmo centro do background) */
@media (min-width: 1024px) {
  /* remove o referencial anterior (estrutura-content) */
  .estrutura-content {
    position: static;
  }

  .estrutura-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
  }
}

.text-black {
  color: #000;
}

.botao-programacao {
  max-width: 30%;
}

.text-white {
  color: #fff;
}

@media (max-width: 767px) {
  .logo-viva-bahia {
    width: 60%;
  }
  .nav-desktop { display: none; } /* já é */
  .header-actions { margin-left: auto; } /* cola na direita */
  .carousel-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  /* essa classe está forçando 100vh e pode dar sensação de "sobrepor" */
  #hospedagem.vh100 {
    min-height: auto;   /* ou remove a classe no HTML no mobile via JS, mas isso resolve */
  }

  .onde-ficar-content {
    display: grid;
    grid-template-columns: 1fr;  /* 1 coluna no mobile */
    gap: 1.5rem;                 /* gap real, sem % */
  }
  .botao-programacao {
    max-width: 100%;
  }
  .sun-illustration {
    display: none;
  }

  .botao-programacao {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* wrapper ocupa a hero inteira */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* vídeo ocupa o wrapper */
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* evita “inline gap”/comportamento estranho */
}
.hero-content {
  position: relative;
  z-index: 2;
}