/* =================================================================== */
/* ESTILOS DA P�GINA EMPRESA (SOBRE N�S)                             */
/* =================================================================== */

:root {
    --primary-red: #d62828;
    --primary-red-light: #ff4444;
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --text-gray: #cccccc;
}

/* =================================================================== */
/* HERO SECTION                                                       */
/* =================================================================== */

.empresa-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.empresa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(214, 40, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(214, 40, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.empresa-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(214, 40, 40, 0.15);
    border: 1px solid rgba(214, 40, 40, 0.3);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(214, 40, 40, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(214, 40, 40, 0.5);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =================================================================== */
/* SECTION BADGES E T�TULOS                                          */
/* =================================================================== */

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title-sm {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* =================================================================== */
/* HIST�RIA SECTION                                                   */
/* =================================================================== */

.historia-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.historia-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(214, 40, 40, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.historia-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 25px 70px rgba(214, 40, 40, 0.2);
}

.historia-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.highlight-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* =================================================================== */
/* FUNDADOR SECTION (TIMELINE)                                        */
/* =================================================================== */

.fundador-section {
    background: var(--dark-bg-secondary);
    padding: 6rem 0;
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 40, 40, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15), rgba(214, 40, 40, 0.05));
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.timeline-card:hover .timeline-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.timeline-card:hover .timeline-icon i {
    color: white;
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(214, 40, 40, 0.15);
    border-radius: 20px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =================================================================== */
/* EXPANS�O SECTION                                                   */
/* =================================================================== */

.expansao-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.produto-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.produto-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.produto-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.produto-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.produto-icon i {
    font-size: 1.5rem;
    color: white;
}

.produto-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.produto-subtitle {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 500;
}

.produto-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.produto-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produto-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.produto-features li i {
    color: var(--primary-red);
    margin-top: 3px;
}

/* =================================================================== */
/* PILARES SECTION                                                    */
/* =================================================================== */

.pilares-section {
    background: var(--dark-bg-secondary);
    padding: 6rem 0;
}

.pilar-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.pilar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pilar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15), rgba(214, 40, 40, 0.05));
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.pilar-icon i {
    font-size: 1.75rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.pilar-card:hover .pilar-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.pilar-card:hover .pilar-icon i {
    color: white;
}

.pilar-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pilar-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Benef�cios Cards */
.beneficio-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15), rgba(214, 40, 40, 0.05));
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.beneficio-icon i {
    font-size: 1.75rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.beneficio-card:hover .beneficio-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.beneficio-card:hover .beneficio-icon i {
    color: white;
}

.beneficio-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.beneficio-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =================================================================== */
/* STACK SECTION                                                      */
/* =================================================================== */

.stack-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.stack-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.stack-card:hover {
    border-color: rgba(214, 40, 40, 0.3);
}

.stack-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.stack-title i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stack-list li:last-child {
    border-bottom: none;
}

.stack-list li strong {
    color: var(--text-light);
}

/* =================================================================== */
/* CTA SECTION                                                        */
/* =================================================================== */

.cta-section {
    background: var(--dark-bg-secondary);
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15) 0%, rgba(214, 40, 40, 0.05) 100%);
    border: 1px solid rgba(214, 40, 40, 0.3);
    border-radius: 24px;
    padding: 3.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.cta-btn:hover {
    background: var(--primary-red-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 40, 40, 0.5);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* =================================================================== */
/* RESPONSIVE                                                         */
/* =================================================================== */

@media (max-width: 991px) {
    .empresa-hero {
        min-height: 60vh;
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .historia-section,
    .fundador-section,
    .expansao-section,
    .pilares-section,
    .stack-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 2.5rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .empresa-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .hero-stats .stat-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .stat-divider {
        display: none;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .historia-section,
    .fundador-section,
    .expansao-section,
    .pilares-section,
    .stack-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title-sm {
        font-size: 1.5rem;
    }
    
    .timeline-card,
    .produto-card,
    .pilar-card,
    .beneficio-card,
    .stack-card {
        padding: 1.5rem;
    }
    
    .timeline-icon,
    .pilar-icon,
    .beneficio-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i,
    .pilar-icon i,
    .beneficio-icon i {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }

    .hero-stats .stat-item {
        flex: 1 1 0;
        min-width: 0;
    }
    
    .produto-header {
        flex-direction: column;
        text-align: center;
    }
    
    .produto-features li {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

