/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #FCF9F5;
  color: #1D1F21;
}

/* Container */
.container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #E0DEDA;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #1D1F21;
}

.cta {
  background: #0075C7;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
}

/* HERO */
.hero {
  padding: 80px 0;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
}

/* Slides (stacked) */
.slides {
  position: relative;
}

/* Cada slide ocupa o mesmo espaço */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Conteúdo */
.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Texto */
.slide h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.slide p {
  color: #606061;
  margin-bottom: 20px;
}

/* Botão */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.primary {
  background: #0075C7;
  color: #fff;
}

/* Imagem */
.slide img {
  max-width: 420px;
}

/* Dots */
.slider-nav {
  text-align: center;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #E0DEDA;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.dot.active {
  background: #0075C7;
}

/* Barra progresso */
.progress-bar {
  height: 3px;
  background: #E0DEDA;
  margin-top: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: #0075C7;
}

/* Responsivo */
@media (max-width: 900px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .slide h1 {
    font-size: 2.2rem;
  }
}