/* ABOUT */

.about-section {
    min-height: 100vh;
    min-height: 100svh;

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

    padding: clamp(3rem, 6vw, 4rem) 0;

    position: relative;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(1.8rem, 4vw, 2.5rem);
}

.about-header h2 {
    margin-bottom: 0.8rem;
}

.about-line {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ECECEC, #FB047C);
}

/* CARD */

.about-card {
    /* width: 900px;
    height: 500px; */

    width: min(100%, 56.25rem);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem);

    border-radius: 2.5rem;
    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );

    backdrop-filter: blur(16px);

    border: 1px solid rgba(251, 4, 124, 0.25);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 20px 60px rgba(251, 4, 124, 0.25),
        0 0 40px rgba(251, 4, 124, 0.15);

    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px) scale(1.01);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 30px 80px rgba(251, 4, 124, 0.35),
        0 0 60px rgba(251, 4, 124, 0.25);
}

.about-card p {
    max-width: min(100%, 47.5rem);
    padding: 0 1rem;
    margin: 0;

    font-size: clamp(1rem, 2.8vw, 1.35rem);
    line-height: 1.7;
    opacity: 0.9;
}

.about-card .btn-primary {
    width: fit-content;
    padding: clamp(0.9rem, 2.5vw, 1.4rem) clamp(1.5rem, 4vw, 4rem);
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.7rem);
}

.about-card {
    height: auto;
    min-height: auto;
    max-height: none;

    overflow: visible !important;
}

/* =========================
   RESPONSIVIDADE ABOUT
========================= */

@media (max-width: 768px) {
    .about-section {
        min-height: auto;
        padding: 3.5rem 0 4rem;
        overflow: hidden;
    }

    .about-header {
        margin-bottom: 1.75rem;
        padding-inline: 0.75rem;
    }

    .about-header h2 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .about-card {
        width: min(100%, 42rem);
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 1.5rem;
        padding: 1.5rem 1.1rem;
        border-radius: 1.75rem;
        overflow: visible;
    }

    .about-card p {
        max-width: min(100%, 34rem);
        padding: 0;
        font-size: clamp(1rem, 3.4vw, 1.2rem);
        line-height: 1.65;
    }

    .about-card .btn-primary {
        width: min(100%, 18rem);
        padding: 1rem 1.5rem;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0 3.5rem;
    }

    .about-header {
        margin-bottom: 1.5rem;
        padding-inline: 0.5rem;
    }

    .about-header h2 {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .about-card {
        width: min(100%, 22rem);
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 1.25rem;
        padding: 1.25rem 0.95rem;
        border-radius: 1.5rem;
        overflow: visible;
    }

    .about-card p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-card .btn-primary {
        width: min(100%, 15rem);
        padding: 0.95rem 1.25rem;
        font-size: 1rem;
    }
}