﻿.about-container {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* HERO */

.hero {
    text-align: center;
    margin-bottom: 60px;
}

    .hero h1 {
        font-size: 42px;
        color: #ff8c00;
        margin-bottom: 10px;
    }

.subtitle {
    font-size: 18px;
    color: #666;
}

/* BOTÕES */

.cta-button {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(135deg, #ff8c00, #e94e1b);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

    .cta-button:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.feature {
    background: #fff7f0;
    padding: 22px;
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    transition: 0.2s;
}

    .feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .feature h3 {
        margin-bottom: 10px;
        color: #e94e1b;
    }

    .feature p {
        color: #555;
    }

/* NETWORK */

.network {
    text-align: center;
    margin-bottom: 60px;
}

    .network h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #ff8c00;
    }

    .network p {
        color: #555;
        margin-bottom: 12px;
    }

/* CTA FINAL */

.cta-final {
    text-align: center;
    padding: 40px 20px;
    background: #fff4ec;
    border-radius: 10px;
}

    .cta-final h2 {
        margin-bottom: 10px;
        color: #e94e1b;
    }
