/**
 * ORIGEM SECTION CSS
 * @package Nuntius Theme
 */

.about-origem-section {
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #16213e 50%, #1a1a2e 100%);
    overflow: hidden;
    padding: 80px 0 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.origem-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.origem-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.origem-header {
    text-align: center;
    margin-bottom: 80px;
}

.origem-content {
    position: relative;
    width: 100%;
}

.origem-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FAA61A, #F04747);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(250, 166, 26, 0.4);
}

.origem-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    font-weight: 900;
}

.highlight-neon {
    color: #FAA61A;
    text-shadow: 0 0 20px rgba(250, 166, 26, 0.8);
}

/* TIMELINE */
.origem-timeline {
    position: relative;
    width: 100%;
}

.timeline-point {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
    align-items: start;
}

.timeline-point[data-aos="fade-right"].aos-animate,
.timeline-point[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-point-reverse {
    direction: rtl;
}

.timeline-point-reverse .point-content {
    direction: ltr;
}

.point-marker {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(47, 49, 54, 0.6);
    border: 3px solid #5865F2;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.marker-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: originMarkerGlow 3s ease-in-out infinite;
}

@keyframes originMarkerGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.point-year {
    font-size: 1.8rem;
    font-weight: 900;
    color: #5865F2;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.8);
    position: relative;
    z-index: 2;
}

.point-icon {
    font-size: 50px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.8));
}

.point-content {
    background: rgba(26, 27, 30, 0.95);
    border: 2px solid rgba(250, 166, 26, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    min-height: 200px;
    min-width: 500px;
}

.point-content:hover {
    border-color: #FAA61A;
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(250, 166, 26, 0.5);
}

.point-title {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.point-text {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.point-text strong {
    color: #fff;
    font-weight: 700;
}

.point-text .highlight-founder {
    color: #5865F2;
    font-weight: 800;
}

.point-text .neon-inline {
    color: #7289DA;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(114, 137, 218, 0.5);
}

.point-text .highlight-stat {
    color: #43B581;
    font-weight: 800;
    font-size: 1.2rem;
}

/* STATS */
.origem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 100px;
    padding-bottom: 40px;
}

.stat-item {
    background: rgba(47, 49, 54, 0.5);
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: #5865F2;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.4);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.6));
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #5865F2;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #B9BBBE;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .about-origem-section { padding: 80px 0; }
    .origem-container { padding: 0 20px; }
    .timeline-point, .timeline-point-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }
    .point-marker { margin: 0 auto 25px; }
    .origem-title { font-size: 2.5rem; }
    .point-title { font-size: 1.5rem; }
    .origem-stats { grid-template-columns: 1fr; }
}
