/* ======================
   RESET
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* ======================
   VARIÁVEIS (VERDE OLIVA PREMIUM)
====================== */
:root {
  --bg-main: #6B7D5B;
  --bg-card: #F7F5F0;

  --text-main: #F7F5F0;
  --text-soft: #EAE7DC;

  --primary: #A3B18A;
  --primary-dark: #4F5D44;
  --accent: #DAD7CD;

  --border: rgba(255,255,255,0.1);
  --shadow: 0 10px 30px rgba(0,0,0,0.2);

  --radius: 12px;
}

/* ======================
   BODY
====================== */
body {
  font-family: 'Playfair Display', serif;
  background: var(--bg-main);
  color: var(--text-main);
  text-align: center;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ======================
   NAVBAR TRANSPARENTE (TOP)
====================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.25); /* transparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 14px;
  letter-spacing: 3px;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffffff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #ffffff;
}

/* ======================
   HERO (VIDEO CORRIGIDO)
====================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO 100% FUNCIONANDO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;

  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* OVERLAY ESCURO */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

/* ======================
   CONTADOR
====================== */
.countdown {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.time-box {
  background: rgba(255, 255, 255, 0.15); /* transparente elegante */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);

  color: #ffffff;
}

.time-box span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
}
/* ======================
   SECTIONS - GLASS PREMIUM
====================== */
section {
  width: 90%;
  margin: 40px auto;
  padding: 80px 28px;

  position: relative;
  overflow: hidden;

  border-radius: 28px;

  /* vidro transparente igual navbar */
  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.12);

  color: white;

  transition: .4s ease;
}

/* hover sutil */
section:hover {
  transform: translateY(-2px);
}

/* brilho premium */
section::before {
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.05),
    transparent
  );

  transition: .8s ease;
}

section:hover::before {
  left: 100%;
}
/* ======================
   DETALHES DO EVENTO - TEXTO BRANCO
====================== */

/* subtítulos pequenos */
.maps-mini,
.parking-mini,
.time-event-mini,
.dress-mini {
  color: rgba(255,255,255,0.75);
}

/* títulos */
.maps-info h3,
.parking-info h3,
.time-event-info h3,
.dress-info h3 {
  color: #ffffff;
}

/* descrição */
.maps-info p,
.parking-info p,
.time-event-info p,
.dress-info p {
  color: rgba(255,255,255,0.80);
}

/* ======================
   GALERIA PREMIUM
====================== */

#galeria {
  position: relative;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 24px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.12);

  overflow: hidden;
}

/* título */
#galeria h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 1px;

  color: #ffffff;

  margin-bottom: 35px;
}


/* grid */
.galeria-fantasma {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* cards da imagem */
.fantasma-slot {
  overflow: hidden;
  border-radius: 22px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  backdrop-filter: blur(10px);

  transition: .5s ease;
}

/* imagens */
.fantasma-slot img {
  width: 100%;
  height: 320px;
  object-fit: cover;

  transition: transform .8s ease;
}

/* hover elegante */
.fantasma-slot:hover {
  transform: translateY(-6px);
}

.fantasma-slot:hover img {
  transform: scale(1.08);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .galeria-fantasma {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fantasma-slot img {
    height: 260px;
  }

  #galeria h2 {
    font-size: 1.8rem;
  }

}
/* ======================
   FORM
====================== */
#form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#form input,
#form select {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

#form button {
  padding: 14px;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
}

#form button:hover {
  background: #3b4633;
}

/* ======================
   PLAYER PREMIUM
====================== */

.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  transition: .4s ease;
}

.music-player:hover {
  transform: translateY(-2px);
}

/* texto */
.music-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.music-text {
  color: white;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* onda sonora */
.music-wave {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DAD7CD;
  animation: pulseMusic 1.4s infinite;
}

@keyframes pulseMusic {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: .7;
  }
}

/* botão */
.music-btn {
  width: 52px;
  height: 52px;
  border: none;
  outline: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.15);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: .35s ease;
}

.music-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.22);
}

.play-icon {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  transition: .3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .music-player {
    right: 14px;
    bottom: 14px;

    padding: 8px 12px;
  }

  .music-text {
    display: none;
  }

  .music-btn {
    width: 48px;
    height: 48px;
  }
}

/* ======================
   RESPONSIVO
====================== */
@media (max-width: 768px) {

  .detalhes-grid {
    grid-template-columns: 1fr;
  }

  .galeria-fantasma {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;

    flex-direction: column;
    background: rgba(0,0,0,0.85);
    padding: 20px;

    border-radius: 12px;
    display: none;
  }

  .nav-links a {
    color: #ffffff;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .galeria-fantasma {
    grid-template-columns: 1fr;
  }
}
.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.music-btn {
  width: 50px;
  height: 50px;
  background: #4F5D44;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.music-btn:hover {
  transform: scale(1.1);
}
/* ======================
   ABERTURA RESPONSIVA
====================== */

