/* ====================================
   CRIAÇÃO DE BLOG - CSS FUTURISTA
   Cores: #000000 (preto), #FF4000 (laranja), #FFFFFF (branco)
   ==================================== */

/* ========== VARIÁVEIS E RESET ========== */
:root {
    --primary-orange: #FF4000;
    --secondary-orange: #FF6B35;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --white: #FFFFFF;
    --gradient-orange: linear-gradient(135deg, #FF4000 0%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* ========== HERO SECTION ========== */
.blog-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
    padding: 180px 0 100px;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at left, rgba(255, 64, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at right, rgba(255, 64, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 64, 0, 0.1) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 64, 0, 0.03) 2px, rgba(255, 64, 0, 0.03) 4px);
    animation: scanline 8s linear infinite;
}

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

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.blog-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

.blog-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.blog-hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

.blog-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.blog-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.4);
    color: var(--white);
}

.blog-cta-btn:hover::before {
    left: 100%;
}

/* Hero Visual com Hologramas */
.blog-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-center {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hologram-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.hologram-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px solid rgba(255, 64, 0, 0.5);
    border-radius: 50%;
    animation: rotate 5s linear infinite reverse;
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-orange);
}

.floating-card span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

/* ========== WHY BLOG SECTION ========== */
.why-blog-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 0, 0.05) 0%, transparent 60%);
    animation: moveBackground 20s ease-in-out infinite;
}

@keyframes moveBackground {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(25%); }
}

.section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.why-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 30px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
}

.why-card:hover::before {
    opacity: 0.1;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 40px;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.why-card:hover .why-icon i {
    transform: scale(1.1) rotate(10deg);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.why-card:hover .card-hover-effect {
    transform: scaleX(1);
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-network {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 64, 0, 0.03) 50px, rgba(255, 64, 0, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 64, 0, 0.03) 50px, rgba(255, 64, 0, 0.03) 51px);
    opacity: 0.5;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.process-step:nth-child(even) .step-features {
    justify-content: flex-end;
}

.step-number {
    font-size: 120px;
    font-weight: 900;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.1;
    line-height: 1;
}

.step-content {
    flex: 1;
    padding: 40px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    position: relative;
    z-index: 5;
    transition: all 0.5s ease;
}

/* Seta conectora entre os boxes */
.process-step::after {
    content: '↓';
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    font-size: 40px;
    color: var(--primary-orange);
    font-weight: bold;
    animation: arrowBounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) translateY(10px);
        opacity: 0.6;
    }
}

/* Remover seta do último step */
.process-step:last-child::after {
    display: none;
}

.process-step:hover .step-content {
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 64, 0, 0.2);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
}

.step-icon i {
    font-size: 28px;
    color: var(--white);
}

.pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.step-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 64, 0, 0.1);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.step-features span:hover {
    background: rgba(255, 64, 0, 0.2);
    border-color: var(--primary-orange);
}

.step-features span i {
    color: var(--primary-orange);
    font-size: 12px;
}

@keyframes connectorPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.3); }
}

.process-cta {
    margin-top: 80px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: left 0.5s ease;
    z-index: -1;
}

.explore-btn:hover {
    color: var(--white);
    border-color: transparent;
}

.explore-btn:hover::before {
    left: 0;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 64, 0, 0.3);
    transition: all 0.5s ease;
}

.explore-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 64, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom right, rgba(255, 64, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--black);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: top 0.5s ease;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 64, 0, 0.2);
}

.feature-card:hover::before {
    top: 0;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(360deg);
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ========== FAQ SECTION ========== */
.faq-blog-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.faq-container {
    margin-top: 60px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 64, 0, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== CTA FINAL ========== */
.blog-cta-final {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 0, 0.15) 0%, transparent 70%);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
}

.cta-final-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.cta-final-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.4);
    color: var(--white);
}

.cta-final-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 48px;
    }
    
    .blog-hero-section {
        padding: 20px 0 60px;  /* MUDAR AQUI */
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .blog-hero-visual {
        height: 400px;
        margin-top: 50px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column !important;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: left;
    }
    
    .process-step:nth-child(even) .step-features {
        justify-content: flex-start;
    }
    
    .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
        font-size: 80px;
    }
    
    .step-connector {
        display: none;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .blog-hero-title {
        font-size: 36px;
    }
    
    .blog-hero-section {
        padding: 20px 0 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .blog-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .blog-hero-visual {
        height: 300px;
    }
    
    .floating-card {
        padding: 15px 20px;
    }
    
    .floating-card span {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .blog-cta-btn,
    .cta-final-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== ANIMAÇÕES AOS ========== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}