/* ===== EQUIPE - DESKTOP ===== */
@media (min-width: 769px) {
    .equipe {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: transparent;
        padding: 180px 80px;
        overflow: hidden;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .equipe::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(67, 55, 39, 0.1), transparent);
    }

    .titulo-equipe {
        text-align: center;
        font-size: 3.5rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 24px;
        letter-spacing: -0.04em;
        font-family: "Instrument Serif", serif;
    }

    .subtitulo-equipe {
        text-align: center;
        font-size: 1.1rem;
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 70px;
        letter-spacing: 0.02em;
        font-family: "Instrument Serif", serif;
        text-transform: uppercase;
    }

    .slider-container-equipe {
        width: 100%;
        max-width: 1400px;
        overflow: visible;
        position: relative;
    }

    .cards-equipe {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 40px;
        transition: none;
    }

    .card-equipe {
        flex: 1 1 0;
        min-width: 220px;
        max-width: 300px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        position: relative;
        overflow: visible;
    }

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

    .card-equipe img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border: 2px solid #433727;
        border-radius: 0;
        margin-bottom: 20px;
        display: block;
        transition: all 0.4s ease;
        filter: grayscale(20%);
    }

    .card-equipe:hover img {
        filter: grayscale(0%);
        box-shadow: 0 16px 50px rgba(67, 55, 39, 0.25),
                    0 6px 20px rgba(67, 55, 39, 0.15);
        transform: scale(1.02);
    }

    .card-equipe h3 {
        margin-top: 0;
        color: #433727;
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 8px;
        letter-spacing: 0;
        font-family: "Instrument Serif", serif;
        text-align: center;
    }

    .card-equipe .arroba {
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 0;
        font-size: 1rem;
        letter-spacing: 0;
        font-family: "Instrument Serif", serif;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        border-bottom: 1px solid transparent;
    }

    .card-equipe .arroba:hover {
        color: #433727;
        border-bottom-color: #433727;
    }

    .dots-equipe {
        display: none;
    }
}

/* ===== EQUIPE - MOBILE ===== */
@media (max-width: 768px) {
    .equipe {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: transparent;
        padding: 100px 20px 120px;
        overflow: hidden;
    }

    .titulo-equipe {
        text-align: center;
        font-size: 2.5rem;
        color: #433727;
        font-weight: 500;
        padding: 0 20px 20px;
        font-family: "Instrument Serif", serif;
    }

    .subtitulo-equipe {
        text-align: center;
        font-size: 0.95rem;
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 50px;
        padding: 0 20px;
        letter-spacing: 0.02em;
        font-family: "Instrument Serif", serif;
        text-transform: uppercase;
    }

    .slider-container-equipe {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .cards-equipe {
        display: flex;
        transition: transform 0.5s ease;
    }

    .card-equipe {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        border: none;
    }

    .card-equipe img {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border: 2px solid #433727;
        border-radius: 0;
        margin-bottom: 20px;
        display: block;
    }

    .card-equipe h3 {
        margin-top: 0;
        color: #433727;
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 8px;
        font-family: "Instrument Serif", serif;
        text-align: center;
    }

    .card-equipe .arroba {
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 0;
        font-size: 1.05rem;
        font-family: "Instrument Serif", serif;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        border-bottom: 1px solid transparent;
    }

    .card-equipe .arroba:hover {
        color: #433727;
        border-bottom-color: #433727;
    }

    .card-equipe p {
        display: none;
    }

    .dots-equipe {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }

    .dots-equipe span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(67, 55, 39, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dots-equipe span:hover {
        background-color: rgba(67, 55, 39, 0.5);
    }

    .dots-equipe span.active-equipe {
        background-color: #433727;
        transform: scale(1.3);
    }
}

/* ===== EQUIPE - TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .equipe {
        padding: 160px 50px;
    }

    .titulo-equipe {
        font-size: 3rem;
    }

    .cards-equipe {
        gap: 32px;
    }

    .card-equipe {
        min-width: 200px;
        max-width: 260px;
    }
}

/* ===== EQUIPE - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .equipe {
        padding: 80px 15px 100px;
    }

    .titulo-equipe {
        font-size: 2rem;
        padding: 0 15px 15px;
    }

    .subtitulo-equipe {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .card-equipe img {
        max-width: 240px;
    }
}