.intro-content {
  text-align: center;
  color: white;

  width: 100%;
  max-width: 900px;

  padding: 20px;
  margin: auto;
}

/* TEXTO PEQUENO */
.intro-text {
  letter-spacing: 4px;
  font-size: clamp(11px, 2vw, 15px);

  opacity: 0;
  animation: fadeIn 1.5s ease forwards;

  margin-bottom: 12px;
}

/* NOMES */
.intro-nomes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  white-space: nowrap;

  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.2;
  font-weight: 400;

  color: rgba(255,255,255,0.92);

  opacity: 0;
  transform: scale(0.88);

  animation: zoomIntro 2s ease forwards;
}
@keyframes zoomIntro {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .intro-content {
    padding: 30px;
  }

  .intro-text {
    letter-spacing: 3px;
    font-size: 11px;
  }

 .intro-nomes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  white-space: nowrap;

  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.2;
  font-weight: 400;

  color: rgba(255,255,255,0.92);

  opacity: 0;
  transform: scale(0.88);

  animation: zoomIntro 2s ease forwards;
}
/* ======================
   INTRO CINEMATOGRÁFICA
====================== */

.intro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: fadeOutIntro 2s ease 4s forwards;
}

.intro-content {
  width: 100%;
  max-width: 900px;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
}

.intro-text {
  font-size: clamp(11px, 2vw, 15px);
  letter-spacing: 4px;
  margin-bottom: 12px;

  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.intro-nomes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  white-space: nowrap;
  text-align: center;

  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.2;
  font-weight: 400;

  position: relative;
  overflow: hidden;

  color: rgba(255,255,255,0.92);

  opacity: 0;
  transform: translateY(20px);

  animation: fadeUpIntro 1.5s ease 1s forwards;
}

/* Luz passando */
.intro-nomes::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.75),
    transparent
  );

  animation: luzPassando 2.5s ease 1.5s forwards;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUpIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutIntro {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .intro-content {
    padding: 0 20px;
  }

  .intro-text {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .intro-nomes {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .intro-nomes {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
}

/* TEXTO PEQUENO */
.intro-text {
  letter-spacing: 4px;
  font-size: clamp(11px, 2vw, 15px);

  margin-bottom: 12px;

  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

/* NOMES */
.intro-nomes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  white-space: nowrap;

  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.2;
  font-weight: 400;

  position: relative;
  overflow: hidden;

  color: rgba(255,255,255,0.92);

  opacity: 0;
  transform: translateY(20px);

  animation: fadeUpIntro 1.5s ease 1s forwards;
}

/* EFEITO DE LUZ */
.intro-nomes::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.75),
    transparent
  );

  animation: luzPassando 2.5s ease 1.5s forwards;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUpIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutIntro {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .intro-text {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .intro-nomes {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {

  .intro-nomes {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
}
/* ======================
   INTRO RESPONSIVA
====================== */

.intro-content {
  width: 100%;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-nomes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  white-space: nowrap;

  line-height: 1.2;
}

/* MOBILE */
@media (max-width: 768px) {

  .intro-text {
    font-size: 11px;
    letter-spacing: 3px;

    margin-bottom: 12px;
  }

  .intro-nomes {
    font-size: 2rem;

    white-space: nowrap;
    text-align: center;

    width: 100%;
  }

}

/* CELULARES PEQUENOS */
@media (max-width: 480px) {

  .intro-nomes {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

}
/* ======================
   LOCALIZAÇÃO MINIMALISTA
====================== */

.maps-card {
  max-width: 680px;
  margin: 50px auto 0;
  padding: 22px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;

  transition: .35s ease;
}

.maps-card:hover {
  transform: translateY(-2px);
}

.maps-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(250, 243, 243, 0.94);
  color: #4F5D44
}

.maps-icon svg {
  width: 24px;
  height: 24px;
}

.maps-info {
  flex: 1;
  text-align: left;
}

.maps-mini {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 6px;
}

.maps-info h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.maps-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
}

.maps-btn {
  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);

  color: #ffffff;
  font-size: 14px;
  font-weight: 500;

  transition: .3s ease;
}

.maps-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .maps-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .maps-info {
    text-align: center;
  }

  .maps-btn {
    width: 100%;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .maps-card {
    flex-direction: column;
    text-align: center;

    padding: 24px 20px;
  }

  .maps-info {
    text-align: center;
  }

  .maps-btn {
    width: 100%;
  }

}
/* ======================
   ESTACIONAMENTO MINIMALISTA
====================== */

.parking-card {
  max-width: 680px;
  margin: 18px auto 0;

  padding: 22px 26px;

  display: flex;
  align-items: center;
  gap: 20px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;

  transition: .35s ease;
}

.parking-card:hover {
  transform: translateY(-2px);
}

/* ícone verde */
.parking-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(246, 248, 245, 0.856);
  color: var(--primary-dark);
}

.parking-icon svg {
  width: 24px;
  height: 24px;
}

/* info */
.parking-info {
  text-align: left;
}

.parking-mini {
  display: block;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #f8f5f5;

  margin-bottom: 6px;
}

.parking-info h3 {
  font-size: 1.15rem;
  font-weight: 500;

  color: #fbf8f8;

  margin-bottom: 4px;
}

.parking-info p {
  font-size: 14px;
  color: #f5f0f0;
}

/* MOBILE */
@media (max-width: 768px) {

  .parking-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .parking-info {
    text-align: center;
  }

}
/* ======================
   HORÁRIO MINIMALISTA
====================== */

.time-event-card {
  max-width: 680px;
  margin: 18px auto 0;

  padding: 22px 26px;

  display: flex;
  align-items: center;
  gap: 20px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;

  transition: .35s ease;
}

.time-event-card:hover {
  transform: translateY(-2px);
}

/* ícone */
.time-event-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(242, 244, 239, 0.929);
  color: var(--primary-dark);
}

.time-event-icon svg {
  width: 24px;
  height: 24px;
}

/* conteúdo */
.time-event-info {
  text-align: left;
}

.time-event-mini {
  display: block;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #f7f3f3;

  margin-bottom: 6px;
}

.time-event-info h3 {
  font-size: 1.15rem;
  font-weight: 500;

  color: #f5f4f4;

  margin-bottom: 4px;
}

.time-event-info p {
  font-size: 14px;
  color: #f9f5f5;
}

/* MOBILE */
@media (max-width: 768px) {

  .time-event-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .time-event-info {
    text-align: center;
  }

}
/* ======================
   TRAJE MINIMALISTA
====================== */

.dress-card {
  max-width: 680px;
  margin: 18px auto 0;

  padding: 22px 26px;

  display: flex;
  align-items: center;
  gap: 20px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;

  transition: .35s ease;
}

.dress-card:hover {
  transform: translateY(-2px);
}

/* ícone */
.dress-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(238, 243, 234, 0.944);
  color: var(--primary-dark);
}

