/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background-color: #0d1526; color: #fff; line-height: 1.6; }

/* Cabeçalho */
header {
  background-color: #0d1526;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #ff3f80;
}
.logo { width: 180px; height: auto; }

nav button, .btn {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #ff3f80; color: #0d1526;
  border: none; border-radius: 6px; font-weight: 700; cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}
nav button:hover { transform: translateY(-1px); filter: brightness(0.95); }

/* ===== Slider/Carrossel ===== */
.slider {
  position: relative;
  max-width: 1200px;
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid #ff3f80;
  background: #0d1526;
}
.slides { display: flex; width: 100%; transition: transform .5s ease; }
.slide {
  min-width: 100%;
  height: 360px;              /* ajusta conforme tuas imagens */
  object-fit: cover;
  display: block;
  background: #0d1526;
}

/* Controles */
.ctrl {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 28px; line-height: 44px;
  text-align: center; background: #ff3f80; color: #0d1526;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.ctrl.prev { left: 12px; }
.ctrl.next { right: 12px; }
.ctrl:hover { filter: brightness(0.95); }

/* Dots/indicadores */
.dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.5); cursor: pointer;
}
.dots button.active { background: #ff3f80; }

/* Seções */
section { padding: 40px 20px; max-width: 1000px; margin: auto; }
.hero { text-align: center; }
.hero h1 { font-size: 2.4em; color: #ff3f80; margin-bottom: 8px; }
.hero p { font-size: 1.1em; }

section h2 {
  color: #ff3f80; margin-bottom: 14px; font-size: 1.8em;
  border-bottom: 2px solid #ff3f80; padding-bottom: 8px;
}
section ul { list-style: none; }
section ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

/* Idiomas */
.idiomas { text-align: center; margin-top: 14px; }
.idiomas button { background-color: #ff3f80; color: #0d1526; border: none; border-radius: 4px; padding: 8px 16px; font-weight: 700; cursor: pointer; }
.idiomas button + button { margin-left: 6px; }

/* Vídeo */
.video h2 { margin-top: 10px; }
.video-wrapper {
  position: relative; width: 100%; max-width: 900px; margin: 14px auto 0;
  aspect-ratio: 16 / 9; background: #101a33; border: 2px solid #ff3f80; border-radius: 12px; overflow: hidden;
}
.video-wrapper iframe, .video-wrapper video { width: 100%; height: 100%; display: block; }

/* WhatsApp Floating Button */
#whatsapp-button {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: transparent;
}
#whatsapp-button img { width: 100%; height: 100%; display: block; }

/* Rodapé */
footer {
  background-color: #0d1526; text-align: center; padding: 20px;
  color: #aaa; font-size: .9em; border-top: 1px solid #ff3f80;
}

/* Responsivo */
@media (max-width: 768px) {
  .logo { width: 140px; }
  .slide { height: 240px; }
  .ctrl { width: 38px; height: 38px; font-size: 22px; line-height: 38px; }
}