

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
}



/* Hero Section */
.hero-section {
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 850px; /* Ou a largura máxima do seu layout */
  margin: 0 auto;
  padding: 40px 20px;

  min-height: 600px;
  position: relative;
  width: 100%;
}

.hero-title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #5B8697;
}

.hero-title strong {
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  color: #8E8E8E;
}

.hero-content {
  flex: 1;
  width: 100%;
  max-width: 309px; /* Evita que o texto estique até a imagem */
}

@media(min-width: 1024px) {
  .hero-content {
    position: relative;
    top: 50px;
  }
}

.hero-logo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;

}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 170px;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;

  width: 100%;
  position: absolute;
  max-width: 600px;
  right: 0;
  bottom: 0;
}

.hero-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-logo-wrapper {
    position: relative;
  
    background-image: url('../img/logo-guia-mob.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100px;
  }

  .hero-logo-wrapper img {
    display: none;
  }

  .hero-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-image-wrapper {
    position: relative;
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 20px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: none;
  }
}

/* Hero Section */

/* insights Section */
/* ==========================================================================
   Seção de Insights (Geral)
   ========================================================================== */
.insights-section {
  padding: 0 20px 60px;
  background-color: #ffffff; /* Ajuste para a cor real de fundo da página se necessário */
  position: relative;
}

.insights-container {
  max-width: 850px; /* Mantém os dois grandes blocos compactos e elegantes */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   Card Superior: Feelings (Laranja)
   ========================================================================== */
.feelings-card {
  background-color: #d97324; /* Laranja do layout */
  border-radius: 40px; /* Arredonda apenas os cantos de cima */
  padding: 40px 40px 30px 40px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto 10px;

}

.feelings-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.feelings-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 25px;
}

.feelings-subcard {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.15); /* Tom mais escuro transparente para o box */
  border-radius: 20px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}


.feelings-subcard-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.feelings-footer-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .feelings-card {
    padding: 30px 20px;
  }
  
  .feelings-title {
    font-size: 22px;
  }

  .feelings-subcard-text {
    font-size: 16px;
  }

  .feelings-footer-text {
    font-size: 16px;
  }
}

/* ==========================================================================
   Card Inferior: Explanation (Azul/Cinza)
   ========================================================================== */
.explanation-card {
  background-color: #558296; /* Azul acinzentado do layout */
  border-radius: 40px; /* Arredonda apenas os cantos de baixo */
  padding: 40px 50px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  position: relative; /* Essencial para controlar o personagem saindo para fora */
  overflow: visible; /* Permite que o pezinho/cabeça do personagem saia do card */
  margin-bottom: 40px;
}

.explanation-content {
  flex: 1;
  max-width: 60%; /* Garante espaço para o personagem na direita */
  z-index: 2;
}

.explanation-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  max-width: 300px;
}

.explanation-subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Pílulas / Badges */
.explanation-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.explanation-badge {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}

.explanation-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

/* Container do Personagem */
.explanation-character-wrapper {
  position: absolute;
  right: -150px;
  width: 40%;
  top: -50px;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
  max-height: 600px;
}

.explanation-character-img {
  width: auto;
}

@media (max-width: 1024px) {
  .explanation-title {
    font-size: 22px;
    max-width: none;
    text-align: center;

  }

  .explanation-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .explanation-text {
    text-align: center;
  }

  .explanation-badge {
    font-size: 12px;
    text-align: center;
  }
  
  .explanation-badges {
    align-items: center;
  }
}


/* ==========================================================================
   Botão de Ação Global (Verde)
   ========================================================================== */
