@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5fdfd;
  padding-top: 150px;
  color: #0A0D14;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #ffffff;
  border-radius: 60px;
  padding: 30px 50px;
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  max-width: 1500px;
  margin: 15px auto;
  z-index: 999;
}

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

.header-logo img {
  width: 150px;
  height: auto;
}

.header-menu ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

.header-menu a {
  text-decoration: none;
  color: #0B0314;
  font-size: 18px;
  font-weight: 500;
}

.btn-acessar {
  display: inline-flex;
  align-items: center;
  background: #28B09C;
  color: white;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}

.btn-acessar::after {
  content: '🡥';
  font-size: 14px;
  margin-left: 10px;
  background: #fff;
  color: #05505e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  height: 800px;
  background: linear-gradient(90deg, #033F3E 0%, #1dd9c1 100%);
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 200px;
  color: white;
  z-index: 2;
}

.hero-left .badge {
  background: rgba(255, 255, 255, 0.1);
  color: #A5FFF3;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
  max-width: fit-content;
}

.hero-left h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 64px;
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-left p {
  font-size: 18px;
  line-height: 32px;
  color: #e6fdfc;
  max-width: 620px;
}

.hero-right {
  flex: 1;
  position: relative;
  height: 100%;
  z-index: 1;
}

.hero-right img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: contain;
  z-index: 10;
}





/* P2 */



/* Estilo da sessão QUEM SOMOS */
.about-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1280px;
  margin: auto;
}

/* Badge "QUEM SOMOS" com linha inferior */
.badge {
  display: inline-block;
  color: #025b6a;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  padding: 0;
  background: none;
  border-radius: 0;
}

.badge::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #60e2d1;
  margin: 0px auto 0 auto;
  border-radius: 1px;
}

.about-header h2 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 35px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.about-header h3 {
  font-size: 42px;
  color: #1c1c1c;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 46px;
}

.about-header p {
  font-size: 22px;
  line-height: 32px;
  color: #3c3543;
  margin-bottom: 40px;
  font-weight: 500;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  background-color: #60e2d1;
  padding: 30px 20px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1),
              0 12px 30px rgba(75, 75, 75, 0.12);
}

.stat-item img {
  width: 65px;
  height: 65px;
  margin-bottom: 16px;
}

.stat-item h4 {
  font-size: 28px;
  color: #0b0314;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 16px;
  color: #0b0314;
  font-weight: 500;
  line-height: 22px;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #0b0314;
}

.checkmark {
  background-color: #60e2d1;
  color: #0b0314;
  font-size: 18px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cta-button {
  display: inline-block;
  padding: 16px 28px;
  background-color: #60e2d1;
  color: #0b0314;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #46d3c5;
}





/* P3 */



body {
  font-family: 'Inter', sans-serif;
  background: #f5fdfd;
  color: #0A0D14;
  margin: 0;
  padding: 0;
}

.portfolio-section {
  background: #e7fcfb;
  padding: 50px 20px 80px;
  text-align: center;
  max-width: 100%;
}

.portfolio-section .badge {
  font-weight: 700;
  font-size: 18px;
  color: #025b6a;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.portfolio-section .badge::after {
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: #46b4a7;
  margin: 1px auto 0;
  border-radius: 1px;
}

.portfolio-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0B0314;
  line-height: 1.4;
  margin-bottom: 60px;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.card {
  width: 450px;
  height: 570px;
  perspective: 1000px;
}

.card-inner {
  width: 450px;
  height: 550px;
  transition: transform 1s ease;
  transform-style: preserve-3d;
  position: relative;
}

.card.flip .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front img {
  width: 380px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}


.card-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #6c8b83;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 10px;
}

.card-heading {
  font-size: 20px;
  font-weight: 800;
  color: #0B0314;
  margin-bottom: 30px;
  text-align: center;
}

.btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #0B0314;
  background: #60e2d1;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-portfolio:hover {
  background: #2dbbc9;
}

.btn-portfolio .icon {
  margin-left: 10px;
  font-size: 16px;
}

