@import url(./styles.css);

:root{
  --font-default: 'Frutiger', sans-serif;
}

.header.sticked {
  background-color: var(--light-color);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h1 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 31px;
  line-height: 47px;
  text-align: center;
  vertical-align: middle;
}






/*SECTION 1*/


.esg-guardian-section {
  background: linear-gradient(90deg, #000b2d 60%, transparent 100%),
    radial-gradient(circle at 80% 50%, #00ff00 0%, #0000ff 100%);
  height: 100vh;
  padding-top: 90px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg-guardian-content {
  color: #ffffff;
  padding-left: 5rem;
  padding-top: 5rem;
  position: relative;
  z-index: 2;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 90px);
}

.esg-section1-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: -1.12px;
  vertical-align: middle;
}

.esg-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: justify;
  vertical-align: middle;
}

.esg-features {
  margin-bottom: 40px;
}

.esg-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feature-icon {
  width: 25px;
  margin-right: 15px;
}

.esg-demo-button {
  display: inline-block;
  background-color: #0095ff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.esg-demo-button:hover {
  background-color: #0077cc;
  color: #ffffff;
}

.esg-guardian-image {
  position: absolute;
  right: 0;
  top: 90px;
  height: calc(100vh - 90px);
  width: 70%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg-guardian-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Estilos para a seção de benefícios */
.esg-features-section {
  max-width: 1920px;
  margin: 0 auto;
}

.esg-features-section .container {
  max-width: 1920px;
  margin: 0 auto;
}

.esg-features-item {
  margin-bottom: 3rem;
}

.esg-feature-list {
  list-style: none;
  padding-left: 0;
}

.esg-feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.esg-feature-list li i {
  color: #0095ff;
  margin-right: 10px;
  font-size: 1.2rem;
}

.esg-feature-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esg-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.esg-feature-box i {
  font-size: 2.5rem;
  color: #0095ff;
  margin-bottom: 1.5rem;
}

.esg-feature-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--hero-text-color);
}

.esg-feature-box p {
  color: var(--text-section2);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .esg-guardian-section {
    background: linear-gradient(180deg, #000b2d 60%, transparent 100%),
      radial-gradient(circle at 50% 80%, #00ff00 0%, #0000ff 100%);
    padding: 60px 0;
    height: auto;
    min-height: 100vh;
  }

  .esg-guardian-content {
    padding: 2rem 15px;
    text-align: center;
    max-width: 100%;
    align-items: center;
    height: auto;
    order: 1;
  }

  .esg-section1-title {
    font-size: 28px;
    line-height: 36px;
  }

  .esg-description {
    font-size: 16px;
    line-height: 24px;
  }

  .esg-feature {
    justify-content: center;
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 20px;
  }

  .esg-guardian-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .esg-section1-title {
    font-size: 24px;
    line-height: 32px;
  }

  .esg-description {
    font-size: 14px;
    line-height: 22px;
  }

  .esg-feature {
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 18px;
  }

  .esg-demo-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}





/*SECTION 2*/

.section2-divider-top {
  height: 2px;
  width: 30%;
  background-color: #ff5a5a;
  margin: 0 auto 15px;
}

.section2-divider-bottom {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.section2-divider-blue {
  height: 2px;
  width: 40%;
  background-color: #3498db;
}

.section2-divider-green {
  height: 2px;
  width: 30%;
  background-color: #8bc34a;
}

.section2-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;

}

.section2-text {
  flex: 1;
  min-width: 300px;
}

.section2-image {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  background: url('/frontend/assets/images/esg-guardian/simboloGuardian.png') no-repeat;
  background-position: left 10% center; 
  background-size: contain;
  
}

.section2-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 38px;
  vertical-align: middle;
}

.section2-title-divider1 {
  height: 2px;
  width: 15%;
  background-color: #ff5a5a;
}
.section2-title-divider2 {
  height: 2px;
  width: 30%;
  background-color: #8bc34a;
}
.section2-title-divider3 {
  height: 2px;
  width: 20%;
  background-color: #3498db;
}

.section2-paragraph {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    vertical-align: bottom;
    color: var(--text-section2);


}

.section2-features {
  margin-top: 30px;
  font-family: Inter,sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  vertical-align: bottom;

}
.section2-features > ul > li {
  color: var(--hero-text-color);
}

.section2-feature-item {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
}

.section2-feature-bullet {
  color: #3498db;
  font-weight: bold;
  margin-right: 10px;
}

.section2-feature-title {
  font-weight: bold;
  margin-right: 5px;
}

.section2-feature-description {
  flex: 1;
}

.section2-device-mockup {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .section2-content {
    flex-direction: column;
  }

  .section2-header h1 {
    font-size: 26px;
  }

  .section2-text,
  .section2-image {
    flex: 100%;
  }
}


/*SECTION 3*/


.section3-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section3-item{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  max-width: 700px;
}
.section3-img{
  width: 200px;
}

.section3-item-title{
  font-family: Frutiger, sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 38px;
  vertical-align: middle;

}


@media (max-width: 992px){
  .section3-img{
    width: 150px;
  }
  .section3-item-title{
    font-size: 20px;
  }
}


/*SECTION 4*/

.section4-left-column {
  padding-right: 30px;
}

.section4-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.section4-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 5px 0 15px;
}

