.about-body {
    margin: 0;
    background-color: #EFF299; 
    font-family: "Bubblegum Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
}

.back-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: auto;
    cursor: pointer;
    z-index: 10;
    transition-duration: 0.3s;
}

.back-icon:hover {
    scale: 0.8;
}

.about-container {
    width: 100%;
    max-width: 1000px;
    max-height: 180vh;
    background-color: #A0D94A; 
    border: 5px solid black;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    animation: walkInAnimation 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.about-title {
    margin: 0 0 25px 0;
    font-size: 2rem;
    text-align: center;
    color: black;
    width: 100%;
}

.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-section {
    width: 100%;
}

.section-box {
    background-color: #EFF299;
    border: 3px solid black;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-box h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.section-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
}

.architecture{
    color: black;
}

.tech-notes{
    color: black;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.value-box {
    background-color: #A0D94A;
    border: 2px solid black;
    border-radius: 15px;
    padding: 15px;
}

.value-box h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
}

.value-box p {
    font-size: 0.9rem;
    text-align: center;
}

.tech-box {
    background-color: #FF6B6B;
    color: white;
}

.tech-box h2,
.tech-box p {
    color: black;
}

/* Animations */
@keyframes walkInAnimation {
    0% {
        transform: 
            translateX(-100%) 
            rotateZ(-5deg) 
            rotateY(15deg);
    }
    20% {
        transform: 
            translateX(-70%) 
            rotateZ(3deg) 
            rotateY(-10deg);
    }
    40% {
        transform: 
            translateX(-40%) 
            rotateZ(-2deg) 
            rotateY(8deg);
    }
    60% {
        transform: 
            translateX(-15%) 
            rotateZ(1deg) 
            rotateY(-5deg);
    }
    80% {
        transform: 
            translateX(5%) 
            rotateZ(-0.5deg);
    }
    100% {
        transform: 
            translateX(0) 
            rotateZ(0) 
            rotateY(0);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .about-container {
        padding: 35px;
    }
    
    .back-icon {
        width: 65px;
        left: 30px;
        top: 30px;
    }
}

@media (min-width: 1559px) {
    .about-body {
        padding: 40px;
    }
    
    .about-container {
        max-width: 750px;
        padding: 40px;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .section-box h2 {
        font-size: 1.7rem;
    }
    
    .section-box p {
        font-size: 1.1rem;
    }
    
    .back-icon {
        width: 80px;
        left: 50px;
        top: 50px;
    }
}

@media (max-width: 480px) {
    .about-body {
        padding: 15px;
        align-items: flex-start; /* Cambiado de center a flex-start para mejor manejo del scroll */
    }
    
    .back-icon {
        width: 50px;
        left: 15px;
        top: 15px;
    }
    
    .about-container {
        padding: 20px;
        border-radius: 25px;
        min-height: auto; 
        height: auto; 
        max-height: 90vh; 
        overflow-y: auto; 
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .content-container {
        gap: 15px; 
    }
    
    .section-box {
        padding: 15px; 
    }
}