.section-spacing {
    padding-top: 50px;
    padding-bottom: 80px;
}

.about-hero {
    background: linear-gradient(135deg,
            rgba(255, 122, 24, 0.08),
            rgba(255, 157, 21, 0.08));
}

.about-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ff7a18;
    text-align: center;
    line-height: 1.6;
}

/* =========================
   HISTÓRIA
   ========================= */
.about-history {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Texto com mais presença */
.about-text {
    background: #ff7a18;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    border-radius: 24px 24px 0 0;
}

.about-text h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 14px;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #fff;
    /* LINHA BRANCA */
    margin-top: 10px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Imagem com cara de card */
.about-image img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* =========================
   MISSÃO / VISÃO / VALORES
   ========================= */
.about-values {
    background: #fafafa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.cards-grid .info-card {
    background: #ffffff;
    padding: 42px 36px;
    border-radius: 26px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.cards-grid .info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #ff9d15, #ff7a18);
}

.cards-grid .info-card i {
    font-size: 42px;
    color: #ff7a18;
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}

.cards-grid .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #222;
}

.cards-grid .info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover */
.cards-grid .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.cards-grid .info-card:hover i {
    transform: scale(1.15) rotate(-4deg);
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 900px) {
    .about-history {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 36px;
    }

    .about-hero p {
        font-size: 1.25rem;
    }
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f88538;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 12px;
    color: #cbd5e1;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #f88538;
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}