.insights-btn-cta {
  display: inline-block;
  background-color: #198919; /* Verde vivo do layout */
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(25, 137, 25, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 9;
  max-width: 600px;
}

/* ==========================================================================
   Responsividade (Mobile)
   ========================================================================== */
@media (max-width: 768px) {
  .feelings-grid {
    flex-direction: column;
  }
  
  .feelings-subcard {
    min-height: auto;
  }

  .explanation-card {
    flex-direction: column;
    padding: 30px 24px;
    overflow: hidden; /* No mobile evita que quebre a rolagem horizontal da tela */
  }

  .explanation-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .explanation-character-wrapper {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    justify-content: center;
    top: 0;
  }

  .explanation-character-img {
    max-height: 500px;
  }

  .insights-btn-cta {
    font-size: 10px;
    height: 50px;
    width: calc(100% - 30px);
    text-align: center;
    margin: 0 auto;
  }
}
/* insights Section */

/* Guide Section */
/* ==========================================================================
   Configurações Gerais da Seção
   ========================================================================== */
.guide-details-section {
  background-color: #558296; /* Azul acinzentado de fundo */
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}

.guide-main-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Nuvens de Fundo */
.guide-cloud {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.guide-cloud--top-right { 
  top: -20px;
  right: -50px;
  width: 100%;
  max-width: 500px;
 }

.guide-cloud--bottom-left { 
  bottom: 0; 
  left: -80px; 
  width: 100%;
  max-width: 280px;
}

/* ==========================================================================
   Parte 1: Apresentação do Guia (Card Branco)
   ========================================================================== */
.guide-intro-card {
  background-color: #ffffff;
  border-radius: 40px;
  display: flex;
  padding: 40px 25px;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.guide-mockup-wrapper {
  flex: 1.2;
  margin-top: -80px; /* Faz o livro quebrar a borda superior do card */
}

.guide-mockup-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.guide-intro-content {
  flex: 2;
}

.guide-intro-title {
  color: #558296;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 45px;
  max-width: 350px;
}

.guide-intro-text {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ==========================================================================
   Parte 2: Destaques de Conhecimento (3 Caixas)
   ========================================================================== */
.knowledge-block {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  z-index: 2;
}

.knowledge-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.knowledge-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.knowledge-item {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

  max-width: 169px;
}

.knowledge-circle-icon {
  width: 50px;
  height: 50px;
}

.knowledge-circle-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.knowledge-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

.knowledge-banner {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}

.knowledge-banner-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .knowledge-banner-text {
    font-size: 16px;
    font-weight: 200;
    line-height: normal;
  }

  .knowledge-item {
    max-width: none;
  }

  .knowledge-title {
    font-size: 22px;
  }

  .knowledge-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   Parte 3: Bloco do Carrossel / Slider
   ========================================================================== */
.institutions-block-section {
  width: 100%;
  max-width: 850px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0;
}

.institutions-block {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.institutions-content {
  flex: 1.5;
  max-width: 65%;
  position: relative;
  z-index: 10;
}

.institutions-title {
  color: #5B8697;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  width: 100%;
  max-width: 420px;
}

.institutions-footer-text {
  color: #797979;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
  width: 100%;
  max-width: 440px;
}

/* Engrenagem do Slider */
.institutions-slider-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 450px;
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.institution-logo-card {
  min-width: calc(50% - 10px); /* Exibe 2 itens por vez */
  background-color: #f3f4f6;
  height: 160px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.institution-logo-card img {
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
}

.slider-arrow {
  background-color: #d1d5db;
  border: none;
  width: 50px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-arrow:hover { background-color: #e5e7eb; }

.slider-arrow img {
  width: 22px;
}

/* Wrapper do Personagem */
.institutions-character-wrapper {
  flex: 1;
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.institutions-character-img {
  max-height: 450px;
  width: auto;
}

/* Botão Verde de CTA */
.guide-btn-cta {
  display: inline-block;
  background-color: #198919;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 45px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(25, 137, 25, 0.3);
  margin-top: 20px;
  z-index: 3;
  transition: transform 0.2s, background-color 0.2s;
}

@media (max-width: 1024px) {
  .guide-btn-cta {
    font-size: 10px;
    height: 50px;
    width: calc(100% - 30px);
    text-align: center;
    margin: 0;
  }

  .institutions-block {
    flex-direction: column-reverse;
    overflow: hidden;
    margin: 0;
  }

  .institutions-block-section {
    padding: 0;
    position: relative;
    top: -60px;
  }

  .institutions-title {
    font-size: 18px;
    text-align: center;
  }

  .institutions-footer-text {
    text-align: center;
  }
}

/* ==========================================================================
   Responsividade (Mobile)
   ========================================================================== */
@media (max-width: 768px) {
  .guide-intro-card {
    flex-direction: column-reverse;
    padding: 30px 20px;
    text-align: center;
    gap: 15px;
    max-height: 600px;
    align-items: baseline;
    justify-content: flex-end;
    margin-bottom: 120px;
  }
  .guide-mockup-wrapper {
    max-width: 350px;
    position: relative;
    margin: 0 auto;
  }
  .knowledge-grid {
    flex-direction: column;
  }

  .institutions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 100%;
    margin-bottom: 40px;
    padding: 0 1.5rem;
  }
  .institutions-character-wrapper {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    justify-content: center;
  }

  .guide-intro-title {
    font-size: 22px;
    max-width: 200px;
    margin: 0 auto 25px;
    line-height: 25px;
  }

  .guide-intro-text {
    font-size: 14px;
  }

  .guide-cloud--top-right {
    right: -250px;
  }

  .guide-cloud--bottom-left {
    bottom: -100px;
  }
}
/* Guide Section */


/* Author Section */
.delivery-section {
  position: relative;
  background: #DA6E29;
  border-radius: 0 0 70px 70px;
  padding: 100px 0;
  position: relative;
  top: -30px;
}

.delivery-container {
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #FFFFFF;
  border-radius: 30px;
  margin: 0 auto 60px;
}

.author-image-wrapper {
  width: 100%;
  height: 100%;
  min-width: 380px;
  max-height: 510px;
}

.author-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
  position: relative;
}

.author-content {
  padding: 0 30px 0 0;
}

.author-title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: #5B8697;
}

.author-text {
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  color: #000000;
}

.delivery-btn-cta {
  background: #198919;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  max-width: 630px;
  margin: 0 auto 35px;

  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

.delivery-title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;

  text-align: center;

  margin: 0 auto 30px;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.deliverable-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;

  background: #CE6725;
  border: 1px solid #FFFFFF;
  border-radius: 30px;

  padding: 50px 30px;
}

.deliverable-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  width: 100%;
  max-width: 460px;
  display: block;
}

.deliverable-text {
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  color: #FFFFFF;
  text-align: left;
}

.deliverable-icon {
  max-width: 80px;
  max-height: 80px;
}

@media(max-width: 1024px) {
  .delivery-title {
    font-size: 22px;
  }
  .delivery-section {
    padding: 50px 0;
    top: 0;
  }

  .author-card {
    flex-direction: column;
    padding: 0;
    width: 100%;
    gap: 20px;
    width: calc(100% - 70px);
  }

  .author-image-wrapper {
    min-width: auto;
    border-radius: 30px 30px 0 0;
    max-height: 250px;
  }

  .author-image-wrapper img {
    border-radius: 30px 30px 0 0;
    max-height: 250px;
    object-position: top;
  }

  .author-content {
    padding: 0 15px 30px;
  }

  .delivery-btn-cta {
    font-size: 11px;
    height: 50px;
    width: calc(100% - 50px);
  }

  .author-title {
    font-size: 22px;
    text-align: center;
    margin: 0 auto 10px;
  }
  
  .author-text {
    text-align: center;
    font-size: 12px;
  }

  .deliverable-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .deliverables-list {
    padding: 0 2rem;
  }

  .deliverable-heading {
    font-size: 16px;
  }

  .deliverable-text {
    font-size: 14px;
  }
}

/* Author Section */


/* Benefit Section */
.benefits-section {
  position: relative;

  height: 100%;
  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;
}

.benefits-container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.benefits-title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #5B8697;

  text-align: center;

  margin: 0 auto 30px;
}

.benefits-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 auto 50px;
}

.benefits-card {
  background: #DA6E29;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  padding: 30px 35px;
}

.benefits-card .card-text {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  text-align: center;
}

.benefits-btn-cta {
  background: #198919;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  max-width: 630px;
  margin: 0 auto 35px;

  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

.benefits-cloud {
  width: 100%;
  max-width: 500px;
}

.benefits-cloud--bottom-left {
  position: absolute;
  bottom: 0;
  left: -200px;
}

.benefits-cloud--top-right {
  position: absolute;
  top: 0;
  right: -200px;
}

@media(max-width: 1024px) {
  .benefits-card .card-text {
    font-size: 16px;
  }

  .benefits-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding: 0 1.5rem;
  }

  .benefits-container {

  }

  .benefits-title {
    font-size: 22px;
    max-width: 210px;
    margin: 50px auto 30px;
  }

  .benefits-cloud--bottom-left {
    filter: opacity(0.2);
  }

  .benefits-cloud--top-right {
    filter: opacity(0.2);
    top: 100px;
  }

  .benefits-btn-cta {
    font-size: 11px;
  }
}
/* Benefit Section */

/* Target Audience Section */
.target-audience-section {
  position: relative;
  background: #5B8697;
  border-radius: 0 0 70px 70px;

  overflow: hidden;
}

.audience-arrow-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.audience-container {
  position: relative;
  padding: 130px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.audience-title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #FFF;

  text-align: center;
}

.audience-grid-wrapper {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.audience-cloud {
  position: absolute;
  max-width: 600px;
  width: 100%;
}

.audience-cloud--left {
  left: -20%;
  top: 3%;
  transform: translateY(-50%);
  max-width: 300px;
}

.audience-cloud--right {
  right: -25%;
  top: 62%;
  transform: translateY(-50%);
  max-width: 400px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.audience-card {
  border: 1px solid #FFF;
  border-radius: 50px;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.audience-card strong {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: #FFFFFF;
}

.audience-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
}

.audience-card:nth-child(1),
.audience-card:nth-child(2),
.audience-card:nth-child(3) {
  grid-column: span 2;
}

.audience-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.audience-card:nth-child(5) {
  grid-column: span 2;
}

.audience-card--orange {
  background: #CE6725;
}

.audience-card--blue {
  background: #3F6777;
}

@media(max-width: 1024px) {
  .audience-arrow-icon {
    max-width: 90px;
  }

  .audience-container {
    padding: 80px 0 40px;
  }
  
  .audience-title {
    font-size: 22px;
  }

  .audience-grid {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
  }

  .audience-grid-wrapper .audience-cloud {
    display: none;
  }

  .audience-card {
    padding: 50px 20px;
  }
}

/* Target Audience Section */

/* comparison section */
.comparison-section {
  position: relative;
  padding: 65px 0;
}

.comparison-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

.comparison-decoration-cloud {
  position: absolute;
  left: 0;
}

.comparison-cards-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 30px;
}

.comparison-card {
  border-radius: 50px;
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 50px;
}

/* Negative */
.comparison-card--negative {
  background: #F7F7F7;
  border: 1px solid #FBFEFF;
}

.comparison-card--negative .card-title {
  font-size: 22px;
  line-height: normal;
  font-weight: 700;
  color: #5B8697;
  text-align: center;
  margin: 0;
}

.comparison-card--negative .card-subtitle {
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #5B8697;
  text-align: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 30px;
}

.comparison-card--negative .card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comparison-card--negative .card-list .card-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.comparison-card--negative .card-list .card-item .card-icon {
  width: 30px;
  height: auto;
  display: block;
}

.comparison-card--negative .card-list .card-item .card-text {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #5B8697;
}

/* Negative */

/* Positive */
.comparison-card--positive {
  background: #5B8697;
}

.comparison-card--positive .card-title {
  font-size: 25px;
  line-height: normal;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  max-width: 190px;
  margin: 0 auto 30px;
}

.comparison-card--positive .card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comparison-card--positive .card-list .card-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.comparison-card--positive .card-list .card-item .card-icon {
  width: 30px;
  height: auto;
  display: block;
}

.comparison-card--positive .card-list .card-item .card-text {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
}

.comparison-headline {
  font-size: 28px;
  line-height: normal;
  color: #5B8697;
  max-width: 620px;
  margin: 0 auto 20px;
  text-align: center;
}

.comparison-btn-cta {
  background: #1E8C16;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  max-width: 630px;
  margin: 0 auto 35px;

  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

.comparison-footer {
  font-size: 18px;
  line-height: normal;

  color: #8E8E8E;

  text-align: center;
}

@media(max-width: 1024px) {
  .comparison-card--positive .card-title,
  .comparison-card--negative .card-title {
    font-size: 18px;
  }

  .comparison-card--negative .card-subtitle {
    font-size: 16px;
  }

  .comparison-card--positive .card-list .card-item .card-text,
  .comparison-card--negative .card-list .card-item .card-text {
    font-size: 16px;
  }

  .comparison-section {
    padding: 40px 1.5rem;
  }

  .comparison-container {
    display: flex;
    flex-direction: column;
  }

  .comparison-cards-wrapper {
    display: flex;
    flex-direction: column;
  }

  .comparison-card {
    padding: 40px 30px;
  }

  .comparison-container .comparison-decoration-cloud {
    display: none;
  }

  .comparison-headline {
    /* font-size: 20px; */
    font-size: 18px;
    width: 100%;
    max-width: 270px;
  }

  .comparison-btn-cta {
    width: calc(100% - 70px);
    font-size: 10px;
    height: 50px;
  }

  .comparison-footer {
    font-size: 10px;
  }
}
/* comparison section */