/* About Page Specific Styles */

/* Enhanced Hero */
.about-hero {
    background: #ffffff; /* Pure white background */
    color: var(--color-text-main); /* Dark text */
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Remove dark overlay */
.about-hero::before {
    display: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: var(--color-text-main); /* Dark text */
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 25px;
    letter-spacing: -1px;
    /* Removed text-shadow for cleaner look on white */
}

.about-hero .subtitle {
    color: var(--color-text-light); /* Dark gray text */
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Hero Buttons */
.about-hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Custom Button Styles for Hero */
.btn-cyan {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary); /* Cyan text */
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    background: #ffffff; /* White background */
    border-color: var(--color-secondary); /* Cyan border */
    color: var(--color-primary); /* Primary Blue Text */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2); /* Cyan shadow */
}

/* Founder Section - Redesigned */
.founder-section {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
}

@media (min-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr 1.2fr;
        background: #fff;
        padding: 60px;
        border-radius: var(--radius-lg);
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    }
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--color-secondary-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-info {
    text-align: center;
}

@media (min-width: 992px) {
    .founder-info {
        text-align: left;
    }
}

.founder-info h3 {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.founder-info h3::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.5;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founder-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
    position: relative;
}

/* Organigram - Enhanced Tree */
.organigram-section {
    padding: 120px 0;
    background: #f8faff;
    position: relative;
}

.organigram-tree {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
    position: relative;
}

.org-level {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Connector Lines Logic (Simplified for CSS) */
.org-level:first-child::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.org-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    width: 220px;
    border-top: 4px solid var(--color-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.org-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    border-radius: 50%;
    border: 3px solid #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top-color: var(--color-primary);
}

.org-card:hover::before {
    opacity: 1;
    background: var(--color-primary);
}

.org-role {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.org-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Achievements - Stats Style */
.achievements-section {
    padding: 120px 0;
    background: var(--color-white);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.achievement-card {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-primary);
    transition: height 0.3s ease;
    z-index: 0;
    opacity: 0.03;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.achievement-card:hover::after {
    height: 100%;
}

.achievement-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px;
    background: var(--color-secondary-light);
    border-radius: 50%;
    transition: all 0.3s;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(180deg);
    background: var(--color-primary);
    color: var(--color-white);
}

.achievement-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text-main);
    position: relative;
    z-index: 1;
}

.achievement-card p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* Values - Reusing Enhanced Cards */
#valores .service-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s;
}

#valores .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

#valores .service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* CTA */
#cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #000 100%);
}
