/* ============================================
   Quem Somos — About
   ============================================ */

/* ──────────────────────────────────────────
   Hero Compartilhado (page-hero)
   ────────────────────────────────────────── */

.page-hero {
    background: #111111;
    padding: 140px 0 80px;
    border-bottom: 3px solid var(--inoxmilk-color-semantic-action-primary-default);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-hero .im-section-tag {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 16px 0 20px;
}

.im-text-gradient-light {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 560px;
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .page-hero-content { padding: 0 20px; }
    .page-hero-title { font-size: clamp(28px, 8vw, 40px); }
}

/* ──────────────────────────────────────────
   Timeline
   ────────────────────────────────────────── */

.about-story {
    padding: 100px 0;
    background: #FFFFFF;
}

.timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: linear-gradient(to bottom, var(--inoxmilk-color-semantic-action-primary-default), rgba(205, 0, 6, 0.1));
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111111;
    border: 3px solid var(--inoxmilk-color-semantic-action-primary-default);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--inoxmilk-typography-family-heading);
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-dot i {
    font-size: 18px;
    color: var(--inoxmilk-color-semantic-action-primary-default);
}

.timeline-content {
    flex: 1;
    background: #F8FAFC;
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 4px;
}

.timeline-item:hover .timeline-content {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.timeline-year {
    display: inline-block;
    font-family: var(--inoxmilk-typography-family-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--inoxmilk-color-semantic-action-primary-default);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--inoxmilk-color-primitive-steel-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.timeline-content p {
    font-size: 15px;
    color: var(--inoxmilk-color-primitive-steel-500);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .about-story { padding: 60px 0; }
    .timeline-item { gap: 20px; }
    .timeline-line { left: 20px; }
    .timeline-dot { width: 40px; height: 40px; font-size: 10px; }
    .timeline-content { padding: 24px 20px; }
}

/* ──────────────────────────────────────────
   Pilares
   ────────────────────────────────────────── */

.about-pillars {
    padding: 100px 0;
    background: #111111;
}

/* Header contido, grid vai edge-to-edge */
.about-pillars .im-section-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.about-pillars .section-container {
    max-width: none;
    padding: 0;
}

.about-pillars .im-section-header .im-section-tag {
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
}

.about-pillars .im-section-title {
    color: #FFFFFF;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-card {
    background: #1A1A1A;
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.pillar-card:hover {
    background: #1F1F1F;
}

/* Número decorativo de fundo */
.pillar-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--inoxmilk-typography-family-heading);
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

/* Linha vermelha no topo */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--inoxmilk-color-semantic-action-primary-default);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(205, 0, 6, 0.12);
    border: 1px solid rgba(205, 0, 6, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--inoxmilk-color-semantic-action-primary-default);
    margin-bottom: 28px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: rgba(205, 0, 6, 0.2);
    border-color: rgba(205, 0, 6, 0.35);
}

.pillar-card h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    .about-pillars .im-section-header {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .about-pillars { padding: 60px 0; }
    .pillar-card { padding: 36px 28px; }
}

/* ──────────────────────────────────────────
   CTA Final
   ────────────────────────────────────────── */

.about-cta {
    padding: 0 0 100px;
    background: #111111; /* continua o fundo dos pilares */
}

.about-cta-inner {
    background: var(--inoxmilk-color-semantic-action-primary-default);
    text-align: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

/* Sem border-radius — fica colado nas laterais */
.about-cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.about-cta-text {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto 40px;
}

.about-cta-text h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.about-cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.about-cta-inner .btn-cta {
    background: #FFFFFF;
    color: var(--inoxmilk-color-semantic-action-primary-default);
    animation: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.about-cta-inner .btn-cta:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
    transform: translateY(-3px);
}

.about-cta-inner .btn-cta .btn-icon {
    color: #25D366;
}

/* Linha de contatos inline */
.about-cta-contacts {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-cta-contacts span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-cta-contacts i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .about-cta { padding: 0 0 60px; }
    .about-cta-inner { padding: 56px 24px; }
    .about-cta-contacts { flex-direction: column; gap: 12px; }
}