.card-back {
  transform: rotateY(180deg);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 32px 24px;
}





/* P4 */



/* Geral */
.invest-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  border-radius: 10px;
  background-color: #f9fbfd;
}

/* Título */
.invest-section .badge {
  color: #288b82;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
}

.invest-section .badge::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background: #60e2d1;
  margin-top: 0px;
  border-radius: 2px;
}

/* Container */
.invest-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Texto e imagem */
.invest-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Cards */
.invest-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-left: 6px solid #60e2d1;
  border-radius: 20px;
  padding: 24px 20px;
  gap: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: left;
}

.invest-card:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Ícones */
.icon-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  background-color: #60e2d1;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.icon-number span {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ffffff;
  color: #203683;
  border: 2px solid #60e2d1;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo */
.invest-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #288b82;
  margin-bottom: 16px;
}

.invest-content p {
  font-size: 16.5px;
  line-height: 24px;
  color: #444;
  font-weight: 500;
}

/* Imagem à direita */
.invest-image {
  flex: 1;
  min-width: 500px;
}

.invest-image img {
  width: 750px;
  max-width: 1500px;
  padding: 20px 30px;
  border-radius: 80px;
}





/* P5 */


.benefits-section {
  background-color: #e8fef7; /* verde claro suave */
  padding: 80px 80px 80px 80px;
  max-width: 1650px;
  margin: 100px 150px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border-radius: 120px;
}

.benefits-section h2 {
  color: #075f59;
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0 50px;
  line-height: 48px;
}

.badge-clean {
  display: inline-block;
  color: #0c6f65;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 2px solid #48e1d6;
  padding-bottom: 4px;
  background: transparent;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  justify-content: center;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left; /* alinha à esquerda */
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card img {
  max-width: 100%; /* garante que a imagem se adapte */
  margin-bottom: 24px;
}

.benefit-card h3 {
  color: #042c29;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 14px;
  text-align: left; /* também alinha à esquerda */
}

.benefit-card p {
  color: #3d3d3d;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  max-width: 100%; /* estica o parágrafo até o limite do card */
  text-align: left;
}

.arrow-button {
  display: block;
  align-items: center;
  justify-content: center;
  background: #0c6f65;
  color: #ffffff;
  width: 38px;
  height: 38px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 50%;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 38px;
  transition: background 0.3s ease;
}

.arrow-button:hover {
  background: #229d99;
}




/* P6 */


.faq-section {
  background: linear-gradient(180deg, #014d4d 0%, #00c2a8 100%);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: white;
}

.faq-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 980px;
  margin: auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: #010101;
  transition: all 0.3s ease;
  margin-bottom: 20px; /* Espaço entre os cards */
}

.faq-question {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  padding: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #010101;
}

.faq-icon {
  background-color: #00c2a8;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;

  
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0px 24px 5.5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #333;
  background: white;
  text-align: left;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-item.active .faq-icon {
  background-color: #014d4d;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }
}







/* P7 */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

.footer {
  background-color: #e6fdfa;
  padding: 60px 20px 30px;
  text-align: center;
  color: #014d4d;
}

.footer-top {
  max-width: 1680px;
  margin: 0 auto 50px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-description {
  max-width: 1600px; /* Reduzi o limite da largura para forçar mais linhas */
  margin: 0 auto;
  text-align: justify; /* Justificado melhora a distribuição */
  font-size: 22px; /* Ligeiramente menor para encaixar melhor */
  line-height: 38px;
  font-weight: 500;
  padding: 20px 30px; /* Aumenta margem lateral */
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
  margin-bottom: 40px;
}

.footer-col {
  text-align: left;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #014d4d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 18px;
}


.footer-bottom {
  border-top: 1px solid #cdece7;
  padding-top: 20px;
  font-size: 18px;
  color: #014d4d;
}

/* Botão scroll-top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.scroll-top button {
  background: #00c2a8;
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.scroll-top button:hover {
  background: #014d4d;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    text-align: center;
  }
}