.dress-icon svg {
  width: 24px;
  height: 24px;
}

/* conteúdo */
.dress-info {
  text-align: left;
}

.dress-mini {
  display: block;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #f6f6f6;

  margin-bottom: 6px;
}

.dress-info h3 {
  font-size: 1.15rem;
  font-weight: 500;

  color: #f7f4f4;

  margin-bottom: 4px;
}

.dress-info p {
  font-size: 14px;
  color: #f5f0f0;
}

/* MOBILE */
@media (max-width: 768px) {

  .dress-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .dress-info {
    text-align: center;
  }

}
/* ======================
   CONFIRMAÇÃO PREMIUM
====================== */

#confirmar {
  text-align: center;
}

.confirmar-container {
  max-width: 720px;
  margin: 0 auto;
}

.confirmar-mini {
  font-size: 12px;
  letter-spacing: 3px; /* separa letras */
  text-transform: uppercase;

  color: rgba(255,255,255,0.75);

  margin-bottom: 18px;
  line-height: 1.8;
}

#confirmar h2 {
  font-size: 2.3rem;
  font-weight: 400;

  letter-spacing: 1.5px; /* espaçamento elegante */

  color: #ffffff;

  margin-bottom: 18px;
}

.confirmar-texto {
  max-width: 560px;
  margin: 0 auto 30px;

  font-size: 1rem;
  line-height: 1.9; /* melhor alinhamento vertical */

  letter-spacing: 0.8px; /* separa um pouco as letras */

  color: rgba(255,255,255,0.82);
}

/* MOBILE */
@media (max-width: 768px) {

  #confirmar h2 {
    font-size: 1.9rem;
  }

  .confirmar-mini {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .confirmar-texto {
    font-size: .95rem;
    line-height: 1.8;
    padding: 0 10px;
  }
}
/* ======================
   BOTÃO CONFIRMAR PRESENÇA
====================== */

.confirmar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;
  margin-top: 10px;

  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);

  color: #ffffff;

  /* FONTE PREMIUM */
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: .35s ease;
}

.confirmar-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.18);
}

.confirmar-icon {
  transition: transform .35s ease;
}

.confirmar-btn:hover .confirmar-icon {
  transform: translateX(4px);
}
/* Close any previously opened blocks */
}
/* ======================
   PLAYER DE MÚSICA PREMIUM
====================== */

.music-btn {
  width: 54px;
  height: 54px;

  border: none;
  outline: none;
  cursor: pointer;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);

  color: #ffffff;

  transition: .35s ease;
}

.music-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.18);
}

.play-icon {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  transition: .3s ease;
}