@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */

:root {
  --primary-color: #80AA6D;
  --secondary-color: #40433E;
}

/* Basic Reset */

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FFF;
}

h2 {
  font-family: "Prompt", sans-serif;
  color: #41463E;
  font-weight: 700;
}

section {
  background: #F2F2F2;
}

.green-primary {
  color: var(--primary-color);
}

/* Navbar */


.logo {
  max-width: 268px;
  max-height: 26px;
}

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

/* First Section */

section.first {
  position: relative;
  /* Make the section a positioning context */
  overflow: hidden;
  /* Hide overflow to cut off the ellipse if needed */
  background: var(--secondary-color);
  color: #FFF !important;
  min-height: 85vh;
}



section.first h2 {
  color: #fff;
}

section.first .money-bag {
  width: 10rem;
  height: fit-content;
  color: #fff;
}

.main-content {
  max-width: 867px;
}

.valuation-display {
  background: #d4e7ca;
  font-family: 'Prompt', sans-serif;
  padding: 10px 25px;
  border-radius: 0.5rem 0.5rem 0.5rem 0rem;
  /* Define um arredondamento base */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  block-size: fit-content;
  margin: 0 0 5rem 0;
}


.second ul {
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.second ul li {
  margin-bottom: 0.5rem;
  color: #42493F;
  font-weight: 400;
}

/* Third Section */


.third .evaluation-options-grid img {
  max-width: 100%;
  height: 4rem;
}

.third p small {
  color: #666;
  font-weight: 400;
}

/* Fourth Section */

/* Fifth Section */

section.fifth {
  background: #fff;
  min-height: 60vh;
}

.fifth .container {
  display: flex;
  flex-direction: row;
}

.fifth .accordion {
  margin: 0;
}

.fifth .accordion-button.custom-chevron::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../assets/vectors/plus-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.fifth .accordion-button:not(.collapsed) {
  color: #101828;
  background-color: #dfebda;
  box-shadow: none;
}

.fifth .accordion-button {
  box-shadow: none;
}

.fifth .accordion-button:not(.collapsed).custom-chevron::after {
  background-image: url("../assets/vectors/minus-circle.svg");
}

/* Footer */

footer img {
  height: 40px;
}

footer {
  background: #292D27;
  color: #FFF;
  padding: 2rem 0;
}

footer a {
  color: #FFF;
}

footer .all-rights-reserved {
  font-size: 0.8rem;
  color: #646464;
}

/* Free Trail Component */

section .demo-description {
  font-size: 0.8rem;
  font-weight: 300;
  color: #646464;
  padding: 0 0.5rem;
}

/* Buttons */

.btn {
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 0.2rem;
}

.btn-success {
  background: var(--primary-color);
  border: var(--primary-color);
  width: fit-content;
  display: flex;
  align-items: center;
  /* padding: 0 1rem; */
}

.btn-success p {
  color: #fff;
}

.btn-success:hover {
  background: #5d9942;
  border: #5d9942;
}