/* ==================== SOBRE NÓS - NEW MODERN STYLES ==================== */

/* Hero Section - Modern */
.about-hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(circle at 50% 8%, rgba(255,255,255,0.03), transparent 18%),
        linear-gradient(135deg, #07162b 0%, #132942 45%, #0e2034 100%);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.about-hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: aboutOrbFloat 20s ease-in-out infinite;
}

.about-gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,140,0,0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.about-gradient-orb--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,127,184,0.3) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -10s;
}

@keyframes aboutOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.about-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.about-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,140,0,0.6);
    border-radius: 50%;
    animation: aboutParticle 15s ease-in-out infinite;
}

.about-hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.about-hero-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: -2s; }
.about-hero-particles span:nth-child(3) { left: 40%; top: 30%; animation-delay: -4s; }
.about-hero-particles span:nth-child(4) { left: 60%; top: 70%; animation-delay: -6s; }
.about-hero-particles span:nth-child(5) { left: 75%; top: 25%; animation-delay: -8s; }
.about-hero-particles span:nth-child(6) { left: 85%; top: 55%; animation-delay: -10s; }
.about-hero-particles span:nth-child(7) { left: 15%; top: 80%; animation-delay: -12s; }
.about-hero-particles span:nth-child(8) { left: 90%; top: 40%; animation-delay: -14s; }

@keyframes aboutParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-40px) scale(1.4); opacity: 1; }
}

.about-hero-container {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,140,0,0.1);
    border: 1px solid rgba(255,140,0,0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.about-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.about-title-line {
    display: block;
    color: var(--color-white);
}

.about-title-brand {
    margin-top: 0.25rem;
}

.about-title-brand .brand-next {
    color: var(--color-white);
}

.about-title-brand .brand-mini {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.inline-stat {
    text-align: center;
}

.inline-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
} 

.inline-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.inline-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
} 

.about-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    cursor: pointer;
}

.about-scroll-indicator span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
}

.about-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    position: relative;
}

.about-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* Mission Section - Modern */
.mission-modern {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a2d5c 0%, #0f1a35 100%);
}

.mission-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card-modern {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.mission-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255,140,0,0.3);
    background: rgba(255,255,255,0.04);
}

.mission-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,140,0,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card-modern:hover .mission-card-glow {
    opacity: 1;
}

.mission-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.mission-card-modern:hover .mission-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.mission-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.mission-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.mission-card-modern p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Timeline Section - Modern */
.timeline-modern {
    padding: 6rem 2rem;
    background: #0f1a35;
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    margin-top: 4rem;
}

.timeline-track {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.timeline-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), #ffb347);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-card {
    padding-top: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-bg-dark-blue);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
}

.dot-pulse {
    position: absolute;
    inset: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.timeline-card:hover .dot-pulse,
.timeline-card--current .dot-pulse {
    transform: scale(1);
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.timeline-card-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-card-content {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,140,0,0.2);
}

.timeline-card--current .timeline-card-content {
    background: rgba(255,140,0,0.05);
    border-color: rgba(255,140,0,0.3);
}

.timeline-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.timeline-card-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Why Section - Bento Grid */
.why-modern {
    padding: 6rem 2rem;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,140,0,0.04), transparent 20%),
        linear-gradient(180deg, #0e2a40 0%, #17344d 55%, #0f2030 100%);
}

.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-bento-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    grid-column: span 2;
}

.why-bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.3);
    background: rgba(255,255,255,0.04);
}

/* Primeiro card - ocupa 3 colunas (metade) */
.why-bento-card:nth-child(1) {
    grid-column: span 3;
}

/* Segundo card - ocupa 3 colunas (metade) */
.why-bento-card:nth-child(2) {
    grid-column: span 3;
}

/* Cards 3 e 4 ocupam 3 colunas cada */
.why-bento-card:nth-child(3) {
    grid-column: span 3;
}

.why-bento-card:nth-child(4) {
    grid-column: span 3;
}

/* Último card - centralizado e ocupa 4 colunas */
.why-bento-card:nth-child(5) {
    grid-column: 2 / 6;
}

