.barbeiros-page .hero {
    background:
        linear-gradient(135deg,
            rgba(11,31,58,.88) 0%,
            rgba(11,31,58,.70) 50%,
            rgba(11,31,58,.55) 100%),
        url('../img/banner%20inicial.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.barbeiros-page .hero-content {
    max-width: 800px;
}

.barbeiros-page .hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: .8rem;
    text-shadow: 0 5px 30px rgba(0,0,0,.35);
}

.barbeiros-page .hero-content p {
    color: rgba(255,255,255,.92);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.team-premium {
    background: #F5F5F5;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.team-premium-container {
    max-width: 1180px;
    margin: 0 auto;
}

.team-premium-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.team-premium-tag {
    display: inline-block;
    background: #D4AF37;
    color: #0B2341;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.team-premium-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: #0B2341;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.team-premium-desc {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

.team-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-premium-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
    padding: 3rem;
    font-size: 1rem;
}

.team-premium-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 35, 65, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.team-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 35, 65, 0.15);
}

.team-premium-card-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2341 0%, #1a3a5c 100%);
}

.team-premium-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
}

.team-premium-card:hover .team-premium-card-img img {
    transform: scale(1.08);
}

.team-premium-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 35, 65, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.team-premium-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 4rem;
}

.team-premium-card-body {
    padding: 1.5rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.team-premium-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #0B2341;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-premium-card-cargo {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.team-premium-card-desc {
    margin: 0.2rem 0 0;
}

.team-premium-card-desc-texto {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.7;
    transition: max-height 0.4s ease;
    overflow: hidden;
    position: relative;
    max-height: 500px;
}

.team-premium-card-desc-texto.collapsed {
    max-height: 52px;
}

.team-premium-card-desc-texto.collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 28px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.team-premium-card-desc-texto p {
    margin: 0;
}

.team-premium-card-vermais {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 0.3rem 0 0;
    font-family: inherit;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.team-premium-card-vermais:hover {
    opacity: 0.75;
}

.team-premium-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.6rem;
}

.team-premium-card-tag {
    background: #f0ebdf;
    color: #7e6220;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}

.team-premium-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
}

.team-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.team-premium-btn i {
    font-size: 1rem;
}

.team-premium-btn-agendar {
    background: #D4AF37;
    color: #0B2341;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.team-premium-btn-agendar:hover {
    background: #c4a031;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.team-premium-btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.team-premium-btn-whatsapp:hover {
    background: #1db955;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1024px) {
    .team-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-premium {
        padding: 4rem 1rem;
    }

    .team-premium-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .team-premium-card-body {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .team-premium-card-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .team-premium {
        padding: 3rem 0.85rem;
    }

    .team-premium-header {
        margin-bottom: 2.5rem;
    }

    .team-premium-card-body {
        padding: 1rem 1rem 1.25rem;
    }

    .team-premium-btn {
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
    }
}
