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

:root {
    --bg-dark: #0a0e27;
    --bg-card: #0f1629;
    --accent-blue: #00B4FF;
    --accent-bright: #00D4FF;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
    --border-blue: #1a3a5c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.slides-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 40px;
    pointer-events: none;
    overflow: hidden;
}

.slide.scrollable-slide {
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
    pointer-events: auto;
}

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

.slide-content {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    padding: 20px;
    margin: 0 auto;
}

.scrollable-slide .slide-content {
    min-height: calc(100vh - 160px);
    justify-content: flex-start;
    padding: 40px 20px;
}

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

/* Capa */
.cover-slide {
    gap: 30px;
    justify-content: center;
    min-height: auto;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wolf-logo {
    width: 150px;
    height: 150px;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollable-slide .wolf-logo {
    width: 200px;
    height: 200px;
}

.wolf-logo.small {
    width: 100px;
    height: 100px;
}

.scrollable-slide .wolf-logo.small {
    width: 120px;
    height: 120px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 180, 255, 0.5));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.main-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scrollable-slide .main-title {
    font-size: 4rem;
    gap: 10px;
    letter-spacing: 4px;
}

.title-line {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
}

.title-line.highlight {
    font-size: 4rem;
    color: var(--accent-bright);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

.scrollable-slide .title-line.highlight {
    font-size: 5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 15px;
}

.scrollable-slide .subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
}

.subtitle-small {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Títulos de Seção */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    margin-top: 0;
    text-shadow: 0 0 15px rgba(0, 180, 255, 0.3);
    text-align: center;
}

.scrollable-slide .section-title {
    font-size: 3rem;
    margin-top: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.scrollable-slide .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* (sem estilos específicos para slide-ingressos; títulos voltam ao comportamento padrão) */

/* Cards de Formas de Ganho */
.income-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin: 30px auto 20px;
    padding: 0 20px;
}

.scrollable-slide .income-cards {
    margin: 60px auto 40px;
    gap: 20px;
}

.income-card {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    flex: 1;
    text-align: center;
}

.scrollable-slide .income-card {
    padding: 35px 20px;
    min-height: 300px;
    border-radius: 20px;
}

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

.income-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 180, 255, 0.3);
}

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

.income-card.highlight-card {
    border-color: var(--accent-bright);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 180, 255, 0.15) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.income-card.highlight-card::before {
    background: var(--accent-bright);
    transform: scaleX(1);
}

.income-card.highlight-card:hover {
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 10px;
    line-height: 1;
    flex-shrink: 0;
}

