body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #212121;
    background-color: #ffffff;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #212121;
    margin: 0 0 16px;
}

h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #708191;
    margin: 0 0 16px;
}


p {
    margin: 0 0 24px;
}

/* Container to align content and restrict max width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header styling */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Logo styling */
.logo img {
    height: 50px;
    width: auto;
}

/* Navigation styling */
nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav .nav-link {
    text-decoration: none;
    color: #212121;
    font-weight: 600;
    transition: color 0.3s;
}

nav .nav-link:hover {
    color: #f0861e;
}

nav .cta {
    text-decoration: none;
    background-color: #f0861e;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: background-color 0.3s;
}

nav .cta:hover {
    background-color: #f0861e;
}

/* Mobile menu icon styling */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-icon span {
    width: 28px;
    height: 3px;
    background-color: #212121;
    display: block;
}

/* Button component styling used throughout the page */
.button {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    transition: box-shadow 0.3s, background-color 0.3s;
}

.button.primary {
    background-color: #f0861e;
    color: #ffffff;
    border: 2px solid #f0861e;
}

.button.primary:hover {
    box-shadow: 0 2px 30px rgba(0, 204, 98, 0.5);
}

.button.secondary {
    background-color: #f0861e;
    color: #ffffff;
    border: 2px solid #f0861e;
}

@media screen and (max-width: 991px) {
 .wrapper-logos {
        max-width: 100%;
    }
}
 .wrapper-logos {
    display: flex
;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.button.secondary:hover {
    box-shadow: 0 2px 30px rgba(44, 146, 236, 0.5);
}

/* Hero section styling */
.hero {
    padding: 80px 0;
    background-color: #2ca69a;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img { 
    max-width: 100%;
    height: auto;    
}
@media screen and (max-width: 991px) {
    .wrapper-logos .hero-logos {
        max-width: 100px;
    }
}
.wrapper-logos .hero-logos {
    max-width: 160px;
    height: auto;    
    filter: brightness(0) invert(1);
}

/* Vídeo responsivo no hero */
.hero-image iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* mantém 16:9 */
  display: block;
  max-width: 100%;
  border: 0;
}

/* Features section */
.features {
    padding: 60px 0;
    background-color: #ffffff;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.feature {
    flex: 1;
    min-width: 280px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

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

.feature ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.feature ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #f0861e;
    border-radius: 50%;
}

.feature-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
}

.collaboration {
    background-color: #f7faf9;
}

.planning .button-section{
    background-color: #0AD0AE !important;
    border: 2px solid #0AD0AE !important;
}

.planning ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #0AD0AE;
    border-radius: 50%;
}

.collaboration .button-section{
    background-color: #0AD0AE !important;
    border: 2px solid #0AD0AE !important;
}

.collaboration ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #0AD0AE;
    border-radius: 50%;
}

/* Reports section */
.reports {
    padding: 60px 0;
    background-color: #f7faf9;
    text-align: center;
}

.reports h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.reports p {
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 18px;
}

.reports ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.reports ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.reports ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #f0861e;
    border-radius: 50%;
}

/* Why choose section */
.why {
    padding: 60px 0;
    background-color: #ffffff;
}

.why h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #305268;
}

.why-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
}

/* Final call to action section */
.cta-section {
    padding: 80px 0;
    background-color: #eaf7f0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
    font-size: 28px;
    color: #708191;
}

.cta-section p {
    margin-bottom: 32px;
    font-size: 18px;
}

.button-section {
    margin-top: 20px;
}



/* Responsive adjustments */
@media (max-width: 900px) {
    nav {
        display: none;
    }
    nav.open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: absolute;
        right: 16px;
        top: 70px;
        background-color: #ffffff;
        padding: 16px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .mobile-menu-icon {
        display: flex;
    }
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-image,
    .hero-text {
        flex: unset;
        width: 100%;
    }
    .features-grid {
        flex-direction: column;
    }
    .feature,
    .feature-image {
        width: 100%;
    }
}

/* Accordion styles */
.faq-section {
  margin-top: 60px;
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.faq-section h2 {
  font-size: 28px;
  color: #708191;
  margin-bottom: 8px;
}
.faq-section p {
  font-size: 16px;
  color: #5a6f7f;
  margin-bottom: 24px;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 8px;
}
.accordion-header {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  color: #00a78e;
  cursor: pointer;
  border: none;
  text-align: left;
}
.accordion-item.active .accordion-header {
  background-color: #ecfcec;
  color: #6ea300;
}
.accordion-content {
  display: none;
  padding: 16px;
  background-color: #fff;
  color: #333;
}
.accordion-item.active .accordion-content {
  display: block;
}
.accordion-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.accordion-content li {
  color: #5a6f7f;
}

/* Carrossel Prova social */

.social-proof {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #708191;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background-color: #f5f7f7;
  border-radius: 8px;
  margin: 0 10px;
  border-radius: 20px
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #127c84;
}

.carousel-buttons {
  margin-top: 20px;
}

.carousel-buttons button {
  background-color: #127c84;
  color: #fff;
  border: none;
  padding: 8px 14px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

/* Capterra */
.capterra-proof {
  background-color: #f5f7f7;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.capterra-container {
  max-width: 600px;
  margin: 0 auto;
}

.capterra-title {
  font-size: 20px;
  font-weight: bold;
  color: #708191;
  margin-bottom: 20px;
}

.capterra-badge {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.footer-treasy {
  background-color: #002240;
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  height: 35px;
}


.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.footer-columns div {
  flex: 1;
  min-width: 180px;
}

.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.footer-columns p {
  margin: 6px 0;
  font-size: 14px;
  color: #ffffffcc;
}

.footer-columns p i {
  font-size: 18px;
}

.footer-columns a {
  color: #ffffffcc;
  margin: 0 8px;
  font-size: 13px;
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}
.footer-container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



