/* =================================================================== */
/* ===   HERO MODERN (Alto Contraste & Sofisticação)               === */
/* =================================================================== */

#hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Overlay: Agora um pouco mais denso para garantir que o texto não brigue com a foto */
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Gradiente branco sólido na base, transparente no topo */
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.90) 60%, #ffffff 70%);
    backdrop-filter: blur(5px);
    z-index: 0;
}

/* Card Principal (Esquerda) - Mais Sólido */
.hero-card-highlight {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    
    /* MUDANÇA: Sombra mais escura e borda visível para contraste */
    box-shadow: 0 25px 50px rgba(0, 40, 100, 0.18); 
    border: 1px solid rgba(0, 65, 155, 0.15); /* Borda azul sutil */
    
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.hero-card-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color); /* Borda acende no hover */
}

/* Card Lista (Direita) */
.hero-card-agenda {
    background: rgba(255, 255, 255, 0.85); /* Menos transparente = mais contraste */
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    
    /* MUDANÇA: Sombra e Borda */
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    
    height: 100%;
}

/* Tipografia: Cores mais fortes */
.hero-event-title {
    font-family: var(--heading-font);
    font-weight: 800;
    
    /* MUDANÇA: Azul quase preto para leitura perfeita */
    color: #002a5c; 
    
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.hero-group-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #495057; /* Cinza escuro, não cinza claro */
    display: flex;
    align-items: center;
}

/* Box de Data Grande: Cores Vibrantes */
.big-date-box {
    /* MUDANÇA: Gradiente Azul Escuro com borda Dourada */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #002a5c 100%);
    color: #fff;
    border-radius: 16px;
    padding: 12px 24px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 40, 100, 0.3);
    border: 2px solid var(--gold-color); /* Toque de luxo e contraste */
}

/* Lista da Agenda */
.agenda-list-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    
    /* MUDANÇA: Borda cinza visível por padrão */
    border: 1px solid #dee2e6; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.agenda-list-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    background-color: #f8fbff; /* Leve tint azul no hover */
    box-shadow: 0 5px 15px rgba(0, 65, 155, 0.1);
}

/* Mini Box de Data: Alto Contraste */
.mini-date-box {
    /* MUDANÇA: Fundo Azul Primário Sólido em vez de azul bebê */
    background-color: var(--primary-color); 
    color: #ffffff; /* Texto branco */
    
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(83, 158, 213, 0.3);
}

.hero-scroll-custom {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar mais visível */
.hero-scroll-custom::-webkit-scrollbar { width: 6px; }
.hero-scroll-custom::-webkit-scrollbar-track { background: #f1f1f1; }
.hero-scroll-custom::-webkit-scrollbar-thumb { background: #adb5bd; border-radius: 10px; }
.hero-scroll-custom::-webkit-scrollbar-thumb:hover { background: var(--secondary-color); }

@media (max-width: 991.98px) {
    #hero { padding-top: 100px; }
    .hero-event-title { font-size: 2rem; }
}


/* Atalho sutil para Ferramentas Musicais */
.btn-tools-shortcut {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 8px 25px 8px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 41, 155, 0.12);
    border: 1px solid rgba(0, 65, 155, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tools-shortcut:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 41, 155, 0.18);
    background-color: #f8fbff;
}

.shortcut-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(83, 158, 213, 0.3);
}

.shortcut-text {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}

.shortcut-text small {
    font-weight: 500;
    color: var(--gray-text);
    margin-left: 5px;
    display: inline-block;
}

/* Ajuste Mobile */
@media (max-width: 575.98px) {
    .shortcut-text small {
        display: none; /* Esconde o texto menor em telas muito pequenas */
    }
    .btn-tools-shortcut {
        padding: 6px 15px 6px 8px;
    }
}


.bpm-pulse {
    transform: scale(1.15); /* Aumenta 15% */
    color: var(--gold-color) !important; /* Muda para o azul escuro do seu tema */
    text-shadow: 0 0 15px rgba(0, 65, 155, 0.3);
    transition: transform 0.05s ease-out; /* Transição ultra rápida */
}

#bpm-display {
    transition: all 0.1s ease-in; /* Volta ao normal suavemente */
    display: inline-block; /* Necessário para o scale funcionar bem */
}







