@charset "UTF-8";
:root {
    --gov-primary: #003366;
    --gov-secondary: #004080;
    --gov-accent: #00509e;
    --gov-light: #f8f9fa;
    --gov-dark: #212529;
    --gov-success: #28a745;
    --gov-danger: #dc3545;
    --gov-warning: #ffc107;
    --gov-info: #17a2b8;
    --gov-border: #dee2e6;
    --gov-text: #495057;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--gov-text);
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* DO JINGLE MUSICAL \/ */
.jingle-container {
    margin: 15px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.jingle-toggle-btn {
    width: 100%;
    padding: 10px 15px;
    background: #f0f0f0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jingle-toggle-btn:hover {
    background: #e5e5e5;
}

.jingle-toggle-btn:after {
    content: "▶";
    font-size: 12px;
    transition: transform 0.2s;
}

.jingle-toggle-btn.active:after {
    content: "▼";
}

.jingle-player {
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
}

.jingle-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jingle-link {
    color: #065fd4;
    text-decoration: none;
    font-size: 14px;
}

.jingle-link:hover {
    text-decoration: underline;
}

.jingle-iframe {
    border-radius: 4px;
    border: 1px solid #ddd;
}
/* /\ */

.gov-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

/* Header */
.gov-header {
    background-color: var(--gov-primary);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* position: sticky; */
    top: 0;
    /* z-index: 1000; */
}

.gov-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gov-logo img {
    height: 40px;
}

.gov-logo span {
    font-weight: 500;
    font-size: 1.1rem;
}

.gov-header .gov-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-user-controls {
    display: flex;
    gap: 10px;
}

/* Botões */
.gov-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gov-btn i {
    font-size: 0.9em;
}

.gov-btn-primary {
    background-color: var(--gov-accent);
    color: white;
}

.gov-btn-primary:hover {
    background-color: #0066cc;
}

.gov-btn-secondary {
    background-color: white;
    color: var(--gov-primary);
    border: 1px solid var(--gov-primary);
}

.gov-btn-secondary:hover {
    background-color: #f0f0f0;
}

.gov-btn-small {
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* Container do Perfil */
.gov-profile-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    overflow: hidden;
}

/* Cabeçalho do Perfil */
.gov-profile-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--gov-light);
    border-bottom: 1px solid var(--gov-border);
}

.gov-profile-identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gov-avatar-container {
    position: relative;
}

.gov-avatar {
    width: 150px;
    /* height: 100px; */
    /* border-radius: 50%; */
    object-fit: cover;
    border: 1px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gov-avatar-status {
    position: absolute;
    bottom: 0px;
    /* right: 0; */
    /* padding: 3px 8px; */
    /* border-radius: 15px; */
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    width: 100%;
}

.gov-avatar-status.active {
    background-color: var(--gov-success);
}

.gov-avatar-status.inactive {
    background-color: var(--gov-danger);
}

.gov-identity-info h1 {
    font-size: 1.5rem;
    color: var(--gov-dark);
    margin-bottom: 5px;
}

.gov-id-number {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--gov-text);
}

.gov-profile-actions {
    display: flex;
    gap: 10px;
}

/* Navegação do Perfil */
.gov-profile-nav {
    background-color: var(--gov-primary);
}

.gov-profile-nav ul {
    display: flex;
    list-style: none;
    overflow-x: auto;
}

.gov-profile-nav li {
    flex-shrink: 0;
}

.gov-profile-nav a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border-bottom: 3px solid transparent;
}

.gov-profile-nav a:hover {
    background-color: var(--gov-secondary);
}

.gov-profile-nav li.active a {
    background-color: var(--gov-secondary);
    border-bottom-color: var(--gov-accent);
}

.gov-profile-nav i {
    margin-right: 8px;
}

/* Conteúdo do Perfil */
.gov-profile-content {
    padding: 20px;
}

.gov-profile-section {
    display: none;
}

.gov-profile-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.perfil-avatar{
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cartões de Informação */
.gov-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gov-info-card {
    background-color: var(--gov-light);
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gov-info-card-wide {
    grid-column: 1 / -1;
}

.gov-info-card h3 {
    color: var(--gov-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gov-border);
}

.gov-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.gov-info-row span {
    color: var(--gov-text);
}

.gov-info-row strong {
    color: var(--gov-dark);
    font-weight: 500;
}

.gov-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gov-text);
}

/* Seção de Relacionamentos */
.gov-relations-tabs {
    margin-top: 20px;
}