.scrollable-slide .card-number {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.income-card.highlight-card .card-number {
    font-size: 3rem;
    color: var(--accent-bright);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.scrollable-slide .income-card.highlight-card .card-number {
    font-size: 4rem;
}

.income-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollable-slide .income-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.income-card.highlight-card h3 {
    font-size: 1.2rem;
    color: var(--accent-bright);
}

.scrollable-slide .income-card.highlight-card h3 {
    font-size: 1.4rem;
}

.card-percentage {
    font-size: 0.9rem;
    color: var(--accent-bright);
    font-weight: 600;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 180, 255, 0.2);
    width: 100%;
}

.scrollable-slide .card-percentage {
    font-size: 1rem;
    padding-top: 15px;
}

.income-card.highlight-card .card-percentage {
    font-size: 1rem;
    color: var(--accent-bright);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    border-top-color: rgba(0, 212, 255, 0.3);
}

.scrollable-slide .income-card.highlight-card .card-percentage {
    font-size: 1.15rem;
}

/* Exemplos e Cálculos */
.example-box {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

/* Evitar que o último exemplo fique colado ou escondido atrás da navegação */
.slide .example-box:last-of-type {
    margin-bottom: 90px;
}

.scrollable-slide .example-box {
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 900px;
}

.example-title {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.scrollable-slide .example-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.calculation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scrollable-slide .calculation {
    gap: 20px;
}


.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: rgba(0, 180, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

.scrollable-slide .calc-item {
    padding: 15px 20px;
    border-radius: 10px;
}

.calc-label {
    font-size: 1rem;
    color: var(--text-light);
}

.scrollable-slide .calc-label {
    font-size: 1.1rem;
}

.calc-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.scrollable-slide .calc-value {
    font-size: 1.3rem;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 8px;
    border: 2px solid var(--accent-blue);
    margin-top: 5px;
}

.scrollable-slide .calc-result {
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

.calc-result .calc-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.scrollable-slide .calc-result .calc-label {
    font-size: 1.3rem;
}

.calc-result .calc-value.highlight {
    font-size: 1.5rem;
    color: var(--accent-bright);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.scrollable-slide .calc-result .calc-value.highlight {
    font-size: 2rem;
}

.highlight {
    color: var(--accent-bright);
}

/* Método Alcateia - Planos */
.method-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 25px auto;
}

.scrollable-slide .method-plans {
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.scrollable-slide .plan-card {
    padding: 40px;
    border-radius: 20px;
}

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

.plan-card.highlight-card {
    border-color: var(--accent-bright);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 180, 255, 0.15) 100%);
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.scrollable-slide .plan-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.plan-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0, 180, 255, 0.05);
    border-radius: 10px;
}

.plan-item.highlight {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--accent-blue);
}

.plan-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.plan-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.plan-item.highlight .plan-value {
    color: var(--accent-bright);
    font-size: 1.5rem;
}

/* Societário */
.societario-box {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
}

.requirements {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.requirements h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.requirements-list {
    list-style: none;
    text-align: left;
}

.requirements-list li {
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.exclusive-note {
    font-size: 1.2rem;
    color: var(--accent-bright);
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-bright);
}

/* Visão */
.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 25px auto;
}

.scrollable-slide .vision-content {
    gap: 30px;
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.vision-card {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.scrollable-slide .vision-card {
    padding: 40px;
    border-radius: 20px;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.2);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.scrollable-slide .vision-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.5;
}

.scrollable-slide .vision-card h3 {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Direcionamento - Jornada */
.journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1300px;
    margin: 25px auto;
}

.scrollable-slide .journey-path {
    gap: 20px;
    max-width: 1400px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 12px;
    padding: 20px 15px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.scrollable-slide .journey-step {
    gap: 15px;
    border-radius: 15px;
    padding: 30px 20px;
    min-width: 180px;
}

.journey-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.2);
}

.journey-step.highlight-step {
    border-color: var(--accent-bright);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 180, 255, 0.15) 100%);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.scrollable-slide .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

.highlight-step .step-number {
    background: var(--accent-bright);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.scrollable-slide .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.highlight-step .step-content h3 {
    color: var(--accent-bright);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.scrollable-slide .step-content p {
    font-size: 0.95rem;
}

.journey-arrow {
    font-size: 2.5rem;
    color: var(--accent-blue);
    font-weight: 900;
}

/* Posicionamento */
.positioning-content {
    width: 100%;
    max-width: 1100px;
    margin: 25px auto;
}

.scrollable-slide .positioning-content {
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.positioning-main {
    margin-bottom: 50px;
}

.positioning-quote {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-white);
}

.scrollable-slide .positioning-quote {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.positioning-quote.highlight {
    color: var(--accent-bright);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.positioning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.scrollable-slide .positioning-cards {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.positioning-card {
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.scrollable-slide .positioning-card {
    padding: 40px;
    border-radius: 20px;
}

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

.positioning-card.highlight-card {
    border-color: var(--accent-bright);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 180, 255, 0.15) 100%);
}

.positioning-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    line-height: 1.4;
}

.scrollable-slide .positioning-card h3 {
    font-size: 1.8rem;
    line-height: 1.5;
}

.highlight-card h3 {
    color: var(--accent-bright);
}

/* Transformação */
.transformation-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 25px auto;
}

.scrollable-slide .transformation-content {
    gap: 30px;
    max-width: 1000px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.transformation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    border-radius: 12px;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.scrollable-slide .transformation-item {
    gap: 30px;
    border-radius: 15px;
    padding: 30px 40px;
}

.transformation-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.2);
}

.transformation-arrow {
    font-size: 2.5rem;
    color: var(--accent-blue);
    font-weight: 900;
}

.scrollable-slide .transformation-arrow {
    font-size: 3rem;
}

.transformation-item h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.scrollable-slide .transformation-item h3 {
    font-size: 1.8rem;
}

.vision-statement {
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.scrollable-slide .vision-statement {
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.vision-statement p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.scrollable-slide .vision-statement p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.vision-statement strong {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.scrollable-slide .vision-statement strong {
    font-size: 1.5rem;
}

/* Fechamento */
.closing-slide {
    gap: 40px;
    justify-content: center;
    min-height: auto;
}

.closing-quote {
    max-width: 900px;
    padding: 35px;
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 180, 255, 0.3);
}

.scrollable-slide .closing-quote {
    padding: 50px;
    border-radius: 20px;
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--text-white);
    font-style: italic;
    position: relative;
}

.scrollable-slide .quote-text {
    font-size: 2.2rem;
    line-height: 1.6;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.5;
}

.quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    position: absolute;
    bottom: -40px;
    right: -30px;
    opacity: 0.5;
}

.closing-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.scrollable-slide .closing-title {
    font-size: 2.5rem;
    gap: 10px;
    letter-spacing: 3px;
}

.closing-title .highlight {
    font-size: 2.5rem;
    color: var(--accent-bright);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

.scrollable-slide .closing-title .highlight {
    font-size: 3rem;
}

/* Navegação */
.slide-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid var(--border-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Indicador de scroll */
.scroll-indicator {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Slide de fechamento / posicionamento final */
.closing-cta {
    gap: 30px;
}

.closing-cta-box {
    max-width: 800px;
    width: 100%;
    margin: 10px auto 0;
    padding: 24px 26px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 2px solid var(--border-blue);
    color: var(--text-light);
    text-align: left;
    line-height: 1.7;
}

.plans-cta-button {
    display: inline-block;
    margin-top: 26px;
    padding: 18px 46px;
    border-radius: 999px;
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(0, 180, 255, 0.05));
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.3);
    transition: all 0.3s ease;
}

.plans-cta-button:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.45);
    transform: translateY(-2px);
}

.plans-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3);
}

