/* Page Empresa - Premium Institutional Styles */
:root {
    --azul-principal: #013356;
    --azul-escuro: #092233;
    --dourado-chaves: #C4A47C;
    /* Exemplo de cor de destaque premium */
    --cinza-claro: #F5F7FA;
    --texto-cor: #555;
}

body {
    background-color: #FFF;
    font-family: 'Urbanist', sans-serif;
    overflow-x: hidden;
}

.page-empresa {
    overflow: hidden;
}

/* --- Hero Section --- */
.empresa-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    margin-bottom: 50px;
    overflow: hidden;
}

.empresa-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.empresa-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate cubic-bezier(0.16, 1, 0.3, 1);
}

.empresa-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 51, 86, 0.9) 0%, rgba(1, 51, 86, 0.6) 50%, rgba(1, 51, 86, 0.4) 100%);
    z-index: 2;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-pre-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    /* Urbanist Black */
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Manifesto Section --- */
.manifesto-section {
    padding: 60px 0;
    background: #FFF;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.manifesto-image-wrapper {
    position: relative;
}

.manifesto-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 4px;
}

.manifesto-image.offset {
    margin-top: 40px;
}

.manifesto-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--azul-principal);
    margin-bottom: 40px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.manifesto-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--texto-cor);
    margin-bottom: 20px;
}

.quote-box {
    margin-top: 40px;
    padding-left: 30px;
    border-left: 4px solid var(--azul-principal);
}

.quote-text {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--azul-principal);
}

/* --- Big Numbers (Institutional) --- */
.stats-section {
    padding: 60px 0;
    background: var(--azul-principal);
    color: #FFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- Values Section --- */
.values-section {
    padding: 60px 0;
    background: var(--cinza-claro);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--azul-principal);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.values-grid.compact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #FFF;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.value-card.small-card {
    padding: 30px 20px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #EEE;
}

.value-icon {
    font-size: 38px;
    color: var(--azul-principal);
    margin-bottom: 20px;
    display: inline-block;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--azul-principal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin-top: 15px;
}

/* --- Differentiators Section --- */
.differentiators-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
}

.diff-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cinza-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--azul-principal);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon {
    background: var(--azul-principal);
    color: #FFF;
    transform: rotateY(180deg);
}

.diff-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--azul-principal);
    text-transform: uppercase;
}

/* --- Timeline Section --- */
.timeline-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #EEE;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background: var(--azul-principal);
    border-radius: 50%;
    border: 4px solid #FFF;
    box-shadow: 0 0 0 2px var(--azul-principal);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-year {
    font-size: 48px;
    font-weight: 800;
    color: rgba(1, 51, 86, 0.1);
    position: absolute;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: 40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: 40px;
}

.timeline-content {
    position: relative;
    z-index: 2;
    background: #FFF;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid.compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentiators-grid {
        gap: 20px;
    }

    .timeline-track {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }

    .timeline-item .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-item .timeline-year {
        left: 50px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .manifesto-image {
        height: 400px;
    }
}