/* ==========================================================================
   SOBRE A PIZZARIA
   ========================================================================== */

.about-page {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 16px 80px;
}

.page-header {
    margin-bottom: 32px;
}

.page-icon {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.story-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;

    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);

    padding: 20px;

    box-shadow: var(--shadow-sm);
}

.card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.card-content h2 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

.feature-card {
    background: var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:var(--radius-md);

    padding:24px;

    box-shadow:var(--shadow-sm);

    transition:.2s;
}

.feature-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
}

.feature-icon{
    font-size:2rem;
    margin-bottom:12px;
}

.feature-card h3{
    margin-bottom:10px;
}

.feature-card p{
    color:var(--text-muted);
    line-height:1.6;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.step{

    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:var(--radius-md);

    padding:20px;

    box-shadow:var(--shadow-sm);
}

.step-number{

    width:36px;
    height:36px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;

    margin-bottom:16px;
}

.step h3{
    font-size:1rem;
    margin-bottom:8px;
}

.step p{
    color:var(--text-muted);
    line-height:1.5;
    font-size:.92rem;
}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.stat-card{

    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:var(--radius-md);

    text-align:center;

    padding:26px;

    box-shadow:var(--shadow-sm);

}

.stat-card strong{

    display:block;

    color:var(--primary);

    font-size:2rem;

    margin-bottom:8px;

}

.stat-card span{

    color:var(--text-muted);

}

@media(max-width:768px){

    .story-card{
        grid-template-columns:1fr;
    }

    .steps{
        grid-template-columns:1fr 1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .features-grid,
    .steps,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .page-header h1{
        font-size:1.7rem;
    }

}