﻿.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
}

/* HERO */

.hero {
    text-align: center;
    margin-bottom: 60px;
}

    .hero h1 {
        font-size: 42px;
        color: #ff8c00 !important;
        margin-bottom: 10px;
    }

.subtitle {
    font-size: 18px;
    color: #666;
}

    /* TÍTULOS */

    .about-container h1 {
        font-size: 38px;
        margin-bottom: 20px;
        color: #222;
    }

    .about-container h2 {
        font-size: 28px;
        margin-top: 60px;
        margin-bottom: 20px;
        color: #222;
    }

    /* PARÁGRAFOS */

    .about-container p {
        font-size: 17px;
        line-height: 1.6;
        color: #555;
    }

/* CONTEXTO */

.context {
    margin-bottom: 40px;
}

/* PASSOS */

.steps {
    margin-top: 25px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.step-number {
    background: linear-gradient(135deg, #ff8c00, #e94e1b);
    color: white;
    font-weight: bold;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* INSIGHT */

.insight {
    margin-top: 40px;
}

/* FEATURES */

.features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature {
    background: white;
    border-radius: 8px;
    padding: 22px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

    .feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .feature h3 {
        color: #e94e1b;
        margin-bottom: 10px;
    }

/* NETWORK */

.network {
    margin-top: 60px;
    padding: 35px;
    background: #fff5ec;
    border-radius: 8px;
}

/* CTA */

.cta {
    margin-top: 60px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff8c00, #e94e1b);
    color: white !important;
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
