/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0b3d1e 0%, #003366 100%);
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

/* Cores institucionais */
:root {
    --primary-green: #0b3d1e;
    --primary-blue: #003366;
    --accent-white: #ffffff;
    --light-green: #2d5a3d;
    --light-blue: #1a4d73;
    --gold: #ffd700;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Container principal */
.presentation-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3rem 2.5rem;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.amazon-bg {
    background: linear-gradient(rgba(11, 61, 30, 0.8), rgba(0, 51, 102, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="trees" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="80" r="15" fill="%23228B22" opacity="0.3"/><circle cx="50" cy="70" r="20" fill="%2332CD32" opacity="0.3"/><circle cx="80" cy="85" r="12" fill="%23228B22" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23trees)"/></svg>');
    background-size: cover;
    background-position: center;
}

.forest-bg {
    background: linear-gradient(rgba(11, 61, 30, 0.9), rgba(0, 51, 102, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="100%" height="100%" fill="%230b3d1e"/><g opacity="0.2"><circle cx="200" cy="600" r="80" fill="%2332CD32"/><circle cx="400" cy="650" r="60" fill="%23228B22"/><circle cx="600" cy="620" r="90" fill="%2332CD32"/><circle cx="800" cy="640" r="70" fill="%23228B22"/><circle cx="1000" cy="610" r="85" fill="%2332CD32"/></g></svg>');
    background-size: cover;
}

/* Conteúdo dos slides */
.slide-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Títulos */
.slide-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px var(--shadow);
}

/* Slide 1 - Capa */
.cover-slide {
    text-align: center;
    position: relative;
}

.cover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="400" fill="%2387CEEB"/><path d="M0 350 Q200 300 400 320 Q600 280 800 300 Q1000 260 1200 280 L1200 400 L0 400 Z" fill="%234682B4" opacity="0.6"/><path d="M0 400 Q150 380 300 390 Q450 370 600 385 Q750 365 900 380 Q1050 360 1200 375 L1200 500 L0 500 Z" fill="%23228B22" opacity="0.8"/><path d="M0 450 Q100 430 250 440 Q400 420 550 435 Q700 415 850 430 Q1000 410 1200 425 L1200 550 L0 550 Z" fill="%2332CD32" opacity="0.7"/><rect x="150" y="520" width="8" height="80" fill="%238B4513"/><circle cx="154" cy="500" r="25" fill="%23228B22"/><rect x="300" y="530" width="10" height="70" fill="%238B4513"/><circle cx="305" cy="510" r="30" fill="%2332CD32"/><path d="M0 650 Q200 630 400 650 Q600 670 800 650 Q1000 630 1200 650 L1200 680 Q1000 660 800 680 Q600 700 400 680 Q200 660 0 680 Z" fill="%234169E1" opacity="0.6"/><rect x="0" y="0" width="1200" height="800" fill="rgba(0,0,0,0.3)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.logo-container {
    margin-bottom: 2rem;
}

.company-logo {
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.main-title h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-title h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--accent-white);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.key-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 0.5rem;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certification-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-logo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.cert-logo:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* Slide 2 - Quem Somos */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    padding: 0 1rem;
    box-sizing: border-box;
}

.two-column-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><pattern id="leafPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 10 Q35 20 25 30 Q15 20 25 10" fill="%2390EE90" opacity="0.1"/><path d="M10 35 Q20 45 10 55 Q0 45 10 35" fill="%2332CD32" opacity="0.1"/></pattern><rect width="100" height="100" fill="url(%23leafPattern)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: -1;
}

.company-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gold);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    box-sizing: border-box;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 1rem;
    width: 30px;
}

.esg-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.esg-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.esg-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.esg-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.esg-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Slide 3 - Visão Geral */
.project-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.detail-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Slide 4 - Impacto ESG */
.esg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.esg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="200" r="80" fill="%2332CD32" opacity="0.1"/><circle cx="600" cy="150" r="60" fill="%234169E1" opacity="0.1"/><circle cx="1000" cy="250" r="70" fill="%23FFD700" opacity="0.1"/><circle cx="300" cy="600" r="90" fill="%2332CD32" opacity="0.08"/><circle cx="900" cy="650" r="75" fill="%234169E1" opacity="0.08"/></svg>');
    background-size: cover;
    opacity: 0.6;
    z-index: -1;
}

