/* Reset e configurações básicas */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');

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

/* Remover sublinhado do label bold especificamente neste trigger */
.contact-label.bold.policies-trigger {
    text-decoration: none !important;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.4;
    color: #1a1a1b;
    background-color: #f9f5ef;
    overflow: hidden;
    height: 100vh;
}

/* Scroll Animations - Content visible by default */
.animate-on-scroll {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fade-in.animate-in {
    opacity: 1;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Divider Animations - Hide initially */
.divider-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero divider specific hiding */
.hero-divider.divider-animate {
    height: 0;
}

.divider-animate.animate-in {
    opacity: 1;
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero divider specific animation */
.hero-divider.divider-animate.animate-in {
    height: 100%;
    animation: growHeight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes growHeight {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

/* Hide section content initially (except hero) */
.section:not(.hero) .section-header {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section:not(.hero) .section-header.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Hide all animated elements in sections (except hero) until animation triggers */
.section:not(.hero) .animate-on-scroll:not(.animate-in),
.section:not(.hero) .slide-in-left:not(.animate-in),
.section:not(.hero) .slide-in-right:not(.animate-in),
.section:not(.hero) .fade-in:not(.animate-in),
.section:not(.hero) .divider-animate:not(.animate-in) {
    opacity: 0;
    visibility: hidden;
}

.section:not(.hero) .animate-on-scroll.animate-in,
.section:not(.hero) .slide-in-left.animate-in,
.section:not(.hero) .slide-in-right.animate-in,
.section:not(.hero) .fade-in.animate-in,
.section:not(.hero) .divider-animate.animate-in {
    opacity: 1;
    visibility: visible;
}

/* Section Header Underline Animation */
.section-header {
    position: relative;
    overflow: hidden;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3d754e;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.section-header.animate-in::after {
    width: 100%;
}



.fullpage-container {
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    padding-top: 140px;
}

@media (max-width: 768px) {
    .fullpage-container {
        padding-top: 100px;
        scroll-snap-type: none !important;
        overflow-x: hidden;
    }
    
    body {
        overflow: auto;
        overflow-x: hidden;
    }
    
    .section {
        height: auto;
        padding: 40px 0;
        margin-bottom: 200px;
        scroll-snap-align: none;
    }
    
    .hero {
        height: auto;
        padding: 80px 0 !important;
        min-height: 50vh;
        scroll-snap-align: none;
    }
    
    .hero-content {
        gap: 20px;
        margin-left: 0;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-left {
        display: none;
    }
    
    .about-section-2 {
        margin-top: -100px !important;
        padding-top: 40px !important;
    }
    
    .about-content-1 {
        display: flex;
        gap: 40px;
        align-items: baseline !important;
    }
    
    .values-content {
        display: flex;
        gap: 40px;
        align-items: baseline !important;
    }
}

.container {
    max-width: 1366px;
    width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Header with Modern Navigation */
.header {
    background: rgba(249, 245, 239, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(249, 245, 239, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Modern Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1b;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #3d754e;
    background: rgba(61, 117, 78, 0.1);
}

.nav-link.active {
    color: #2a5737;
    background: rgba(61, 117, 78, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6.2px, 6.2px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6.2px, -6.2px);
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .logo {
        height: 60px;
    }
    
    .main-nav {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(249, 245, 239, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 250px;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        transform: translateY(10px);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background-color: #f9f5ef;
    padding: 0;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    scroll-snap-align: none;
    overflow-x: hidden;
}



.hero-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
    min-height: 400px;
    margin: 0 auto;
    margin-left: 40%;
}

.hero-right {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.hero-divider {
    width: 6px;
    background-color: #3d754e;
    flex-shrink: 0;
    height: 0;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.hero-divider.animate-in {
    height: 100%;
    opacity: 1;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #3d754e;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-subtitle strong {
    color: #1a1a1b;
    font-weight: bold;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    color: #1a1a1b;
    line-height: 1.6;
    margin: 0;
}

/* Section Styles */
.section {
    background-color: #f9f5ef;
    padding: 0 0 40px 0;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: none;
    overflow-x: hidden;
    margin-bottom: 200px;
}

@media (max-width: 768px) {
    .section {
        scroll-snap-align: none !important;
        height: auto;
        margin-bottom: 200px;
    }
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-icon {
    height: 30px;
    width: auto;
    margin-right: 15px;
    filter: brightness(0);
}

.section h2 {
    font-size: 1.8rem;
    color: #1a1a1b;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
}

/* Common text styles */
.green-text {
    color: #3d754e;
    font-weight: bold;
}

.red-text {
    color: #d32f2f;
}

.bold {
    font-weight: bold;
}

/* About Section - Part 1 */
.about-content-1 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-left-1 {
    flex: 1;
}

.about-left-1 h3 {
    font-size: 3.2rem;
    color: #1a1a1b;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
}

.about-divider-1,
.about-divider-2,
.values-divider,
.solutions-divider,
.serve-divider,
.wealth-divider {
    width: 6px;
    background: linear-gradient(180deg, #3d754e 0%, #5a8a6b 50%, #3d754e 100%);
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.about-divider-1::before,
.about-divider-2::before,
.values-divider::before,
.solutions-divider::before,
.serve-divider::before,
.wealth-divider::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.about-divider-2::before { --delay: 0.5s; }
.values-divider::before { --delay: 1s; }
.solutions-divider::before { --delay: 1.5s; }
.serve-divider::before { --delay: 2s; }
.wealth-divider::before { --delay: 2.5s; }

.about-right-1 {
    flex: 1;
    padding-left: 40px;
}

.about-right-1 p {
    font-size: 1.4rem;
    color: #1a1a1b;
    line-height: 1.4;
    margin: 0;
}

/* About Section - Part 2 */
.about-section-2 {
    padding-top: 40px;
    margin-top: -60px;
}

.about-content-2 {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.stat-item {
    text-align: left;
}

.stat-item .number {
    font-size: 3.2rem;
    font-weight: bold;
    color: #1a1a1b;
    margin-bottom: 15px;
    display: block;
    line-height: 1.1;
}

.stat-item .number.green {
    color: #3d754e;
}

.stat-item p {
    font-size: 3.2rem;
    color: #1a1a1b;
    margin: 0;
    line-height: 1.1;
    font-weight: bold;
}

.stat-item p.green {
    color: #3d754e;
}

.about-divider-2 {
    width: 6px;
    background-color: #3d754e;
    flex-shrink: 0;
    align-self: stretch;
}

.about-highlight {
    flex: 1;
    padding-left: 40px;
}

.about-highlight h4 {
    font-size: 2.8rem;
    color: #1a1a1b;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-highlight p {
    font-size: 1.4rem;
    color: #1a1a1b;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Values Section */
.values-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.values-left {
    flex: 1;
}

.values-left h3 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1b;
}

.green-letter {
    color: #3d754e;
    font-weight: bold;
}

.values-divider {
    width: 6px;
    background-color: #3d754e;
    flex-shrink: 0;
    align-self: stretch;
}

.values-right {
    flex: 1;
    padding-left: 40px;
}

.values-right p {
    font-size: 1.4rem;
    color: #1a1a1b;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Nossa Abordagem Section */
.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
}

.approach-row {
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
    padding: 30px;
}

.approach-item h3 {
    font-size: 1.8rem;
    color: #3d754e;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.6;
}

.approach-item p {
    font-size: 1.2rem;
    color: #1a1a1b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .approach-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .approach-item {
        padding: 20px;
    }
    
    .approach-item h3 {
        font-size: 1.5rem;
    }
    
    .approach-item p {
        font-size: 1.1rem;
    }
}

/* Ecossistema Completo Section */
.ecosystem-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ecosystem-left {
    flex: 1;
    max-width: 400px;
}

.ecosystem-left p {
    font-size: 1.4rem;
    color: #1a1a1b;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

.ecosystem-left h3 .green-text {
    color: #3d754e;
    font-weight: 500;
}

.ecosystem-arrow {
    margin-top: 20px;
}

.ecosystem-arrow svg {
    opacity: 0.8;
}

.ecosystem-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecosystem-diagram {
    width: 100%;
    max-width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagram-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(61, 117, 78, 0.1);
    border: 2px dashed #3d754e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.diagram-placeholder::before {
    content: "Diagrama do Ecossistema\A(Placeholder para imagem)";
    white-space: pre-line;
    text-align: center;
    color: #3d754e;
    font-size: 1.2rem;
    font-weight: 500;
}

.ecosystem-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .ecosystem-content {
        flex-direction: column;
        gap: 40px;
        text-align: left; /* left align on mobile */
    }
    
    .ecosystem-left {
        max-width: 100%;
    }
    
    .ecosystem-left p { font-size: 1.4rem; text-align: left; }
    
    .ecosystem-diagram {
        height: 300px;
    }
}

/* Wealth Section */
.wealth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 90px 40px;
    align-items: center;
    justify-items: center;
    position: relative;
}

/* Top row placeholders (left/right empty cells) */
.wg-top-left,
.wg-top-right { height: 1px; }

.wg-top-center {
    text-align: center;
    max-width: 560px;
    position: relative;
}

.wg-top-center h2 {
    font-size: 1.7rem;
    color: #1a1a1b;
    font-weight: 600;
    margin-bottom: 10px;
}

.wg-top-center p {
    font-size: 1.2rem;
    color: #1a1a1b;
    line-height: 1.5;
}

.wg-line-vertical {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -64px;
    width: 4px;
    height: 60px;
    background-color: #3d754e;
    border-radius: 2px;
}

/* Bottom row */
.wg-bottom-left,
.wg-bottom-center,
.wg-bottom-right {
    width: 100%;
}

.wg-bottom-left { justify-self: start; max-width: 320px; position: relative; }
.wg-bottom-right { justify-self: end; max-width: 320px; text-align: left; position: relative; }

.wg-bottom-left h3,
.wg-bottom-right h3 {
    font-size: 1.7rem;
    color: #1a1a1b;
    font-weight: 600;
    margin-bottom: 12px;
}

.wg-bottom-left p,
.wg-bottom-right p {
    font-size: 1.2rem;
    color: #1a1a1b;
    line-height: 1.6;
}

.wg-image-placeholder {
    width: 100%;
    max-width: 560px;
    height: 320px;
    border: 2px dashed #3d754e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(61,117,78,0.05);
    text-align: center;
    color: #3d754e;
    font-weight: 500;
}

/* Green horizontal lines on sides */
.wg-line-horizontal {
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: #3d754e;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.wg-line-horizontal.left { right: -100px; }
.wg-line-horizontal.right { left: -100px; }

@media (max-width: 900px) {
    .wealth-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 24px;
        justify-items: stretch;
    }
    .wg-top-left, .wg-top-right { display: none; }
    .wg-top-center { order: 1; }
    .wg-bottom-left { order: 2; }
    .wg-bottom-right { order: 3; }
    .wg-bottom-center { order: 4; } /* image last */
    .wg-bottom-left, .wg-bottom-right { max-width: 100%; }
    .wg-image-placeholder { height: 240px; max-width: 100%; }
    .wg-line-horizontal { position: static; display: inline-block; transform: none; width: 60px; margin-top: 12px; }
    /* Left align all wealth texts on mobile */
    .wg-top-center, .wg-bottom-left, .wg-bottom-right { text-align: left; }
    .wg-top-center p, .wg-bottom-left p, .wg-bottom-right p { text-align: left; }
}

/* Bottom Message Section */
.bottom-message {
    background-color: #f9f5ef;
    padding: 60px 0;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

.bottom-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 40px;
}

.bottom-divider {
    width: 6px;
    background-color: #3d754e;
    flex-shrink: 0;
}

.bottom-text {
    text-align: left;
    max-width: 900px;
}

.bottom-text h3 {
    font-size: 2.2rem;
    color: #1a1a1b;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cvm-info {
    margin-bottom: 0;
}

.cvm-info p {
    font-size: 1.4rem;
    color: #1a1a1b;
    line-height: 1.4;
    margin-bottom: 10px;
}


/* Page Divider */
.page-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #f9f5ef;
    color: #1a1a1b;
    padding: 60px 0;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.footer-content {
    display: flex;
    gap: 100px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: right;
}

.footer-logo {
    height: 220px;
    width: auto;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
}

.footer-right .title {
    font-size: 2rem;
    color: #1a1a1b;
    font-weight: bold;
    margin-bottom: 0px;
}

.footer-divider {
    width: 100%;
    height: 6px;
    background-color: #3d754e;
    margin: 20px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 1.2rem;
    color: #1a1a1b;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.contact-label.bold {
    text-decoration: underline;
}

.contact-value {
    font-size: 1rem;
    color: #1a1a1b;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    position: relative;
    z-index: 0; /* garante que o menu com z-index maior sobreponha */
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
    /* Left-align dropdown items on mobile */
    .contact-item.policies,
    .contact-item.policies .policies-trigger,
    .contact-item.policies .policies-menu,
    .contact-item.policies .policies-menu li a {
        text-align: left !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
    /* Fix z-index conflict with mobile navigation */
    .contact-item.policies {
        z-index: 500; /* abaixo do menu de navegação (1000) */
    }
    .policies-menu {
        z-index: 501; /* abaixo do menu de navegação */
    }
    /* Center arrow with text on mobile */
    .policies-trigger {
        align-items: center;
    }
    .policies-caret {
        margin-left: 8px;
        align-self: center;
    }
    .footer-logo {
        height: 100px;
        width: auto;
    }
}

.social-icon {
    font-size: 1.5rem;
    color: #1a1a1b;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #3d754e;
    transform: scale(1.1);
}

.policies-link {
    text-decoration: none;
    color: #1a1a1b;
    transition: color 0.3s ease;
}

.policies-link:hover {
    color: #3d754e;
    text-decoration: underline;
}

.social-icons a {
    text-decoration: none;
    color: inherit;
}

/* Discrete select for Políticas e Manuais */
.policies-select-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.policies-line {
    width: 6px;
    height: 28px;
    background-color: #3d754e;
    border-radius: 3px;
    flex-shrink: 0;
}

.policies-select {
    border: none;
    background: transparent;
    color: #1a1a1b;
    font-size: 1rem;
    padding: 6px 8px;
    cursor: pointer;
}

.policies-select:focus {
    outline: none;
    color: #3d754e;
}

.policies-select:hover {
    color: #3d754e;
}

/* Trigger-as-dropdown for Políticas e Manuais */
.contact-item.policies {
    position: relative;
    display: inline-block; /* permite que o menu use 100% da largura do trigger */
    z-index: 3000; /* elevar o contexto do dropdown acima de itens vizinhos */
}

.policies-trigger {
    background: transparent;
    border: 0;
    padding: 0;
    color: #1a1a1b;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none; /* sem underline */
}

.policies-trigger:hover,
.policies-trigger:focus {
    color: #3d754e;
    outline: none;
    text-decoration: none; /* garantir sem underline no hover/focus */
}

.policies-caret {
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

.policies-trigger[aria-expanded="true"] .policies-caret {
    transform: rotate(180deg);
}

.policies-menu {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 8px 12px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #f9f5ef; /* cor sólida para evitar transparência e reforçar contraste */
    border-radius: 8px; /* bordas levemente arredondadas */
    box-shadow: 0 6px 18px rgba(0,0,0,0.12); /* sombra sutil para destacar */
    width: auto; /* não precisa ocupar a largura do trigger */
    z-index: 9999; /* acima de social e outros elementos */
}

.policies-menu li a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    color: #1a1a1b;
    font-size: 0.8rem;
}

.policies-menu li a:hover,
.policies-menu li a:focus {
    color: #3d754e;
    outline: none;
}

/* Navigation Dots */
.section-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Mobile: ocultar linhas do Wealth Report */
@media (max-width: 768px) {
    .wg-line-vertical,
    .wg-line-horizontal {
        display: none !important;
    }
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #3d754e;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover,
.nav-dot.active {
    background-color: #3d754e;
    transform: scale(1.2);
}

/* Active section indicator */
.active-section {
    position: relative;
}

/* Remove page divider in fullscreen mode */
.page-divider {
    display: none;
}

/* Simplified Fixed Background Logo */
.parallax-logo {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    background-image: url('icon.svg');
    background-size: 80vh;
    background-repeat: no-repeat;
    background-position: 80% center;
    background-attachment: fixed;
}

.parallax-logo-img {
    display: none;
}

/* Bottom Message Section */
.bottom-message {
    padding: 60px 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

.bottom-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.bottom-divider {
    width: 6px;
    background-color: #3d754e;
    flex-shrink: 0;
    height: 400px;
}

.bottom-text {
    flex: 1;
}

.bottom-text h3 {
    font-size: 2.5rem;
    color: #1a1a1b;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cvm-info {
    margin-top: 30px;
}

.cvm-info p {
    font-size: 1.1rem;
    color: #1a1a1b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cvm-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
}


.policies-link {
    color: #1a1a1b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policies-link:hover {
    color: #3d754e;
}

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

    
   
    
    .about-content-1,
    .about-content-2,
    .values-content,
    .solutions-content,
    .serve-content,
    .wealth-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
    }
    
    /* Border-left dividers for mobile */
    .about-left-1,
    .values-left,
    .solutions-right,
    .serve-right,
    .wealth-left {
        border-left: 6px solid #3d754e;
        padding-left: 20px;
    }
    
    .about-highlight {
        padding-left: 0;
    }
    
    .about-stats {
        border-left: 6px solid #3d754e;
        padding-left: 20px;
    }
    
    .about-divider-1,
    .about-divider-2,
    .values-divider,
    .solutions-divider,
    .serve-divider,
    .wealth-divider {
        display: none;
    }
    
    .bottom-divider {
        height: 4px;
        width: 100%;
        margin: 20px 0;
        align-self: stretch;
    }
    
    .about-left-1 h3,
    .values-left h3,
    .solutions-right h3,
    .serve-right h3,
    .wealth-left h3 {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .about-right-1,
    .values-right,
    .solutions-left,
    .serve-left,
    .wealth-right,
    .about-highlight {
        padding-left: 0;
        text-align: left;
        margin-left: 0;
    }
    
    .about-right-1 p,
    .values-right p,
    .about-highlight p {
        font-size: 1.2rem;
    }
    
    .stat-item .number {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 1.75rem;
    }
    
    .about-highlight h4 {
        font-size: 1.54rem;
        text-align: left;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-right h3 {
        font-size: 1.96rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        justify-content: flex-start;
    }
    
    .bottom-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .bottom-text {
        text-align: left;
        max-width: 100%;
    }
    
    .bottom-text h3 {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .cvm-info p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .section-navigation {
        right: 15px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .fullpage-container {
        padding-top: 80px;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-image-placeholder {
        height: 150px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-left-1 h3,
    .values-left h3,
    .solutions-right h3,
    .serve-right h3,
    .wealth-left h3 {
        font-size: 2rem;
    }
    
    .stat-item .number {
        font-size: 1.4rem;
    }
    
    .stat-item p {
        font-size: 1.4rem;
    }
    
    .about-highlight h4 {
        font-size: 1.8rem;
    }
    
    .about-right-1 p,
    .values-right p,
    .about-highlight p {
        font-size: 1rem;
    }
    
    .solutions-list li,
    .serve-list li,
    .wealth-list li {
        font-size: 1.1rem;
    }
    
    .bottom-text h3 {
        font-size: 1.5rem;
    }
    
    .cvm-info p {
        font-size: 1rem;
    }
    
    .footer-right h3 {
        font-size: 2.2rem;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: left;
    }
    
    .section-navigation {
        right: 10px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 768px) {
    .hero {
        display: flex;
        gap: 60px;
        align-items: stretch;
        width: 100% !important;
        margin: 0 0 80px 0;
        margin-left: 0 !important;
        height: 60%;
    }

    .hero-content {
        display: flex;
        gap: 60px;
        align-items: stretch;
        width: 100% !important;
        margin: 0 auto;
        margin-left: 0 !important;
    }
    
    .hero-right {
        flex: 1;
        width: 100%;
        display: flex;
        gap: 40px;
        align-items: stretch;
    }
    .hero-text {
        flex: 1;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: left;
    }
    .bottom-message {
        padding: 60px 0;
        height: auto;
        display: flex
    ;
        flex-direction: column;
        justify-content: center;
        scroll-snap-align: start;
    }
    .ecosystem-diagram {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


}