.content-page {
  width: 100%;
}

.parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  background-image: url('../assets/images/cl1.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.no-parallax .parallax-bg {
  top: 0;
  height: 100%;
  will-change: auto;
  transform: none !important;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background-color: rgb(1, 17, 26);
}

.hero.fullscreen {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(1, 17, 26);
  opacity: 0.8;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 100px 20px 60px;
}

.hero.fullscreen .hero-content {
  min-height: 100vh;
}

.hero h1,
.hero h2,
.hero h3,
.hero p {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-wrapper {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}

.image-wrapper img,
.hero-logo {
  max-width: 100%;
  height: auto;
}

.hero-logo {
  width: 350px;
}

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

.content-section {
  padding: 40px 0;
  background-color: transparent;
}

.content-section.compact {
  padding: 0 !important;
}

.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
}

.content-section p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.content-section ol,
.content-section ul {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}

.content-section ol li,
.content-section ul li {
  margin-bottom: 1.5rem;
}

.content-section ol li strong,
.content-section ul li strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVO ===================== */

/* Desktop ≥992px */
@media (min-width: 992px) {
  .hero-content {
    padding: 120px 20px 90px;
  }

  .image-wrapper {
    margin-bottom: 0;
  }

  .text-wrapper {
    text-align: left;
  }
}

/* Tablet / mobile grande ≤991px */
@media (max-width: 991px) {
  .hero {
    min-height: 500px;
  }

  .hero.fullscreen {
    min-height: 100vh;
  }

  .hero-content {
    padding: 110px 15px 40px;
    align-items: flex-start;
  }

  .image-wrapper {
    margin-bottom: 1.5rem;
  }

  .content-section p,
  .content-section ol,
  .content-section ul {
    font-size: 1rem;
  }
}

/* iPad 768px–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-logo {
    width: 280px;
  }

  .content-section p {
    font-size: 1rem;
  }
}

/* Mobile médio ≤400px */
@media (max-width: 400px) {
  .hero-content {
    padding: 110px 10px 20px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .image-wrapper {
    margin-bottom: 1rem;
  }

  .image-wrapper img,
  .hero-logo {
    width: 220px;
  }

  .hero .mbr-section-btn .btn {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* Mobile 375px */
@media (max-width: 375px) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 105px 10px 15px;
  }
}

/* Ultra-small ≤360px */
@media (max-width: 360px) {
  .hero-content {
    padding: 100px 8px 10px;
  }

  .hero-logo {
    width: 200px;
  }

  .content-section p,
  .content-section ol,
  .content-section ul {
    font-size: 0.9rem;
  }

  .content-section ol li,
  .content-section ul li {
    margin-bottom: 1rem;
  }

  .content-section ol li strong,
  .content-section ul li strong {
    font-size: 1rem;
  }
}