/* Big Idea + Storytelling Section Styles */

.big-idea-section {
    background-color: #0A231A;
    background-image: linear-gradient(135deg, #0A231A 0%, #0D2C22 100%);
    color: #FFFFFF;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Efeito de linhas sutis no fundo */
.big-idea-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(20, 200, 96, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(20, 200, 96, 0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 1;
}

.big-idea-section .content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Caminho de descoberta - elemento visual */
.discovery-path {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.path-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    position: relative;
    box-shadow: 0 0 15px rgba(20, 200, 96, 0.5);
}

.path-dot:nth-child(1) {
    animation: pulseDot 3s infinite alternate;
}

.path-dot:nth-child(3) {
    animation: pulseDot 3s infinite alternate 1s;
}

.path-dot:nth-child(5) {
    animation: pulseDot 3s infinite alternate 2s;
}

.path-line {
    width: 2px;
    height: 25%;
    background: linear-gradient(to bottom, var(--color-primary), rgba(20, 200, 96, 0.2));
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(20, 200, 96, 0.5);
    }
    100% {
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(20, 200, 96, 0.8);
    }
}

/* Efeito de brilho nas linhas */
.path-line {
    position: relative;
    overflow: hidden;
}

.path-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: lineGlow 4s infinite linear;
}

@keyframes lineGlow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(500%);
    }
}

.big-idea-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 1.5rem;
}

.big-idea-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.big-idea-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.big-idea-section p:last-child {
    margin-bottom: 0;
}

.big-idea-section strong {
    font-weight: 700;
    color: var(--color-white);
}

.big-idea-section .highlight {
    position: relative;
    color: var(--color-primary);
    font-weight: 700;
}

/* Removida a barra vertical
.big-idea-section .highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 90%;
    background-color: var(--color-primary);
    border-radius: 2px;
}
*/

/* Destaque lateral para todos os parágrafos */
.big-idea-section p {
    position: relative;
    padding-left: 1.5rem;
}

.big-idea-section p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    background-color: rgba(20, 200, 96, 0.2);
    border-radius: 2px;
}

/* Efeito de ondulação sutil no fundo */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.big-idea-section {
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .big-idea-section {
        padding: 3rem 1.5rem;
    }
    
    .big-idea-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .big-idea-section p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .discovery-path {
        right: 1%;
        height: 70%;
    }
    
    .path-dot {
        width: 12px;
        height: 12px;
    }
}

/* Efeito de destaque para criar profundidade */
.big-idea-section p:nth-child(odd)::before {
    background-color: rgba(20, 200, 96, 0.3);
}

.big-idea-section p:hover::before {
    background-color: var(--color-primary);
    transition: background-color 0.3s ease;
}

/* Transição suave entre seções */
.big-idea-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0A231A);
    pointer-events: none;
}