.esg-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.esg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.esg-card:hover::before {
    transform: scaleX(1);
}

.esg-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.esg-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.esg-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Slide 5 - Estrutura do Empréstimo */
.loan-structure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loan-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loan-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.loan-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.loan-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1.5rem;
    width: 40px;
}

.loan-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.allocation-chart {
    text-align: center;
}

.allocation-chart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #ff6b6b 0deg 108deg,
        #4ecdc4 108deg 180deg,
        #45b7d1 180deg 252deg,
        #96ceb4 252deg 360deg
    );
    margin: 0 auto 2rem;
    position: relative;
    animation: rotateChart 2s ease-in-out;
}

@keyframes rotateChart {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    margin: 0 1rem;
    padding: 1rem;
    box-sizing: border-box;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.legend-item .color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 0.5rem;
}

.color.monitoring { background: #ff6b6b; }
.color.education { background: #4ecdc4; }
.color.training { background: #45b7d1; }
.color.operations { background: #96ceb4; }

/* Slide 6 - Viabilidade Financeira */
.financial-analysis {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.roi-simulation h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gold);
}

.financial-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.1);
}

.metric.highlight {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--gold);
}

.metric .label {
    font-weight: 500;
}

.metric .value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
}

.alternative-model {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.alternative-model h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

.alternative-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 1rem;
}

