﻿.sobre-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

    .sobre-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 60% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .sobre-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 700;
        background: linear-gradient(135deg, #38bdf8, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        animation: fadeSlideUp 0.7s ease-out both;
    }

    .sobre-hero p {
        font-size: 1.2rem;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
        animation: fadeSlideUp 0.9s ease-out both;
    }

.sobre-que {
    padding: 70px 20px;
    text-align: center;
}

    .sobre-que h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #38bdf8;
        margin-bottom: 20px;
        text-align: center;
    }

    .sobre-que p {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

.sobre-funcionalidades {
    padding: 70px 20px;
}

    .sobre-funcionalidades h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #e2e8f0;
        text-align: center;
        margin-bottom: 50px;
    }

.func-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.func-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeSlideUp 0.8s ease-out both;
}

    .func-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .func-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .func-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .func-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .func-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        border-color: rgba(56, 189, 248, 0.3);
    }

    .func-card i {
        font-size: 2.5rem;
        margin-bottom: 18px;
        display: block;
    }

    .func-card h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #e2e8f0;
        margin-bottom: 12px;
        text-align: center;
    }

    .func-card p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.6;
        margin: 0;
    }

.sobre-mision {
    padding: 70px 20px;
    text-align: center;
}

.mision-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

    .mision-box h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #38bdf8;
        margin-bottom: 16px;
        text-align: center;
    }

    .mision-box p {
        font-size: 1.05rem;
        color: #94a3b8;
        line-height: 1.8;
        margin: 0;
    }

.sobre-cta {
    padding: 70px 20px;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 650px;
    margin: 0 auto;
}

    .cta-box h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #e2e8f0;
        margin-bottom: 12px;
        text-align: center;
    }

    .cta-box p {
        color: #94a3b8;
        margin-bottom: 30px;
        font-size: 1rem;
    }

.btn-cta {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
        color: white;
        text-decoration: none;
    }

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 600px) {
    .mision-box,
    .cta-box {
        padding: 36px 24px;
    }

    .sobre-hero h1 {
        font-size: 2.2rem;
    }
}