.section4-description {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Estilos dos dropdowns */
.section4-dropdown-list {
  margin-top: 20px;
}

.section4-dropdown {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.section4-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.section4-dropdown-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.section4-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: var(--text-theme-color);
  transform: rotate(180deg);
}

.section4-arrow-active {
  transform: rotate(0deg);
}

.section4-dropdown-content {
  display: none;
  padding-bottom: 15px;
}

.section4-dropdown-content p {
  margin: 0;
  color: var(--text-section2);
  font-size: 14px;
  line-height: 1.5;
}

/* Estilos da coluna da direita */
.section4-right-column {
  position: relative;
}

.section4-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.section4-image {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

/* Responsividade */
@media (max-width: 991px) {
  .section4-left-column {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .section4-image-container {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .section4-title {
    font-size: 28px;
  }

  .section4-subtitle {
    font-size: 20px;
  }

  .section4-dropdown-header h4 {
    font-size: 16px;
  }
}


/*SECTION 5*/

.section5-container {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.section5-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 30rem;
}

.section5-text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 100px;
  text-align: left;
}

.section5-title {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--text-theme-color);

}

.section5-description {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;

}

.section5-pb-5 {
  padding-bottom: 1.25rem;
}

.section5-image-section {
  background: no-repeat center center;
  background-size: cover;
}

.section5-img1-bg {
  background-image: url('../images/esg-guardian/section5-img1.png');
}
.section5-img2-bg {
  background-image: url('../images/esg-guardian/section5-img2.png');
}
.section5-img3-bg {
  background-image: url('../images/esg-guardian/section5-img3.png');
}


.section5-link {
  color: var(--hero-text-color);
  font-weight: bold;
  text-decoration: underline;
  font-size: 20px;
}

.section5-link-content {
  display: flex;
  align-items: center;
}

.section5-ml-2 {
  margin-left: 0.5rem;
}

@media (max-width: 1600px){
  .section5-text-section{
    padding: 60px;
  }
}
@media (max-width: 1300px){
  .section5-title {
    font-size: 22px;


  }

  .section5-description {
    font-size: 14px;

  }
}


@media (max-width: 11133px) {
  .section5-grid-container {
    height: 40rem;
  }
}


@media (max-width: 840px) {
  .section5-grid-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .section5-text-section, .section5-image-section {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .section5-image-section {
    height: 200px;
  }
}

/*SECTION 6*/

.section6-faq-container {
  margin: 30px 0;
}

.section6-faq-card {
  background-color: var(--card-section6);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section6-faq-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section6-faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.section6-faq-question h3 {
  font-family: Inter,sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
}

.section6-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.section6-faq-icon:before,
.section6-faq-icon:after {
  content: '';
  position: absolute;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Linha horizontal do ícone + */
.section6-faq-icon:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section6-faq-icon:after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section6-active .section6-faq-icon:after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.section6-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.3s ease;
}

.section6-active .section6-faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.section6-faq-answer p {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-section2);
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }

  .section6-faq-question {
    padding: 15px 20px;
  }

  .section6-faq-question h3 {
    font-size: 16px;
  }

  .section6-active .section6-faq-answer {
    padding: 0 20px 15px;
  }

  .section6-faq-answer p {
    font-size: 14px;
  }
}

#faleConosco {
  scroll-margin-top: 100px;
}

.form-control{
  border: 3px solid #dee2e6 !important;
}
