@import url(../../global.css);

main {
    padding-bottom: 0;
}

.sobre-header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #fff;
}

.tag-pill {
    display: inline-block;
    background-color: #e6fffa;
    color: var(--cor-primaria);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sobre-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 16px;
}

.subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #6b7280;
    line-height: 1.6;
}

.missao-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.missao-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.missao-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.missao-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--cor-primaria);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

.valores-section {
    background-color: #f9fafb;
    padding: 80px 20px;
    text-align: center;
}

.valores-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.valores-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.valor-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--cor-primaria);
}

.valor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.valor-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.equipe-section {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.equipe-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.equipe-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 5px 40px 5px;
    -webkit-overflow-scrolling: touch;
}

.equipe-track::-webkit-scrollbar {
    display: none;
}

.equipe-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.equipe-card {
    flex: 0 0 280px;
    background: linear-gradient(90deg, var(--cor-primaria) 0%, #047857 100%);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.equipe-card:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #e6fffa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-card h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.equipe-card span {
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--cor-primaria);
    color: #fff;
    transform: translateY(-3px);
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--cor-primaria);
    transition: all 0.2s;
    display: none;
}

.carousel-btn:hover {
    background: var(--cor-primaria);
    color: #fff;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.cta-section {
    background-color: var(--cor-primaria);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons a {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white {
    background: #fff;
    color: var(--cor-primaria);
}

.btn-white:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .missao-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}