/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1D360C;
    --secondary-color: #F7F31C;
    --accent-color: #2E5C1D;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #0A1A05;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

/* SEÇÃO HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* SEÇÃO 1: CABEÇALHO */
.header {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--background-light);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    background: transparent !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(247, 243, 28, 0.3);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.55);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 60px;
    margin-right: 15px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    z-index: 1001;
}

/* Linha Sublinhado */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-investimento {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-investimento:hover {
    background: #e6e219;
    transform: translateY(-2px);
}

.btn-investimento::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* CONTEÚDO DO HERÓI */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
    padding: 0 20px;
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--secondary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 243, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* SEÇÃO 2: POR QUE INVESTIR */
.why-invest-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

.financial-summary {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.financial-summary h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.financial-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.financial-item:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.financial-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.financial-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* SEÇÃO 3: OPORTUNIDADES DE INVESTIMENTO - CORRIGIDA */
.opportunities-section {
    padding: 100px 0;
    background: white;
}

.opportunities-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: #f8f9fa;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: #666;
    border: 2px solid transparent;
}

.tab-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.tab-content {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.tab-pane {
    display: none;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.opportunity-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.opportunity-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.opportunity-highlights {
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.highlight i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.highlight span {
    color: #555;
    font-weight: 500;
}

.investment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.detail-item h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.opportunity-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carbon-chart {
    width: 100%;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    width: 80px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.bar-fill {
    flex: 1;
    height: 30px;
    background: var(--primary-color);
    border-radius: 5px;
    position: relative;
    transition: width 1s ease;
}

.bar-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.wood-species, .bio-products, .partnership-benefits {
    width: 100%;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.wood-species h4, .bio-products h4, .partnership-benefits h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.species-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.species-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
}

.species-name {
    font-weight: 600;
    color: var(--primary-color);
}

.species-volume {
    color: #666;
    font-weight: 500;
}

.products-grid, .benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-item, .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: white;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.product-item:hover, .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-item i, .benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-item span, .benefit-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* SEÇÃO 4: VANTAGENS COMPETITIVAS */
.competitive-advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(29, 54, 12, 0.1);
    line-height: 1;
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* SEÇÃO 5: JORNADA DO INVESTIDOR */
.investor-journey {
    padding: 100px 0;
    background: white;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    z-index: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* SEÇÃO 6: DEPOIMENTOS - ESTILOS ATUALIZADOS */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231d360c' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(247, 243, 28, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.testimonial-avatar {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 54, 12, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-overlay {
    opacity: 1;
}

.avatar-overlay i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.testimonial-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(247, 243, 28, 0.3);
}

.quote-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: auto;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-author {
    padding: 20px 30px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.author-role {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.author-company {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
}

/* Navegação de depoimentos */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--accent-color);
}

/* Logos de empresas parceiras */
.partners-logos {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partners-logos h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* SEÇÃO 7: PERGUNTAS FREQUENTES */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* SEÇÃO 8: CALL TO ACTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* SEÇÃO 9: FORMULÁRIO DE CONTATO */
.contato-form-section {
    position: relative;
    padding: 100px 0;
    color: var(--text-dark);
    overflow: hidden;
    background: var(--background-light);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-content .section-header h2 {
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-content .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 243, 28, 0.3);
    box-shadow: var(--shadow);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e9ecef;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #666;
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(247, 243, 28, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e6e219;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 243, 28, 0.3);
}

/* RODAPÉ */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-right: 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.parceiros h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.parceiros h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.parceiros-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.parceiro-logo {
    background: white;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.parceiro-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.parceiro-logo img {
    height: 80px;
    width: 80px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.parceiro-logo:hover img {
    filter: grayscale(0%);
}

.company-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.company-info strong {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 243, 28, 0.2);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

/* BOTÃO VOLTAR AO TOPO */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e6e219;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .investment-highlights,
    .financial-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .journey-steps::before {
        left: 30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .financial-summary,
    .contact-form {
        padding: 30px 20px;
    }
    
    .investment-details {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* BANDEIRAS NO RODAPÉ */
.footer-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.flag-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.flag-container:hover {
    transform: translateY(-3px);
}

.flag-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.flag-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.flag-text {
    font-size: 12px;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
}

/* RESPONSIVIDADE DAS BANDEIRAS */
@media (max-width: 768px) {
    .footer-flags {
        gap: 12px;
        margin-top: 15px;
    }
    
    .flag-img {
        width: 100px;
        height: 67px;
    }
    
    .flag-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-flags {
        flex-direction: column;
        gap: 10px;
    }
    
    .flag-container {
        flex-direction: row;
        gap: 10px;
    }
    
    .flag-img {
        width: 80px;
        height: 53px;
    }
    
    .flag-text {
        font-size: 10px;
    }
}



/* SELETOR DE IDIOMA  */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-link {
    color: inherit;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.lang-link:hover,
.lang-link:focus {
    background: rgba(247, 243, 28, 0.2);
    color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Em telas maiores, o seletor de idiomas aparece fora do menu hambúrguer, alinhado à direita */
@media (min-width: 769px) {
    .language-selector {
        margin-left: 30px;
        position: static;
    }
}

/* Em telas menores, o seletor de idiomas aparece dentro do menu hambúrguer */
@media (max-width: 768px) {
    .language-selector {
        margin: 15px 0;
        justify-content: center;
        font-size: 0.9rem;
    }

    .lang-link {
        padding: 6px 10px;
    }

    /* Garante que o seletor de idiomas siga o estilo do menu hambúrguer quando aberto */
    .hamburger-menu .language-selector {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        font-size: 0.85rem;
    }
}