:root {
            /* Brand Colors from Moodboard */
            --primary-dark: #3a3a3b;
            --primary-charcoal: #4a4a4a;
            --secondary-sage: #7a8471;
            --secondary-muted-green: #8a9b85;
            --accent-green: #6b9f73;
            --accent-light-green: #a4c5aa;
            --neutral-warm-beige: #c4a584;
            --neutral-light-sage: #9db5a0;
            --neutral-soft-mint: #b8d4c2;
            --background-cream: #f7f5f3;
            --text-dark: #2a2a2b;
            --white: #ffffff;
        }

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

        .body {
  color: #191919;
  background-color: #8FCD9A;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%
}
    .footer {
      color: #FFFFFF;
    }
    .footer a {
      color: #FFFFFF;
    }


/* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            animation: bounce 2s infinite;
            margin: auto;
            text-align: center;

        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Main Content */
        .main-content {
            position: relative;
            background-color: #435259;
            z-index: 3;
        }

        /* Section with parallax background */
        .section-parallax {
            position: relative;
            overflow: hidden;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            will-change: transform;
            opacity: 0.1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .demo-section {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(58, 58, 59, 0.1);
            margin-bottom: 40px;
            overflow: hidden;
            position: relative;
        }

        .section-header {
    background: linear-gradient(135deg, var(--secondary-sage) 0%, var(--secondary-muted-green) 100%);
    color: var(--white);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

        .section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 400"><path fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.1" d="M0,200 Q400,100 800,200 T1600,200"/><path fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1" d="M0,150 Q400,50 800,150 T1600,150"/></svg>') center/cover;
        }

        .section-header h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.8rem;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: -1px;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .section-content {
            padding: 60px 40px;
            position: relative;
            background-color: #b8d0d0;
        }

        /* Investment Details Grid */
        .investment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .investment-card {
            background-color: #EEE;
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--accent-green);
            transition: all 0.4s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .investment-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .investment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(107, 159, 115, 0.2);
        }

        .investment-card h3 {
            color: var(--text-dark);
            font-family: 'Satoshi', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .investment-card .amount {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--accent-green);
        }

        /* Total Investment Highlight */
        .total-investment {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-charcoal) 100%);
            color: var(--white);
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .total-investment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.05"/><circle cx="700" cy="100" r="60" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.05"/></svg>') center/cover;
        }

        .total-investment h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.6rem;
            font-weight: 500;
            margin-bottom: 20px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .total-investment .amount {
            font-family: 'Satoshi', sans-serif;
            font-size: 4rem;
            font-weight: 500;
            margin-bottom: 15px;
            letter-spacing: -2px;
            position: relative;
            z-index: 1;
        }

        /* Performance Section with Architectural Background */
        .performance-section {
            background: linear-gradient(135deg, rgba(107, 159, 115, 0.9) 0%, rgba(164, 197, 170, 0.9) 100%), url('../images/quem-somos-img4.webp') center/cover;
            color: var(--white);
            padding: 80px 40px;
            border-radius: 20px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
        }

        .performance-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.1" d="M0,300 Q300,150 600,300 T1200,300"/><path fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1" d="M0,200 Q300,50 600,200 T1200,200"/><path fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1" d="M0,400 Q300,250 600,400 T1200,400"/></svg>') center/cover;
            will-change: transform;
        }

        .performance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .performance-item {
            text-align: center;
            padding: 30px 10px;
            background: rgba(255,255,255,0.15);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .performance-item:hover {
            transform: translateY(-5px);
        }

        .performance-item h4 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .performance-item .value {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.2rem;
            font-weight: 500;
            letter-spacing: -1px;
        }

        /* Timeline Section with office architecture background */
        .timeline-section {
            background: linear-gradient(rgba(184, 212, 194, 0.85), rgba(184, 212, 194, 0.85)), url('../images/quem-somos-img2.webp') center/cover;
            padding: 80px 40px;
            border-radius: 20px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><path fill="none" stroke="%237a8471" stroke-width="1" opacity="0.2" d="M0,0 L600,0 L600,100 Q550,100 550,150 L550,400"/><path fill="none" stroke="%237a8471" stroke-width="1" opacity="0.2" d="M100,0 L100,400"/><path fill="none" stroke="%237a8471" stroke-width="1" opacity="0.2" d="M200,0 L200,400"/></svg>') center/cover; */
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 25px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(122, 132, 113, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-item:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 35px rgba(122, 132, 113, 0.15);
        }

        .timeline-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-sage) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 1.2rem;
            margin-right: 25px;
        }

        /* Market Analysis with modern architecture */
        .market-analysis {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/project-background4.webp') center/cover;
            padding: 80px 40px;
            border-radius: 20px;
            border: 2px solid var(--neutral-light-sage);
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .market-analysis::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><g opacity="0.03"><rect x="50" y="50" width="200" height="300" fill="%236b9f73"/><rect x="300" y="100" width="200" height="250" fill="%237a8471"/><rect x="550" y="75" width="200" height="275" fill="%238a9b85"/><rect x="800" y="125" width="200" height="225" fill="%236b9f73"/></g></svg>') center/cover;
        }

        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .analysis-card {
            padding: 30px;
            border: 1px solid var(--neutral-light-sage);
            border-radius: 15px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(10px);
        }

        .analysis-card:hover {
            border-color: var(--accent-green);
            box-shadow: 0 8px 25px rgba(107, 159, 115, 0.15);
            transform: translateY(-5px);
        }

        .analysis-card h4 {
            color: var(--text-dark);
            font-family: 'Satoshi', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .analysis-card .metric {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--accent-green);
            letter-spacing: -0.5px;
        }

        /* Final Results Section with upward perspective */
        .final-results {
            background: linear-gradient(135deg, rgba(122, 132, 113, 0.9) 0%, rgba(138, 155, 133, 0.9) 100%), url('../images/hero-background-human.webp') center/cover;
            color: var(--white);
            padding: 80px 40px;
            border-radius: 20px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .final-results::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="150" r="100" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.1"/><circle cx="1000" cy="450" r="150" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.1"/><path fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1" d="M0,300 Q600,100 1200,300"/></svg>') center/cover;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .result-card {
            background: rgba(255,255,255,0.15);
            padding: 35px 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
        }

        .result-card h4 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .result-card .value {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .result-card .detail {
            font-family: 'Satoshi', sans-serif;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* CTA Button */
        .cta-section {
            text-align: center;
            padding: 80px 40px;
        }

        .cta-button {
            display: inline-block;
            /* background: linear-gradient(135deg, var(--neutral-warm-beige) 0%, var(--secondary-sage) 100%); */
            background: linear-gradient(135deg, #8fcd99 0%, #5f8d67 100%);
            color: #121416;
            padding: 25px 60px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Satoshi', sans-serif;
            font-size: 1.3rem;
            font-weight: 500;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px #8fcd9954;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px #8fcd99;
        }

        /* Typography Updates */
        h2 {
            font-family: 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 2.5rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        h3 {
            font-family: 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 1.8rem;
            letter-spacing: -0.5px;
        }

        h4 {
            font-family: 'Satoshi', sans-serif;
            font-weight: 500;
            font-size: 1.3rem;
            letter-spacing: -0.3px;
        }

        p, li {
            font-family: 'Satoshi', sans-serif;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero-content h1 {
                font-size: 3.2rem;
                letter-spacing: -1.5px;
            }

            .hero-content .subtitle {
                font-size: 1.1rem;
            }

            .logo {
                width: 200px;
            }

            .section-content,
            .performance-section,
            .timeline-section,
            .market-analysis,
            .final-results {
                padding: 40px 20px;
            }

            .investment-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .total-investment .amount {
                font-size: 2.8rem;
            }

            .performance-item .value {
                font-size: 1.8rem;
            }
        }
         @media (max-width: 991px) {
            .section-header h2 {
                font-size: 1.4rem;
            }
            .amount {
                font-size: 2rem!important;
            }
            .performance-section h2 {
                font-size: 2rem!important;
            }
            .section-content h2 {
                font-size: 2rem;
            }
            .cta-section {
                padding: 0!important;
            }
            .cta-button {
                padding: 10px 60px!important;
            }
            .timeline-icon {
                width: 40px ;
                height: 40px;
            }
         }

         

    
    /* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #8FCD9A;
    color: #121416;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1000;
    top: 125%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1rem;
    font-weight: normal;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #1D595A transparent;
}

/* Show the tooltip text when hovering */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* Drop-Down Menu */

/* Make dropdown narrower - single column layout */
.navbar-dropdown.pages {
    min-width: 200px;
    max-width: 250px;
}

.navbar-dropdown-grid {
    grid-template-columns: 1fr;
    width: 100%;
}

.navbar-dropdown-column {
    width: 100%;
}

.navbar-dropdown-inner {
    padding: 30px;
}
/* 
:root {
  --primary-dark: #121416;
  --primary-charcoal: #191919;
  --text-dark: #2D3748;
  --secondary-sage: #6B9F73;
  --secondary-muted-green: #A4C5AA;
  --accent-green: #8FCD9A;
  --background-cream: #F7F5F3;
  --white: #FFFFFF;
}
 */
.valuation-scenarios {
  background: var(--background-cream);
  padding: 60px 40px;
  border-radius: 20px;
  margin: 50px 0;
  position: relative;
}

.scenario-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 5px solid var(--accent-green);
}

.scenario-card.intermediate {
  border-left-color: var(--secondary-sage);
}

.scenario-card.optimistic {
  border-left-color: var(--secondary-muted-green);
}

.scenario-title {
  color: var(--accent-green);
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 600;
}

.scenario-card.intermediate .scenario-title {
  color: var(--secondary-sage);
}

.scenario-card.optimistic .scenario-title {
  color: var(--secondary-muted-green);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.scenario-item {
  padding: 15px;
  background: var(--background-cream);
  border-radius: 10px;
  border: 1px solid rgba(107, 159, 115, 0.1);
}

.scenario-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.scenario-value {
  color: var(--secondary-sage);
  font-size: 1.2rem;
  font-weight: 600;
}

.scenario-highlight {
  background: var(--accent-green);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.scenario-card.intermediate .scenario-highlight {
  background: var(--secondary-sage);
}

.scenario-card.optimistic .scenario-highlight {
  background: var(--secondary-muted-green);
}

.scenario-highlight .scenario-value {
  color: white;
  font-size: 1.4rem;
  margin-top: 5px;
}

.summary-table {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.table-header {
  background: var(--secondary-sage);
  color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  gap: 20px;
  font-weight: 600;
}

.table-row {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  gap: 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.table-row:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .valuation-scenarios {
    padding-left: 5px;
    padding-right: 5px;
  }
  .notas-finais {
    margin-bottom: 4rem;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  
  .table-header, .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .table-header div, .table-row div {
    padding: 5px 0;
  }
}