﻿
/* ===== PÁGINA SOBRE ===== */
.about-hero-modern {
    background: var(--primary-dark);
    padding: 100px 0 150px;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.text-gradient {
    color: var(--verde-pastel);
}

.badge-tech {
    background: rgba(167, 196, 181, 0.2);
    color: var(--verde-pastel);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.code-window {
    background: #1e1e1e;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.window-header {
    background: #333;
    padding: 10px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.code-content {
    padding: 20px;
    font-family: 'Consolas', monospace;
    color: #d4d4d4;
}

.code-keyword {
    color: #569cd6;
}

.code-class {
    color: #4ec9b0;
}

.code-prop {
    color: #9cdcfe;
}

.code-string {
    color: #ce9178;
}

.main-content-about {
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.about-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.card-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--bege-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.f-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .f-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid var(--verde-pastel);
    }

.f-icon {
    font-size: 2.2rem;
    color: var(--verde-pastel);
    margin-bottom: 15px;
}

    .f-icon i {
        display: inline-block;
        width: 100%;
    }

/* ===== CRIADOR ===== */
.creator-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.creator-header-bg {
    background: linear-gradient(90deg, var(--primary-dark), var(--verde-pastel));
    height: 120px;
    opacity: 0.15;
    position: relative;
    z-index: 0;
}

.creator-body {
    padding: 0 40px 40px;
    display: flex;
    gap: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.creator-photo-wrapper {
    position: relative;
    z-index: 2;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--branco);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bege-medio);
    border: 5px solid white;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.dev-tag {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.skills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.s-tag {
    background: var(--bege-claro);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    border: 1px solid var(--bege-medio);
    transition: var(--transition);
}

    .s-tag:hover {
        background: var(--verde-pastel);
        border-color: var(--verde-pastel);
        color: white;
    }

.btn-modern-primary {
    background: var(--primary-dark);
    color: white !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(143, 178, 163, 0.4);
    border: none;
}

    .btn-modern-primary:hover {
        background: var(--verde-pastel);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(143, 178, 163, 0.6);
    }

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .code-window {
        display: none;
    }

    .creator-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
