:root {
  --bg-color: #fdfbf7;
  --text-color: #2c2520;
  --accent-color: #c45b2d;
  --dark-bg: #1a1512;
  --light-text: #f9f6f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* --- NAVBAR & LANGUAGE SWITCHER --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 21, 18, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.lang-switch {
  color: #888;
}

.lang-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: 0.3s;
}

.lang-btn:hover {
  color: var(--light-text);
}

.lang-btn.active {
  color: var(--light-text);
  font-weight: bold;
}

/* --- AUDIO BUTTON --- */
.audio-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-btn:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

/* --- HEADER --- */
header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark-bg);
  background-image: url("resources/584554594_18545334436063132_9210407318025068960_n..jpg");
  background-size: cover;
  background-position: center 20%;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.big-name {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: 13vw;
  /* Ajuste de transparência e legibilidade */
  color: rgba(255, 255, 255, 0.25);
  mix-blend-mode: normal; /* Removido o overlay para não sumir no fundo escuro */
  text-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4); /* Sombra suave para destacar */
  white-space: nowrap;
  line-height: 0.8;
  z-index: 1;
}

.hero-socials {
  position: absolute;
  bottom: 15%;
  z-index: 2;
  display: flex;
  gap: 40px;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 40px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-socials a {
  color: var(--light-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero-socials a:hover {
  color: var(--accent-color);
}

/* --- SECTIONS --- */
section {
  padding: 100px 10vw;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- BIO --- */
.bio-container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.bio-img {
  flex: 1;
  background-image: url("resources/527470973_18522937336063132_6092832184758586371_n..jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.bio-text {
  flex: 1;
  font-size: 1.1rem;
}

/* --- CARROSSEL NOTÍCIAS --- */
.data-destaque {
  background-color: rgba(221, 2, 2, 0.868);
  color: white;
  font-weight: bold;
  padding: 2px 4px; /* pequeno espaçamento interno para melhor aparência */
  border-radius: 4px; /* opcional: cantos arredondados */
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.news-card {
  min-width: 350px;
  background: #fff;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.news-card img.pos-top {
  object-position: top;
}
.news-content {
  padding: 20px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  color: var(--accent-color);
}
.btn-prev {
  left: -25px;
}
.btn-next {
  right: -25px;
}

/* --- MAILING LIST (NOVIDADES) --- */
#mailing {
  text-align: center;
  background-color: #f0e9df;
}
.mailing-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.mailing-form input {
  flex: 1;
  padding: 15px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-family: inherit;
  font-size: 1rem;
}
.mailing-form button {
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  background-color: var(--text-color);
  color: var(--light-text);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.mailing-form button:hover {
  background-color: var(--accent-color);
}

/* --- PRESS KIT --- */
#presskit {
  background-color: var(--dark-bg);
  color: var(--light-text);
  text-align: center;
}
.press-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.press-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  width: 250px;
  transition: 0.3s;
}
.press-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.press-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.btn-download {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--light-text);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-ticket {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--light-text);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
}
.btn-ticket:hover {
  background: #a3461e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-listen {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--light-text);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
}
.btn-listen:hover {
  background: #189945;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- CONTRATE --- */
#contrate {
  text-align: center;
}
.contact-info {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  margin-top: 20px;
}
.btn-whatsapp:hover {
  background: #1ebc59;
  transform: scale(1.05);
}
.email {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
}
.fa-envelope {
  text-decoration: none;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 30px;
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-socials {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .bio-container {
    flex-direction: column;
  }
  .big-name {
    font-size: 13vw;
    top: 40%;
  }
  .mailing-form {
    flex-direction: column;
  }
}