/* =============================================
   Estilos da Seção de Matrículas - Banner Artístico Super Compacto
   =============================================== */
.matriculas-composition-section {
    position: relative;
    /* MUDANÇA 1: Padding vertical drasticamente reduzido */
    padding: 0;
    background: linear-gradient(135deg, #FFD700 0%, #EEDD82 100%);
    overflow: hidden;
    height: 200px;  /* Antes era 450px */
}

.composition-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.shape { position: absolute; border-radius: 50%; background: rgba(255, 255, 0, 0.3); animation: float 15s infinite ease-in-out; }
/* Formas decorativas também foram reduzidas */
.shape-1 { width: 100px; height: 100px; top: 0%; left: 5%; }
.shape-2 { width: 50px; height: 50px; bottom: -5%; left: 20%; animation-delay: 5s; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }


.composition-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.composition-content {
    text-align: left;
}

.composition-title {
    /* MUDANÇA 2: Tamanho da fonte ajustado para o novo espaço */
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    top: -10%;
}

.image-button-wrapper {
    position: relative;
    /* MUDANÇA 3: Tamanho do container da imagem drasticamente reduzido */
    width: 200px;   /* Antes era 350px */
    height: 220px;  /* Antes era 450px */
    border-radius: 110px 110px 0 0; /* Metade da nova largura */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.image-button-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.image-button-wrapper:hover img {
    filter: brightness(0.5);
}

.image-button-wrapper .btn-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    /* MUDANÇA 4: Botão ligeiramente mais compacto */
    padding: 12px 30px;
    font-size: 0.9rem;
}

/* O resto do CSS do botão permanece o mesmo */
.btn-showcase { 
    display: inline-block; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative; 
    overflow: hidden; 
    border: 2px solid #D1A64D; 
    color: #FFDF7E; 
    background-color: #00419B; 
    white-space: nowrap; 

}
.btn-showcase::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: linear-gradient(145deg, #FFDF7E, #D1A64D); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: -1; }
.btn-showcase:hover { color: #10192D; border-color: #D1A64D; }
.btn-showcase:hover::before { width: 100%; }


/* Responsividade */
@media (max-width: 991.98px) {
    .composition-container {
        grid-template-columns: 1fr;
    }
    .composition-content {
        text-align: center;
        margin-bottom: 0; /* Adicionado para separar do wrapper da imagem */
    }
    .composition-title {
        font-size: 1.8rem;
        top: 0;
        padding-top: 25px;
        padding-bottom: 0;
    }

    .image-button-wrapper {
        /* Aumentamos um pouco a imagem no mobile para melhor visualização */
        width: 250px;
        height: 60px;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;

    }
    .img-wrapper, .arrow-matricula {
        /* Aumentamos um pouco a imagem no mobile para melhor visualização */
display: none;
    }


}







/* =================================================================== */
/* === ESTILOS ISOLADOS PARA O BANNER HERO (HERO-SYMPLA) === */
/* 
 * Cada regra aqui é prefixada com a classe '.hero-sympla'.
 * Isso garante que estes estilos SÓ se apliquem a elementos
 * que estão DENTRO da <section class="hero-sympla">,
 * prevenindo qualquer conflito com outros carrosséis.
*/
/* =================================================================== */

/* --- Seção Principal --- */
.hero-sympla {
    padding-top: 50px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
    overflow: hidden; /* Importante para o layout */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* --- Títulos dentro da Seção Hero --- */
.hero-sympla .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
}

.hero-sympla .hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Container do Swiper (Apenas o da Hero) --- */
.hero-sympla .hero-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* --- Slides (Apenas os da Hero) --- */
.hero-sympla .hero-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 500px; 
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform; 
}

/* --- Imagens dentro dos Slides (Apenas as da Hero) --- */
.hero-sympla .hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Sombras do Efeito Coverflow (Apenas as da Hero) --- */
.hero-sympla .hero-swiper .swiper-slide-shadow-left,
.hero-sympla .hero-swiper .swiper-slide-shadow-right {
    background-image: none !important;
}

/* --- Botões de Navegação (Apenas os da Hero) --- */
.hero-sympla .hero-swiper .swiper-button-next,
.hero-sympla .hero-swiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hero-sympla .hero-swiper .swiper-button-next:hover,
.hero-sympla .hero-swiper .swiper-button-prev:hover {
    background-color: #ffffff;
    color: var(--secondary-color);
}

.hero-sympla .hero-swiper .swiper-button-next:after,
.hero-sympla .hero-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- Informações do Slide (Apenas as da Hero) --- */
.hero-sympla .slide-info {
    text-align: center;
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.hero-sympla .slide-info h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.hero-sympla .slide-info p {
    color: var(--gray-text);
}

/* --- Animação de Fade (Apenas para as Informações da Hero) --- */
.hero-sympla .slide-info.fading {
    opacity: 0;
}


/* --- Responsividade (Apenas para a Seção Hero) --- */
@media (max-width: 767.98px) {
    .hero-sympla .hero-swiper .swiper-slide {
        width: 300px;
        height: 180px;
    }
    .hero-sympla .hero-title { 
        font-size: 2rem; 
    }
}


.texto-discreto {
  font-size: 0.6rem; /* Define um tamanho de fonte menor que o padrão */
  color: #6c757d;    /* Define uma cor de texto mais clara, em tom de cinza */
  font-weight: 100;
}








/* =============================================
   Estilos da Seção de Notícias - Design Arrojado
   =============================================== */
.news-showcase-section {
    padding: 60px 0;
    background-color: #FFF; /* Fundo claro para destacar o conteúdo */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color); /* Azul bem claro */
    color: #FFF;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a253c;
    margin-top: 10px;
}

/* Grid Assimétrico */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Coluna da esquerda é 2x maior */
    gap: 40px;
}

/* Artigo em Destaque */
.featured-article {
    display: block;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 65, 155, 0.1);
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradiente que escurece a imagem na base para legibilidade */
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0) 60%);
    z-index: 1;
    transition: background 0.4s ease;
}