.why-bento--large {
    grid-column: span 3;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,140,0,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.why-bento-card:hover .bento-icon {
    background: var(--color-primary);
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.why-bento-card:hover .bento-icon svg {
    color: #fff;
}

.why-bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.why-bento-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.bento-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* CTA Section - Modern */
.cta-modern {
    padding: 6rem 2rem;
    background: #0f1a35;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-gradient-orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(255,140,0,0.15);
    top: -100px;
    left: 20%;
}

.cta-gradient-orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(91,127,184,0.15);
    bottom: -50px;
    right: 20%;
}

.cta-modern-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-modern-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-modern-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-btn svg {
    width: 22px;
    height: 22px;
}

.cta-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255,140,0,0.3);
}

.cta-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,140,0,0.4);
}

.cta-btn--secondary {
    /* match primary styling so both CTAs appear orange */
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    box-shadow: 0 10px 30px rgba(255,140,0,0.12);
    border-color: transparent;
    color: #fff;
}

.cta-btn--secondary:hover {
    box-shadow: 0 14px 40px rgba(255,140,0,0.2);
    transform: translateY(-3px);
}

/* Active nav link */
.nav-links a.active {
    color: #ff8c00;
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1000px) {
    .mission-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-track {
        display: none;
    }

    .timeline-dot {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 1rem;
    }

    .timeline-card {
        padding-top: 0;
    }

    .why-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-bento-card,
    .why-bento-card:nth-child(1),
    .why-bento-card:nth-child(2),
    .why-bento-card:nth-child(3),
    .why-bento-card:nth-child(4),
    .why-bento-card:nth-child(5) {
        grid-column: span 1;
    }

    .why-bento--large,
    .why-bento-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .about-hero-modern {
        padding: 7rem 1.5rem 3rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-desc {
        font-size: 1.05rem;
    }

    .about-hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .inline-stat-divider {
        width: 60px;
        height: 1px;
    }

    .about-scroll-indicator {
        display: none;
    }

    .timeline-cards {
        grid-template-columns: 1fr;
    }

    .why-bento-grid {
        grid-template-columns: 1fr;
    }

    .why-bento-card,
    .why-bento-card:nth-child(1),
    .why-bento-card:nth-child(2),
    .why-bento-card:nth-child(3),
    .why-bento-card:nth-child(4),
    .why-bento-card:nth-child(5),
    .why-bento--large {
        grid-column: span 1;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-gradient-orb,
    .about-hero-particles span {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero-modern {
        padding: 6rem 1rem 2.5rem;
    }

    .about-hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }

    .about-hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .about-hero-desc {
        font-size: 0.95rem;
    }

    .inline-stat-number {
        font-size: 2rem;
    }

    .inline-stat-label {
        font-size: 0.8rem;
    }

    .mission-section,
    .timeline-section,
    .values-section,
    .why-section,
    .cta-section-modern {
        padding: 3rem 1rem;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .mission-title,
    .timeline-title,
    .values-title,
    .why-title,
    .cta-title-modern {
        font-size: 1.5rem;
    }

    .mission-text,
    .timeline-desc,
    .cta-desc-modern {
        font-size: 0.9rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }

    .timeline-year {
        font-size: 1.25rem;
    }

    .timeline-text {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-desc {
        font-size: 0.85rem;
    }

    .why-bento-card {
        padding: 1.25rem;
    }

    .bento-title {
        font-size: 1rem;
    }

    .bento-desc {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .about-hero-modern {
        padding: 5.5rem 0.75rem 2rem;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-hero-desc {
        font-size: 0.9rem;
    }

    .inline-stat-number {
        font-size: 1.75rem;
    }

    .mission-title,
    .timeline-title,
    .values-title,
    .why-title,
    .cta-title-modern {
        font-size: 1.35rem;
    }
}

@media (max-width: 320px) {
    .about-hero-title {
        font-size: 1.35rem;
    }

    .mission-title,
    .timeline-title,
    .values-title,
    .why-title,
    .cta-title-modern {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
