/* about.css — Estilos específicos de about.html */

/* ===== ABOUT PAGE ===== */
.about-page {
    background: #ffffff;
}

.about-page .hero-section,
.about-page section.theme-light {
    background: #ffffff;
}

.about-page .hero-category-tag {
    color: #6e6e73;
}

/* ===== Hero Grid ===== */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }
}

/* ===== Profile Image ===== */
.about-profile-image-wrapper {
    position: relative;
}

.about-profile-image {
    border-radius: 30px;
    border: 1px solid #e5e5ea;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.05);
    position: relative;
}

.about-profile-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-profile-image:hover img {
    transform: scale(1.02);
}

.about-profile-decor {
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(0, 113, 227, 0.12),
        rgba(0, 113, 227, 0.03) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

/* ===== Hero Text ===== */
.about-hero-text .hero-category-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.about-hero-text h1 {
    margin-bottom: 1.25rem;
}

.about-hero-text .about-tagline {
    font-size: 1.2rem;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* ===== Content Sections ===== */
.about-content-section {
    max-width: 800px;
    margin: 0 auto;
}

.about-content-section h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 750;
    color: #1d1d1f;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.about-content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #424245;
    margin-bottom: 1.5rem;
}

.about-content-section p:last-child {
    margin-bottom: 0;
}

/* ===== Values Grid ===== */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-value-card {
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 22px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #1d1d1f;
}

.about-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.6rem;
}

.about-value-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #6e6e73;
    margin-bottom: 0;
}

/* ===== Tech Stack ===== */
.about-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.about-tech-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #424245;
    background: #f5f5f7;
    border: 1px solid #e5e5ea;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.about-tech-tag:hover {
    background: #e8e8ed;
    border-color: #d2d2d7;
}

/* ===== CTA Section ===== */
.about-cta-card {
    border: 1px solid #e5e5ea;
    border-radius: 32px;
    background: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.05);
}

.about-cta-card .cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-weight: 850;
    color: #1d1d1f;
}

.about-cta-card .cta-sub {
    color: #6e6e73;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.about-cta-card .btn {
    background: #1d1d1f;
    color: #fff;
    padding: 1rem 2.4rem;
    font-size: 1rem;
    border-radius: 999px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-cta-card .btn:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ===== Responsive ===== */
@media (prefers-reduced-motion: reduce) {
    .about-profile-image img {
        transition: none !important;
    }
}
