/* public/css/about.css - Página Sobre Nós */

/* ========== PAGE HEADER ========== */
.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 1.2s ease-out;
}

.breadcrumb a {
    color: var(--white);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    opacity: 0.6;
}

.breadcrumb .current {
    opacity: 0.9;
}

/* ========== HISTÓRIA SECTION ========== */
.history-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-gray) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -43px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-red);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px rgba(255, 44, 48, 0.2);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.history-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.history-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* ========== MISSÃO E VISÃO ========== */
.mission-vision-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, var(--white) 100%);
}

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

.mv-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-gray));
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 44, 48, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 44, 48, 0.1) 0%, rgba(255, 44, 48, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 36px;
    margin-bottom: 30px;
    transition: all 0.4s;
}

.mv-card:hover .mv-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, #d91d21 100%);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.mv-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.mv-feature-item i {
    color: var(--primary-red);
    font-size: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.values-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.values-list li i {
    color: var(--primary-red);
    font-size: 20px;
    margin-top: 5px;
}

.values-list strong {
    display: block;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.values-list p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ========== EQUIPE ========== */
.team-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

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

.team-member {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 44, 48, 0.15);
}

.member-photo {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 44, 48, 0.9) 0%, rgba(65, 64, 66, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all 0.3s;
}

.member-social a:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
}

.member-info {
    padding: 30px 25px;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.member-role {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== INSTALAÇÕES ========== */
.facilities-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, var(--white) 100%);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.facility-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 44, 48, 0.15);
}

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #d91d21 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: transform 0.4s;
}

.facility-card:hover .facility-icon {
    transform: rotateY(360deg);
}

.facility-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.facility-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.about-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #d91d21 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-cta-content {
    position: relative;
    z-index: 1;
}

.about-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .mission-vision-grid,
    .team-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-content h2 {
        font-size: 32px;
    }

    .about-cta-content p {
        font-size: 16px;
    }
}