.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #4B306A;
}

.about-text-box {
    background-color: #eeeeee;
    color: #4B306A;
    padding: 40px;
    max-width: 600px;
    margin: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.about-text-box h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-text-box p {
    font-size: 1.2em;
    line-height: 1.5;
}

.about-credit {
    margin-top: 20px;
    font-size: 0.9em;
    color: #7E3FF2;
}

.about-credit a {
    color: inherit;
    text-decoration: none;
}

.about-image-box {
    max-width: 600px;
    position: relative;
    z-index: 0;
    max-width: 100%;
    height: auto;
    margin: -70px 20px auto auto
}

.about-image-box img {
    width: 100%;
    height: auto;
}

.about-center-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #242430;
    padding: 30px;
}

.mission-container {
    background-image: url('/public/images/backgrounds/about_prism_background.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.mission-text-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.mission-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.mission-highlight {
    font-weight: bold;
    color: #7e3ff2;
}

.mission-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 600px) {
    .mission-container {
        padding: 20px;
    }

    .mission-container h1 {
        font-size: 24px;
    }

    .mission-container p {
        font-size: 16px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .about-text-box {
        padding: 20px;
    }

    .about-text-box h1 {
        font-size: 2em;
    }

    .about-text-box p {
        font-size: 1em;
    }

    .about-image-box {
        max-width: 70%;
        margin: -70px 20px auto auto;
    }
}


.body-values {
    font-family: 'Arial', sans-serif;
    background-color: #100a14;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
}

.values-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.values-highlight {
    color: #7e3ff2;
    font-weight: bold;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 0 10px rgba(126, 63, 242, 0.5);
}

.value-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 255, 0.5), transparent);
    animation: glitter 3s infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(126, 63, 242, 0.7);
    border-color: rgba(126, 63, 242, 0.7);
}

.value-item:hover::before {
    opacity: 1;
}

.value-item .icon {
    font-size: 40px;
    color: #7e3ff2;
    margin-bottom: 10px;
}

.value-item .icon::before {
    color: #2c193d;
    opacity: 0;
}

.value-item .icon:hover::before {
    opacity: 1;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #7e3ff2;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

@keyframes glitter {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(10px) translateY(10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item h3 {
        font-size: 20px;
    }

    .value-item p {
        font-size: 14px;
    }
}
