/* Hero Section da Página Sobre */
.hero-section-sobre {
    padding: 180px 0 80px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-section-sobre .page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
    filter: drop-shadow(0 0 15px rgba(39, 159, 245, 0.35));
}

.hero-section-sobre .page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Seção Carrossel de Tecnologias */
.tech-carousel-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tech-carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.tech-logo-item {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    transition: transform 0.3s ease;
}

.tech-logo-item img {
    max-width: 100px;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.tech-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Pausar animação no hover */
.tech-carousel-container:hover .tech-carousel-track {
    animation-play-state: paused;
}

/* Seção da Equipe */
.team-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.team-card {
    position: relative;
}

.team-card-inner {
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 5rem 1.5rem 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 175, 255, 0.1);
}

.team-card-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: -4.375rem auto 1.5rem;
    position: relative;
    border: 4px solid var(--bg-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image-wrapper {
    transform: scale(1.05);
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card-content {
    position: relative;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.team-card-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-card-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-card-socials a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 159, 245, 0.3);
}