/* Responsividade */
@media (max-width: 1400px) {
    .income-cards {
        max-width: 1200px;
        gap: 18px;
    }
    
    .income-card {
        padding: 30px 18px;
        min-height: 280px;
    }
    
    .card-number {
        font-size: 3rem;
    }
    
    .income-card.highlight-card .card-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .income-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
    
    .income-card {
        min-height: 260px;
    }
}

@media (max-width: 900px) {
    .income-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 60px 20px;
    }

    .slide-content {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .title-line.highlight {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .income-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .income-card {
        min-height: 220px;
        padding: 30px 20px;
    }

    .card-number {
        font-size: 3rem;
    }

    .journey-path {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .positioning-quote {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .slide-nav {
        padding: 12px 15px;
    }
}

/* Animações de entrada */
.slide.active .slide-content {
    animation: fadeInUp 0.8s ease-out;
}

.slide.active .income-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.slide.active .income-card:nth-child(1) {
    animation-delay: 0.1s;
}

.slide.active .income-card:nth-child(2) {
    animation-delay: 0.2s;
}

.slide.active .income-card:nth-child(3) {
    animation-delay: 0.3s;
}

.slide.active .income-card:nth-child(4) {
    animation-delay: 0.4s;
}

.slide.active .income-card:nth-child(5) {
    animation-delay: 0.5s;
}