/* Slide 7 - Garantias */
/* Guarantees Container */
.guarantees-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* B3 Screenshot Simulation */
.b3-screenshot {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.b3-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.b3-logo {
    background: white;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.b3-header span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.b3-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.credit-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.credit-id {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.credit-amount {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.credit-status {
    color: #10b981;
    font-weight: bold;
}

.credit-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.credit-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.guarantee-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Slide 8 - Impacto Sustentável */
.impact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-quadrants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.impact-card.financial {
    border-left: 4px solid var(--gold);
}

.impact-card.environmental {
    border-left: 4px solid #10b981;
}

.impact-card.social {
    border-left: 4px solid #3b82f6;
}

.impact-card.biodiversity {
    border-left: 4px solid #8b5cf6;
}

.impact-card svg,
.impact-card i {
    color: var(--gold);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.impact-metric {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Impact Chart */
.impact-chart {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-chart h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 200px;
    gap: 2rem;
    margin: 0 1rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar {
    width: 60px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.bar:hover {
    transform: scaleY(1.05);
}

.financial-bar {
    background: linear-gradient(to top, var(--gold), #fbbf24);
}

.environmental-bar {
    background: linear-gradient(to top, #10b981, #34d399);
}

.social-bar {
    background: linear-gradient(to top, #3b82f6, #60a5fa);
}

.bar-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Slide 9 - Como Avançar */
.timeline-container {
    margin-top: 2rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
    overflow-x: auto;
    gap: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), #fbbf24, var(--gold));
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 180px;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.timeline-content p strong {
    color: var(--gold);
    font-weight: 600;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        min-width: auto;
        width: 100%;
    }
}

/* Slide 10 - Entre em Contato */
.contact-slide {
    background: linear-gradient(135deg, #1a4d3a, #0f2419);
    position: relative;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    min-height: 100vh;
    justify-content: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 600px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-person:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.person-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.person-info h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.person-title {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #22c55e;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    color: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fbbf24, var(--gold));
}

.forest-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-person {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .person-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-container {
        padding: 1rem;
        gap: 2rem;
    }
}

/* Navegação */
.navigation {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.4rem 0.8rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Fortune Logo Footer */
.fortune-footer {
    position: fixed;
    bottom: 10px;
    right: 20px;
    opacity: 0.6;
    z-index: 999;
}

.fortune-footer svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-btn {
    background: var(--gold);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-size: 0.7rem;
}

.nav-btn:hover {
    background: var(--accent-white);
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

.slide-counter {
    color: var(--accent-white);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Indicadores de slide */
.slide-indicators {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    margin-top: 4rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--accent-white);
    transform: scale(1.2);
}

/* Responsividade Completa */

/* Desktop Grande (1200px+) */
@media (min-width: 1200px) {
    .navigation {
        top: 2rem;
        right: 2rem;
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .slide-counter {
        font-size: 0.8rem;
    }
    
    .slide-indicators {
        right: 2rem;
        margin-top: 4rem;
    }
}

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .navigation {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.35rem 0.7rem;
        gap: 0.45rem;
    }
    
    .nav-btn {
        width: 23px;
        height: 23px;
        font-size: 0.65rem;
    }
    
    .slide-counter {
        font-size: 0.75rem;
    }
    
    .slide-indicators {
        right: 1.5rem;
        margin-top: 3.5rem;
    }
}

/* Tablet Portrait e Desktop Pequeno (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .slide {
        padding: 2.5rem 2rem;
    }
    
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .two-column-layout,
    .project-overview,
    .loan-structure,
    .financial-analysis {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .esg-grid,
    .guarantees-grid,
    .benefit-quadrants {
        grid-template-columns: 1fr;
    }
    
    .key-info {
        grid-template-columns: 1fr;
    }
    
    .main-title h1 {
        font-size: 3rem;
    }
    
    .main-title h2 {
        font-size: 2rem;
    }
    
    .navigation {
        top: 1.2rem;
        right: 1.2rem;
        padding: 0.32rem 0.65rem;
        gap: 0.42rem;
    }
    
    .nav-btn {
        width: 22px;
        height: 22px;
        font-size: 0.62rem;
    }
    
    .slide-counter {
        font-size: 0.72rem;
    }
    
    .slide-indicators {
        right: 1.2rem;
        margin-top: 3.2rem;
    }
}

/* Smartphone Grande (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .slide {
        padding: 2rem 1.5rem;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .info-card {
        margin: 0 0.25rem;
        padding: 1.5rem;
    }
    
    .chart-legend,
    .chart-bars {
        margin: 0 0.5rem;
        padding: 0 0.5rem;
    }
    
    .certification-logos {
        gap: 1rem;
    }
    
    .cert-logo {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .main-title h1 {
        font-size: 2.5rem;
    }
    
    .main-title h2 {
        font-size: 1.8rem;
    }
    
    .navigation {
        top: 1rem;
        right: 1rem;
        padding: 0.3rem 0.6rem;
        gap: 0.4rem;
        border-radius: 12px;
    }
    
    .nav-btn {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
    
    .slide-counter {
        font-size: 0.7rem;
    }
    
    .slide-indicators {
        right: 1rem;
        margin-top: 3rem;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Smartphone Pequeno (até 479px) */
@media (max-width: 479px) {
    .slide {
        padding: 1.5rem 1rem;
    }
    
    .slide-content {
        padding: 0 0.5rem;
    }
    
    .info-card {
        margin: 0 0.125rem;
        padding: 1rem;
    }
    
    .chart-legend,
    .chart-bars {
        margin: 0 0.25rem;
        padding: 0 0.25rem;
    }
    
    .info-item {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        padding: 0.75rem;
    }
    
    .certification-logos {
        gap: 0.5rem;
    }
    
    .cert-logo {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .main-title h1 {
        font-size: 2.2rem;
    }
    
    .main-title h2 {
        font-size: 1.6rem;
    }
    
    .navigation {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.25rem 0.5rem;
        gap: 0.35rem;
        border-radius: 10px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    }
    
    .nav-btn {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }
    
    .slide-counter {
        font-size: 0.65rem;
    }
    
    .slide-indicators {
        right: 0.8rem;
        margin-top: 2.5rem;
        gap: 0.7rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .fortune-footer {
        bottom: 8px;
        right: 15px;
    }
    
    .fortune-footer svg {
        width: 35px;
        height: 35px;
    }
}

/* Orientação Landscape em Dispositivos Móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .slide {
        padding: 1rem 1.5rem;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .navigation {
        top: 0.5rem;
        right: 0.8rem;
        padding: 0.2rem 0.4rem;
        gap: 0.3rem;
        border-radius: 8px;
    }
    
    .nav-btn {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .slide-counter {
        font-size: 0.6rem;
    }
    
    .slide-indicators {
        right: 0.5rem;
        margin-top: 2rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .fortune-footer {
        bottom: 5px;
        right: 10px;
    }
    
    .fortune-footer svg {
        width: 30px;
        height: 30px;
    }
}

/* Telas Ultra-Wide (1400px+) */
@media (min-width: 1400px) {
    .navigation {
        top: 2.5rem;
        right: 2.5rem;
        padding: 0.5rem 1rem;
        gap: 0.6rem;
    }
    
    .nav-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .slide-counter {
        font-size: 0.9rem;
    }
    
    .slide-indicators {
        right: 2.5rem;
        margin-top: 4.5rem;
    }
}

/* Dispositivos com Touch (melhor área de toque) */
@media (pointer: coarse) {
    .nav-btn {
        min-width: 20px;
        min-height: 20px;
    }
    
    .indicator {
        min-width: 10px;
        min-height: 10px;
    }
}

/* Modo de Alto Contraste */
@media (prefers-contrast: high) {
    .navigation {
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid var(--gold);
    }
    
    .nav-btn {
        border: 1px solid var(--primary-blue);
    }
    
    .indicator {
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
}

/* Redução de Movimento */
@media (prefers-reduced-motion: reduce) {
    .nav-btn,
    .indicator {
        transition: none;
    }
    
    .nav-btn:hover {
        transform: none;
    }
}

/* Acessibilidade e Foco do Teclado */
.nav-btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.nav-btn:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.indicator:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.indicator:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* Estados de Hover Melhorados */
@media (hover: hover) {
    .nav-btn:hover {
        background: var(--accent-white);
        transform: scale(1.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .indicator:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }
}

/* Melhorias para Screen Readers */
.nav-btn[aria-label],
.indicator[aria-label] {
    position: relative;
}

/* Tooltip para Acessibilidade */
.nav-btn::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.nav-btn:hover::after,
.nav-btn:focus::after {
    opacity: 1;
}

/* Responsividade para Tooltips */
@media (max-width: 767px) {
    .nav-btn::after {
        font-size: 0.6rem;
        bottom: -1.5rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 479px) {
    .nav-btn::after {
        display: none; /* Ocultar tooltips em telas muito pequenas */
    }
}
     
    .project-details {
        grid-template-columns: 1fr;
    }
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide.active .info-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.slide.active .info-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.slide.active .info-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

.slide.active .esg-card:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.slide.active .esg-card:nth-child(2) { animation: slideInRight 0.6s ease-out 0.2s both; }
.slide.active .esg-card:nth-child(3) { animation: slideInLeft 0.6s ease-out 0.3s both; }
.slide.active .esg-card:nth-child(4) { animation: slideInRight 0.6s ease-out 0.4s both; }

.slide.active .timeline-item:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.slide.active .timeline-item:nth-child(2) { animation: slideInLeft 0.6s ease-out 0.2s both; }
.slide.active .timeline-item:nth-child(3) { animation: slideInLeft 0.6s ease-out 0.3s both; }
.slide.active .timeline-item:nth-child(4) { animation: slideInLeft 0.6s ease-out 0.4s both; }
.slide.active .timeline-item:nth-child(5) { animation: slideInLeft 0.6s ease-out 0.5s both; }

/* Estilos para ícones SVG */
svg {
    display: inline-block;
    vertical-align: middle;
}

.slide svg {
    transition: all 0.3s ease;
}

.slide svg:hover {
    transform: scale(1.1);
}