/* Reset scoped */
.ls-root {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #4B5F7C;
  box-sizing: border-box;
}

.ls-root *,
.ls-root *::before,
.ls-root *::after {
  box-sizing: inherit;
}

/* Container */
.ls-root .ls-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.ls-root .ls-title {
  font-size: 32px;
  font-weight: 700;
  color: #094084;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ls-root .ls-title--center {
  text-align: center;
}

.ls-root .ls-subtitle {
  font-size: 18px;
  color: #4B5F7C;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.ls-root .ls-subtitle--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.ls-root .ls-hero {
  background: linear-gradient(135deg, #094084 0%, #1C70CB 100%);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
}

.ls-root .ls-hero__content {
  flex: 1;
  max-width: 600px;
}

.ls-root .ls-hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ls-root .ls-hero__subtitle {
  font-size: 20px;
  color: #6EDCFF;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.ls-root .ls-hero__cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ls-root .ls-hero__image {
  flex: 1;
  max-width: 500px;
}

.ls-root .ls-hero__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.ls-root .ls-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.ls-root .ls-btn--primary {
  background-color: #6EDCFF;
  color: #094084;
}

.ls-root .ls-btn--primary:hover {
  background-color: #5CC8E8;
  transform: translateY(-2px);
}

.ls-root .ls-btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.ls-root .ls-btn--secondary:hover {
  background-color: #FFFFFF;
  color: #094084;
}

.ls-root .ls-btn--white {
  background-color: #FFFFFF;
  color: #1C70CB;
}

.ls-root .ls-btn--white:hover {
  background-color: #F8FBFF;
  transform: translateY(-2px);
}

.ls-root .ls-btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.ls-root .ls-btn--outline:hover {
  background-color: #FFFFFF;
  color: #1C70CB;
}

.ls-root .ls-btn--large {
  padding: 16px 40px;
  font-size: 18px;
}

/* Presentation Section */
.ls-root .ls-presentation {
  background-color: #F8FBFF;
  padding: 80px 0;
}

.ls-root .ls-presentation__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.ls-root .ls-presentation__media {
  margin-bottom: 60px;
}

.ls-root .ls-audio-player {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(9, 64, 132, 0.1);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ls-root .ls-audio {
  width: 100%;
  margin-bottom: 10px;
}

.ls-root .ls-audio__label {
  font-size: 14px;
  color: #1C70CB;
  font-weight: 600;
  margin: 0;
}

/* Services */
.ls-root .ls-services {
  margin-top: 60px;
}

.ls-root .ls-services__title {
  font-size: 28px;
  font-weight: 700;
  color: #094084;
  text-align: center;
  margin: 0 0 40px 0;
}

.ls-root .ls-services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.ls-root .ls-service-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
  flex: 1 1 calc(33.333% - 25px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 12px rgba(9, 64, 132, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #1C70CB;
}

.ls-root .ls-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(9, 64, 132, 0.15);
}

.ls-root .ls-service-card__icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #EEF3FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-root .ls-service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #094084;
  margin: 0 0 10px 0;
}

.ls-root .ls-service-card__text {
  font-size: 14px;
  color: #4B5F7C;
  margin: 0;
  line-height: 1.6;
}

/* Avantages Section */
.ls-root .ls-avantages {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.ls-root .ls-avantages__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.ls-root .ls-avantage-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  max-width: 300px;
  background-color: #F8FBFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(9, 64, 132, 0.08);
  transition: all 0.3s ease;
}

.ls-root .ls-avantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(9, 64, 132, 0.15);
}

.ls-root .ls-avantage-card__icon {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.ls-root .ls-avantage-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ls-root .ls-avantage-card:hover .ls-avantage-card__img {
  transform: scale(1.1);
}

.ls-root .ls-avantage-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #094084;
  margin: 20px 20px 10px 20px;
}

.ls-root .ls-avantage-card__text {
  font-size: 14px;
  color: #4B5F7C;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

/* CTA Section */
.ls-root .ls-cta {
  background: linear-gradient(135deg, #094084 0%, #1C70CB 100%);
  padding: 80px 20px;
  text-align: center;
}

.ls-root .ls-cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.ls-root .ls-cta__title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.ls-root .ls-cta__text {
  font-size: 18px;
  color: #6EDCFF;
  margin: 0 0 40px 0;
}

.ls-root .ls-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .ls-root .ls-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .ls-root .ls-hero__content {
    max-width: 100%;
  }

  .ls-root .ls-hero__title {
    font-size: 36px;
  }

  .ls-root .ls-hero__cta {
    justify-content: center;
  }

  .ls-root .ls-hero__image {
    max-width: 100%;
  }

  .ls-root .ls-service-card {
    flex: 1 1 calc(50% - 25px);
  }

  .ls-root .ls-avantage-card {
    flex: 1 1 calc(50% - 30px);
  }

  .ls-root .ls-cta__title {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .ls-root .ls-title {
    font-size: 26px;
  }

  .ls-root .ls-hero__title {
    font-size: 30px;
  }

  .ls-root .ls-hero__subtitle {
    font-size: 18px;
  }

  .ls-root .ls-service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ls-root .ls-avantage-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ls-root .ls-cta__title {
    font-size: 26px;
  }

  .ls-root .ls-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .ls-root .ls-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .ls-root .ls-hero {
    padding: 40px 15px;
  }

  .ls-root .ls-hero__title {
    font-size: 26px;
  }

  .ls-root .ls-presentation,
  .ls-root .ls-avantages {
    padding: 50px 0;
  }

  .ls-root .ls-service-card,
  .ls-root .ls-avantage-card {
    padding: 20px;
  }
}