/* EQUIPE HERO */
.equipe-hero {
    background:  url('../img/equipe2.webp') center/cover no-repeat;
}

.equipe-intro {
    text-align: center;
    padding: 60px 20px;
}

.equipe-intro h2 {
    margin-bottom: 20px;
}

.equipe-intro p {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.grid-equipe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* LinkedIn */
.social-links a:first-child {
    background-color: #0077b5;
    color: #fff;
}

/* WhatsApp */
.social-links a:last-child {
    background-color: #25d366;
    color: #fff;
}

/* Hover (efeito profissional) */
.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    opacity: 0.9;
}

.card-equipe {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.card-equipe img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.card-equipe h3 {
    margin: 10px 0;
}

.card-equipe span {
    display: block;
    color: #0c8e36;
    font-weight: 600;
    margin-bottom: 10px;
}

.crea {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .grid-equipe {
        grid-template-columns: 1fr;
    }
}