/* ABOUT SECTION */
#sobre {
    background-color: var(--color-secondary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

/* Background Elements for depth */
#sobre::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 192, 31, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT COLUMN - Text Content */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--text-main);
    font-weight: 700;
}

.about-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.about-highlight {
    color: var(--color-white);
    font-weight: 500;
}

/* Stats/Features Grid within Text Column */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
}

.feature-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* RIGHT COLUMN - Cards (Apple Style) */
.about-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

/* Vertical Line connecting cards (Timeline feel) */
.about-cards-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, 
        rgba(242, 192, 31, 0), 
        rgba(242, 192, 31, 0.3) 20%, 
        rgba(242, 192, 31, 0.3) 80%, 
        rgba(242, 192, 31, 0));
    z-index: 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 192, 31, 0.2);
    transform: translateX(10px);
}

.card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(242, 192, 31, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    border: 1px solid rgba(242, 192, 31, 0.1);
    transition: var(--transition-smooth);
}

.info-card:hover .card-icon {
    background: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(242, 192, 31, 0.4);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 600;
}

.card-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-text-content {
        text-align: center;
        align-items: center;
    }

    .features-grid {
        justify-content: center;
        width: 100%;
    }
    
    .about-cards-container::before {
        display: none; 
    }
}

@media (max-width: 768px) {
    #sobre {
        padding: 60px 0; /* Reduced padding */
    }

    .about-title {
        font-size: 2rem;
    }

    .info-card {
        padding: 1.5rem;
        flex-direction: column; 
        gap: 1rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-cards-container::before {
        display: none; /* Hide timeline line on mobile */
    }
    
    .about-container {
        gap: 3rem;
    }
}