.gov-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gov-border);
    padding-bottom: 10px;
}
.gov-tab-buttons a {
    cursor: pointer;
    
    &:visited, &:hover, &:active, &:focus {
      text-decoration: none;
      outline: none;
    }
  }

.gov-tab-btn {
    padding: 8px 15px;
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gov-text);
    transition: all 0.3s;
}

.gov-tab-btn:hover {
    background-color: var(--gov-light);
    border-bottom: none;
}

.gov-tab-btn.active {
    background-color: var(--gov-primary);
    color: white;
}

.gov-tab-content {
    display: none;
}

.gov-tab-content.active {
    display: block;
}

.gov-relations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gov-relation-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--gov-light);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gov-relation-card:hover {
    transform: translateY(-3px);
}

.gov-relation-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: var(--gov-primary); */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.gov-relation-info {
    flex: 1;
}

.gov-relation-info h4 {
    font-size: 0.95rem;
    color: var(--gov-dark);
    margin-bottom: 3px;
}

.gov-relation-info span {
    font-size: 0.8rem;
    color: var(--gov-text);
    display: block;
    margin-bottom: 5px;
}

/* Seção Financeira */
.gov-financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gov-financial-card {
    background-color: var(--gov-light);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gov-financial-card h3 {
    font-size: 1rem;
    color: var(--gov-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gov-amount {
    text-align: center;
}

.gov-amount-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gov-dark);
    display: block;
}

.gov-amount-label {
    font-size: 0.8rem;
    color: var(--gov-text);
}

.gov-class-indicator {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin: 15px 0;
    overflow: hidden;
}

.gov-class-bar {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
}

.gov-class-label {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.gov-financial-details {
    margin-top: 30px;
    background-color: var(--gov-light);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gov-chart-container {
    margin-top: 20px;
    height: 300px;
}

/* Rodapé */
.gov-footer {
    background-color: var(--gov-dark);
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

.gov-footer p {
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .gov-profile-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .gov-profile-identity {
        flex-direction: column;
        text-align: center;
    }
    
    .gov-profile-actions {
        width: 100%;
        justify-content: center;
    }
    
    .gov-profile-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gov-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gov-header .gov-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .gov-user-controls {
        width: 100%;
        justify-content: center;
    }
    
    .gov-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gov-profile-nav a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .gov-profile-nav i {
        margin-right: 5px;
    }
}





/* Variáveis de cores */
:root main {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-gray: #ecf0f1;
    --medium-gray: #bdc3c7;
    --dark-gray: #7f8c8d;
    --text-color: #333;
    --text-light: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e Estilos Base */
.corpo-sect-card-v1 .world-countries-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--text-color);
}

.corpo-sect-card-v1 .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.corpo-sect-card-v1 .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.corpo-sect-card-v1 .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.corpo-sect-card-v1 .section-subtitle {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 400;
}

/* Grid de Países */
.corpo-sect-card-v1 .countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

/* Card de País */
.corpo-sect-card-v1 .country-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.corpo-sect-card-v1 .country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Bandeira do País */
.corpo-sect-card-v1 .country-flag {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.corpo-sect-card-v1 .flag-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.corpo-sect-card-v1 .explore-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.corpo-sect-card-v1 .explore-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Conteúdo do Card */
.corpo-sect-card-v1 .country-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.corpo-sect-card-v1 .country-header {
    margin-bottom: 1rem;
}

.corpo-sect-card-v1 .country-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.corpo-sect-card-v1 .government-type {
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corpo-sect-card-v1 .country-leader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.corpo-sect-card-v1 .country-leader svg {
    color: var(--warning-color);
}

/* Estatísticas */
.corpo-sect-card-v1 .country-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.corpo-sect-card-v1 .stat-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.corpo-sect-card-v1 .stat-icon {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corpo-sect-card-v1 .stat-icon svg {
    color: var(--primary-color);
}

.corpo-sect-card-v1 .stat-info {
    display: flex;
    flex-direction: column;
}

.corpo-sect-card-v1 .stat-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corpo-sect-card-v1 .stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Status dos Jogadores */
.corpo-sect-card-v1 .players-status {
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.corpo-sect-card-v1 .status-bar {
    height: 6px;
    background-color: #f5f5f5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.corpo-sect-card-v1 .alive-bar {
    height: 100%;
    background-color: var(--success-color);
    transition: width 0.5s ease;
}

.corpo-sect-card-v1 .status-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.corpo-sect-card-v1 .alive-count {
    color: var(--success-color);
    font-weight: 500;
}

.corpo-sect-card-v1 .dead-count {
    color: var(--accent-color);
    font-weight: 500;
}

/* Rodapé do Card */
.corpo-sect-card-v1 .country-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

.corpo-sect-card-v1 .power-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corpo-sect-card-v1 .power-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
}

.corpo-sect-card-v1 .power-rating {
    display: flex;
    gap: 0.2rem;
}

.corpo-sect-card-v1 .power-star {
    width: 12px;
    height: 12px;
    background-color: var(--medium-gray);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.corpo-sect-card-v1 .power-star.filled {
    background-color: var(--warning-color);
}

.corpo-sect-card-v1 .details-link {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.corpo-sect-card-v1 .details-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Paginação */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-arrow, .pagination-number {
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    color: var(--secondary-color);
    background-color: var(--light-gray);
    min-width: 36px;
    justify-content: center;
}

.pagination-number:hover {
    background-color: var(--medium-gray);
}

.pagination-number.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.pagination-arrow {
    color: var(--secondary-color);
    font-weight: 500;
    background-color: transparent;
    border: 1px solid var(--medium-gray);
}

.pagination-arrow:hover {
    background-color: var(--light-gray);
}

/* Responsividade */
@media (max-width: 768px) {
    .corpo-sect-card-v1 .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .corpo-sect-card-v1 .section-title {
        font-size: 1.8rem;
    }
    
    .corpo-sect-card-v1 .country-stats {
        grid-template-columns: 1fr;
    }
    
    .pagination-container {
        gap: 0.3rem;
    }
    
    .pagination-arrow, .pagination-number {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .pagination-arrow span {
        display: none;
    }
}

@media (max-width: 480px) {
    .corpo-sect-card-v1 .countries-grid {
        grid-template-columns: 1fr;
    }
    
     .pagination-container {
        justify-content: space-between;
    }
}

/* /\ --- /\ --- /\ *
/*DAS INFORMAÇÕES PRINCIPAIS DO PAÍS*/
/*PRESIDENTES*/
.leaders-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem;
}

.leader-banner-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0.5rem;
    width: 100%;
    max-width: 380px;
    transition: transform 0.2s ease;
}

.leader-banner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leader-banner-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.leader-banner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.leader-badge svg {
    width: 16px;
    height: 16px;
}

.president .leader-badge svg {
    fill: #d32f2f;
}

.vice-president .leader-badge svg {
    fill: #1976d2;
}

.leader-banner-info {
    padding-left: 1rem;
    flex-grow: 1;
    min-width: 0;
}

.leader-position {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leader-name {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leader-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.leader-name a:hover {
    color: #1976d2;
}

.president {
    border-left: 3px solid #d32f2f;
}

.vice-president {
    border-left: 3px solid #1976d2;
}

@media (max-width: 768px) {
    .leaders-banner {
        flex-direction: column;
        align-items: center;
    }
    
    .leader-banner-item {
        max-width: 100%;
    }
}
/*SEÇÃO ABAIXO*/
.country-info-sections {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 2rem 1rem; */
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.country-info-sections .info-section {
    margin-bottom: 3rem;
}

.country-info-sections .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.country-info-sections .section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.country-info-sections .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1976d2, #d32f2f);
    margin: 0.5rem auto 0;
}

.country-info-sections .section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 0;
}

.country-info-sections .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.country-info-sections .info-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-info-sections .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.country-info-sections .card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.country-info-sections .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-info-sections .info-card:hover .card-overlay {
    opacity: 1;
}

.country-info-sections .card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.country-info-sections .card-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.country-info-sections .link-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.country-info-sections .card-content {
    padding: 1.25rem;
}

.country-info-sections .card-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.country-info-sections .card-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.25rem 0;
}

.country-info-sections .card-description strong {
    color: #495057;
}

/* Responsividade */
@media (max-width: 768px) {
    .country-info-sections .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .country-info-sections .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .country-info-sections .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .country-info-sections .card-image {
        height: 140px;
    }
    
    .country-info-sections .section-title {
        font-size: 1.3rem;
    }
}

/*HERDADO \/*/
    /* CONSULTAR O TARGET */
        .target-selection {
            max-width: 100%;
        }

        .target-selection .selection-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .target-selection .section-title {
            margin: 0 0 0.5rem 0;
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a202c;
        }

        .target-selection .section-subtitle {
            margin: 0;
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Search Methods */
        .target-selection .search-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .target-selection .search-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1.5rem;
            display: flex;
            gap: 1rem;
            align-items: start;
            transition: all 0.2s ease;
        }

        .target-selection .search-card:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .target-selection .search-icon {
            width: 48px;
            height: 48px;
            background: #3182ce;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .target-selection .search-content {
            flex: 1;
        }

        .target-selection .search-title {
            margin: 0 0 1rem 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a202c;
        }

        .target-selection .search-form {
            display: flex;
            gap: 0.75rem;
        }

        .target-selection .form-group {
            flex: 1;
        }

        .target-selection .form-group input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }

        .target-selection .form-group input:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .target-selection .btn {
            padding: 0.75rem 1.25rem;
            border: none;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .target-selection .btn-primary {
            background: #3182ce;
            color: white;
        }

        .target-selection .btn-primary:hover {
            background: #2c5aa0;
        }

        /* Search Results */
        .target-selection .search-results {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1.5rem;
        }

        .target-selection .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f1f5f9;
        }

        .target-selection .results-title {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a202c;
        }

        .target-selection .results-count {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .target-selection .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .target-selection .character-card {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        .target-selection .color-bar {
            height: 3px;
        }

        .target-selection .character-card:hover {
            border-color: #3182ce;
            box-shadow: 0 2px 4px rgba(49, 130, 206, 0.1);
        }

        .target-selection .character-avatar {
            position: relative;
            width: 60px;
            height: 60px;
            /* border-radius: 50%; */
            overflow: hidden;
            flex-shrink: 0;
        }

        .target-selection .character-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .target-selection .profile-link {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .target-selection .character-avatar:hover .profile-link {
            opacity: 1;
        }

        .target-selection .character-info {
            flex: 1;
            min-width: 0;
        }

        .target-selection .character-name {
            margin: 0 0 0.75rem 0;
            font-size: 1rem;
            font-weight: 600;
            color: #1a202c;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .target-selection .character-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .target-selection .detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: #6b7280;
        }

        .target-selection .detail-item i {
            width: 14px;
            color: #9ca3af;
        }

        /* Pagination */
        .target-selection .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f1f5f9;
        }

        .target-selection .page-btn,
        .target-selection .page-number {
            padding: 0.5rem 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            text-decoration: none;
            color: #374151;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 2.5rem;
        }

        .target-selection .page-number.active {
            background: #3182ce;
            border-color: #3182ce;
            color: white;
        }

        .target-selection .page-btn:hover,
        .target-selection .page-number:hover:not(.active) {
            background: #f8fafc;
            border-color: #9ca3af;
        }

        .target-selection .page-numbers {
            display: flex;
            gap: 0.25rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .target-selection .search-methods {
                grid-template-columns: 1fr;
            }
            
            .target-selection .search-card {
                flex-direction: column;
                text-align: center;
            }
            
            .target-selection .search-icon {
                align-self: center;
            }
            
            .target-selection .search-form {
                flex-direction: column;
            }
            
            .target-selection .results-header {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            
            .target-selection .results-grid {
                grid-template-columns: 1fr;
            }
            
            .target-selection .character-card {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }
            
            .target-selection .character-avatar {
                align-self: center;
            }
            
            .target-selection .character-details {
                align-items: center;
            }
            
            .target-selection .pagination {
                flex-wrap: wrap;
            }
            
            .target-selection .page-numbers {
                order: -1;
                width: 100%;
                justify-content: center;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .target-selection .selection-header {
                margin-bottom: 1.5rem;
            }
            
            .target-selection .search-card {
                padding: 1.25rem;
            }
            
            .target-selection .search-results {
                padding: 1.25rem;
            }
            
            .target-selection .page-btn,
            .target-selection .page-number {
                padding: 0.5rem;
                min-width: 2.25rem;
                font-size: 0.8rem;
            }
        }
    /*  */
    /* DO BANIMENTO \/ */
    .banned-header {
        /* text-align: center; */
        /* margin-bottom: 10px; */
        /* margin-bottom: 30px; */
        padding: 20px;
        /* background-color: #f8f9fa; */
        /* background-image: linear-gradient(#003366, #00000000); */
        /* background-image: linear-gradient(#003366, #dc3545); */
        
        /* border-radius: 8px; */
        /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    }

    .banido-posi-header{
        /* background-image: linear-gradient(#dc3545, #00000000); */
        background-image: linear-gradient(#003366, #00000000);
    }
    .banido-posi-footer{
        /* background-image: linear-gradient(#00000000, #dc3545); */
        background-image: linear-gradient(#00000000, #2d3748);
    }


    .banned-badge {
        display: flex;
        /* margin-bottom: 20px; */
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .banned-badge h1 {
        margin: 0;
        font-size: 2rem;
    }
    .banido-posi-header h1{
        color: #003366;
    }
    .banido-posi-footer h1{
        color: #2d3748;
    }

    /* DO BANIMENTO 2 \/ */
        /* Anotações da Moderação */
            .secao-ban {
                padding: 0px !important;
                box-shadow: unset !important;
            }

            .secao-ban .mod-notes {
                background: #fff;
                border-radius: 8px;
                padding: 20px;
                margin-bottom: 20px;
                border: 1px solid #dee2e6;
            }

            .secao-ban .mod-notes h3 {
                margin: 0 0 15px 0;
                color: #212529;
                font-size: 1.2rem;
                padding-bottom: 10px;
                border-bottom: 1px solid #dee2e6;
            }

            /* Lista de Notas */
            .secao-ban .notes-list {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .secao-ban .note-card {
                background: #f8f9fa;
                border-radius: 6px;
                padding: 15px;
                border: 1px solid #e9ecef;
                position: relative;
            }

            /* Cabeçalho da Nota */
            .secao-ban .note-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 10px;
                gap: 10px;
            }

            .secao-ban .moderator-info {
                display: flex;
                align-items: center;
                gap: 10px;
                flex: 1;
            }

            .secao-ban .moderator-info img {
                width: 35px;
                height: 35px;
                /* border-radius: 50%; */
                object-fit: cover;
                border: 2px solid #dee2e6;
            }

            .secao-ban .moderator-name {
                font-weight: 600;
                color: #495057;
                text-decoration: none;
                font-size: 0.9rem;
            }

            .secao-ban .moderator-name:hover {
                color: #0d6efd;
            }

            .secao-ban .note-date {
                font-size: 0.8rem;
                color: #6c757d;
                white-space: nowrap;
            }

            /* Conteúdo da Nota */
            .secao-ban .note-content p {
                margin: 0;
                color: #495057;
                line-height: 1.5;
                font-size: 0.9rem;
            }

            .secao-ban .note-id {
                position: absolute;
                top: 10px;
                right: 10px;
                font-size: 0.7rem;
                color: #adb5bd;
                font-family: monospace;
            }

            /* Paginação */
            .secao-ban .pagination {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 5px;
                margin-top: 20px;
                padding-top: 15px;
                border-top: 1px solid #dee2e6;
            }

            .secao-ban .pagination a {
                padding: 6px 10px;
                background: #f8f9fa;
                color: #495057;
                text-decoration: none;
                border-radius: 4px;
                border: 1px solid #dee2e6;
                font-size: 0.85rem;
                transition: all 0.2s ease;
            }

            .secao-ban .pagination a:hover {
                background: #e9ecef;
                border-color: #adb5bd;
            }

            .secao-ban .pagination a.active {
                background: #0d6efd;
                color: white;
                border-color: #0d6efd;
            }

            /* Estados Especiais */
            .secao-ban .note-card.importante {
                background: #fff3cd;
                border-color: #ffeaa7;
            }

            .secao-ban .note-card.aviso {
                background: #f8d7da;
                border-color: #f5c6cb;
            }

            /* Responsivo */
            @media (max-width: 768px) {
                .secao-ban .mod-notes {
                    padding: 15px;
                }
                
                .secao-ban .note-header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 8px;
                }
                
                .secao-ban .note-date {
                    align-self: flex-end;
                }
                
                .secao-ban .pagination {
                    gap: 3px;
                }
                
                .secao-ban .pagination a {
                    padding: 5px 8px;
                    font-size: 0.8rem;
                }
            }

            @media (max-width: 480px) {
                .secao-ban .mod-notes {
                    padding: 12px;
                    margin-bottom: 15px;
                }
                
                .secao-ban .mod-notes h3 {
                    font-size: 1.1rem;
                    margin-bottom: 12px;
                }
                
                .secao-ban .notes-list {
                    gap: 12px;
                }
                
                .secao-ban .note-card {
                    padding: 12px;
                }
                
                .secao-ban .moderator-info {
                    gap: 8px;
                }
                
                .secao-ban .moderator-info img {
                    width: 30px;
                    height: 30px;
                }
            }
            /* Seção de Recurso */
           .appeal-section {
                text-align: center;
                padding: 30px;
                background-color: #f8f9fa;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }

           .appeal-section h3 {
                margin-top: 0;
                color: #212529;
            }

           .appeal-section p {
                margin-bottom: 20px;
                color: #6c757d;
            }

           .appeal-btn {
                display: inline-block;
                padding: 10px 20px;
                background-color: #0d6efd;
                color: white;
                text-decoration: none;
                border-radius: 6px;
                font-weight: 600;
                transition: background-color 0.3s;
            }

           .appeal-btn:hover {
                background-color: #0b5ed7;
            }
        /* */
    /* */
/*  */
