﻿/* ===== VARIÃVEIS ===== */
:root {
    --cta-green: #2ecf4f;
    --border-light: #eaeaea;
    --text-primary: #2a2a2a;
    --text-secondary: #4a4a4a;
    --bg-white: #ffffff;
    --section-bg-normal: #ffffff;
    --section-padding-top: 80px;
    --section-padding-bottom: 40px;
    --container-padding-x: 20px;
    --space-xl: 40px;
    --space-lg: 30px;
    --space-4xl: 60px;
    --space-5xl: 80px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--section-bg-normal);
    color: var(--text-primary);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    text-align: center;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-family: 'Michroma', sans-serif;
    font-size: 52px;
    color: #2a2a2a;
    letter-spacing: 0.3px;
    font-weight: 620;
    line-height: 1.35;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--section-padding-top) var(--container-padding-x) var(--section-padding-bottom);
    width: 100%;
}

.about-intro-media {
    margin-bottom: var(--space-5xl);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.about-team-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-intro-text {
    padding: 24px 26px;
}

.about-intro-text h2 {
    margin: 0 0 8px 0;
    font-size: 30px;
    color: #2a2a2a;
    font-family: 'Michroma', sans-serif;
}

.about-intro-text p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.about-section {
    margin-bottom: var(--space-5xl);
}

.about-section h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 36px;
    color: #2a2a2a;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
    font-weight: 610;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, var(--cta-green) 0%, transparent 100%);
    border-radius: 2px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: var(--space-4xl);
}

.value-card {
    background: var(--bg-white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-green) 0%, #2ecf4f 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.value-card:hover::before {
    transform: translateX(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(46, 207, 79, 0.12);
    border-color: var(--cta-green);
}

.value-icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #d6ddd8;
    color: #2f3a35;
    background: linear-gradient(135deg, #f7f9f8 0%, #eef2f0 100%);
    transition: transform 0.35s ease;
}

.value-icon svg {
    width: 16px !important;
    height: 16px !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
    flex: none;
}

.value-card:hover .value-icon {
    transform: scale(1.03);
}

.value-card h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .about-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-team-photo {
        height: 240px;
    }

    .about-intro-text {
        padding: 20px;
    }

    .about-intro-text h2 {
        font-size: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .about-content {
        padding: 56px 16px 36px;
    }

    .about-intro-media {
        margin-bottom: 48px;
    }

    .about-section {
        margin-bottom: 52px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 14px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 430px) {
    .page-header h1 {
        font-size: 24px;
    }

    .about-team-photo {
        height: 200px;
    }

    .about-intro-text {
        padding: 16px;
    }

    .about-intro-text h2 {
        font-size: 20px;
    }

    .about-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .about-section p {
        font-size: 14px;
    }

    .value-card {
        padding: 22px 14px;
    }
}

@media (max-width: 991px) {
    .about-content {
        max-width: 100%;
        padding: 64px 20px 42px;
    }

    .values-grid {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 48px 0 26px;
    }

    .page-header h1 {
        font-size: clamp(26px, 7vw, 34px);
    }

    .page-header p {
        font-size: 14px;
    }

    .about-content {
        padding: 46px 16px 32px;
    }

    .about-intro-media {
        border-radius: 12px;
    }

    .about-team-photo {
        height: 220px;
    }

    .about-intro-text {
        padding: 16px;
    }

    .about-intro-text h2 {
        font-size: 22px;
    }

    .about-section {
        margin-bottom: 40px;
    }

    .about-section h2 {
        font-size: 24px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.65;
    }

    .value-card {
        padding: 24px 16px;
    }

    .value-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .about-team-photo {
        height: 190px;
    }

    .about-section h2 {
        font-size: 21px;
    }

    .about-section p {
        font-size: 14px;
    }
}

@media (max-width: 429px) {
    .about-content {
        padding: 38px 12px 26px;
    }

    .about-intro-text h2 {
        font-size: 19px;
    }

    .value-card {
        border-radius: 10px;
        padding: 18px 12px;
    }
}