.featured-article img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-article:hover img {
    transform: scale(1.05); /* Efeito de zoom sutil */
}

.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
}
.article-category {
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase;
    color: #87CEFA; /* Azul claro para a categoria */
}
.article-content h3 {
    font-size: 1.8rem; margin: 5px 0 10px 0;
    line-height: 1.3;
}
.article-content p {
    font-weight: 300;
    opacity: 0.8;
}

/* Artigos Secundários */
.secondary-articles {
    display: flex;
    flex-direction: column;
}

.secondary-article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
    text-decoration: none;
    color: #000;
}
.article-date {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 5px;
}
.secondary-article-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}
.article-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.secondary-article-item:hover h4 {
    color: var(--gold-color);
}
.secondary-article-item:hover .article-arrow {
    transform: translateX(5px);
    color: var(--gold-color);
}

/* Link "Ver Todos" */
.view-all-link {
    margin-top: auto; /* Empurra o link para o final da coluna */
    padding-top: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}
.view-all-link::after {
    content: '';
    position: absolute;
    width: 30%; height: 2px;
    background-color: var(--primary-color);
    bottom: -5px; left: 0;
    transition: width 0.3s ease;
}
.view-all-link:hover::after {
    width: 100%;
}



.news-showcase-section .secondary-article-item h4 {
    /* As 4 propriedades mágicas para truncamento em múltiplas linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* <-- AQUI você define o número máximo de linhas! */
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* Propriedades de estilo que você já tinha (para garantir consistência) */
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4; /* Ajuste o line-height para um bom espaçamento */
    transition: color 0.3s ease;
}

/* Garante que o hover continue funcionando como antes */
.news-showcase-section .secondary-article-item:hover h4 {
    color: var(--gold-color);
}


/* --- Truncamento para o TÍTULO (h3) do artigo de destaque --- */
.news-showcase-section .featured-article .article-content h3 {
    /* As 4 propriedades mágicas para truncamento */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* <-- Limite de 2 linhas para o TÍTULO */
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* Estilos existentes para garantir consistência */
    font-size: 1.8rem;
    margin: 5px 0 10px 0;
    line-height: 1.3;
}

/* --- Truncamento para o RESUMO (p) do artigo de destaque --- */
.news-showcase-section .featured-article .article-content p {
    /* As 4 propriedades mágicas para truncamento */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* <-- Limite de 3 linhas para o RESUMO */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;

    /* Estilos existentes para garantir consistência */
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.5; /* Bom espaçamento para o parágrafo */
}



/* Responsividade */
@media (max-width: 991.98px) {
    .news-grid {
        grid-template-columns: 1fr; /* Coluna única em telas menores */
    }
    .featured-article {
        height: 400px;
    }
}






/* =================================================================== */
/* ===  CSS ESPECÍFICO PARA A SEÇÃO DE ACESSO RÁPIDO    === */
/* =================================================================== */

    #acesso-rapido {
        background-color: #f8f9fa; /* Fundo de seção um pouco diferente do branco puro */
    }

    /* O Card em si */
    .link-card-arrojado {
        display: block;
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 65, 155, 0.08); /* Sombra suave com o azul secundário */
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid #e9ecef;
    }

    .link-card-arrojado:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0, 65, 155, 0.12); /* Sombra mais pronunciada no hover */
    }

    /* Container da Imagem */
    .link-card-imagem-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .link-card-imagem {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .link-card-arrojado:hover .link-card-imagem {
        transform: scale(1.1); /* Efeito de zoom no hover */
    }

    /* Overlay com Gradiente e Ícone */
    .link-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 65, 155, 0.6) 0%, rgba(83, 158, 213, 0) 70%); /* Gradiente com as cores do seu projeto */
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .link-card-arrojado:hover .link-card-overlay {
        opacity: 1;
    }

    .link-card-overlay i {
        font-size: 2.5rem;
        color: #ffffff;
        transform: scale(0.8);
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .link-card-arrojado:hover .link-card-overlay i {
        transform: scale(1);
    }

    /* Corpo do Card */
    .link-card-body {
        padding: 1rem;
        text-align: center;
    }

    /* ========================================================== */
    /* ===            MODIFICAÇÃO PRINCIPAL AQUI              === */
    /* ========================================================== */
    .link-card-title {
        font-family: var(--heading-font, 'Montserrat', sans-serif);
        font-weight: 600;
        color: var(--dark-text, #212529);
        font-size: 1rem;
        margin: 0;

        /* As 3 propriedades mágicas para truncamento em linha única */
        white-space: nowrap;      /* 1. Impede a quebra de linha */
        overflow: hidden;         /* 2. Esconde o texto que transborda */
        text-overflow: ellipsis;  /* 3. Adiciona "..." no final */
    }




.list-group-item.item-inativo {
    opacity: 0.6;
    background-color: #f8f9fa; /* Um cinza bem claro */
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.list-group-item.item-inativo .fw-bold {
    text-decoration: line-through;
}








/* =================================================================== */
/* ===   SEÇÃO MEMBROS (INTEGRANTES) - LUXO & CLEAN                === */
/* =================================================================== */

/* Fundo decorativo sutil */
.bg-decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 158, 213, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

/* O Card do Membro */
.member-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
    cursor: grab; /* Cursor de mãozinha */
}

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

/* Wrapper da Foto (O segredo do visual) */
.member-photo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 6px; /* Espaço entre a foto e a borda externa */
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Sombra suave */
}

/* A foto em si */
.photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .photo-inner img {
    transform: scale(1.1); /* Zoom suave na foto ao passar o mouse */
}

/* Borda decorativa (opcional: pode ser estática ou girar) */
.photo-border-spin {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold-color); /* Dourado */
    border-right-color: rgba(255, 215, 0, 0.3);
    z-index: 1;
    transition: transform 0.5s ease;
}

.member-card:hover .photo-border-spin {
    transform: rotate(90deg);
}

/* Tipografia */
.member-name {
    font-family: var(--heading-font);
    color: var(--secondary-color); /* Azul escuro */
    font-size: 1.25rem;
}

.member-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color); /* Azul claro */
    border-radius: 2px;
    opacity: 0.5;
}

.member-role {
    color: var(--gray-text);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

/* Paginação (Pontinhos) */
.swiper-pagination-members .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d9e6;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-members .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px; /* Vira um traço */
    border-radius: 5px;
}

