@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;
    flex-wrap: wrap;
}

.gov-user-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* 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;
    flex-wrap: wrap;
}

/* 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;
    }

    /* outros \/ */
        /* DA HERANÇA */
            /* HERDADO >CRIAÇÃO DA EMPRESA*/
            .div-container-emp .dashboard-section {
                /* max-width: 900px; */
                /* margin: 0 auto; */
                /* padding: 30px 20px; */
                font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
            }

            .div-container-emp .political-warning {
                background: #fff8f0;
                border-left: 4px solid #dd6b20;
                padding: 15px;
                margin: 20px 0;
                border-radius: 0 4px 4px 0;
            }

            .div-container-emp .political-warning h4 {
                color: #dd6b20;
                margin-top: 0;
                margin-bottom: 10px;
                font-size: 15px;
            }

            .div-container-emp .political-warning ul {
                padding-left: 20px;
                margin: 0;
            }

            .div-container-emp .political-warning li {
                margin-bottom: 8px;
                font-size: 14px;
                color: #718096;
                line-height: 1.4;
            }

            .div-container-emp .political-warning li:last-child {
                margin-bottom: 0;
            }
            
            .div-container-emp .section-header {
                    margin-bottom: 30px;
                    text-align: center;
                }
                
            .div-container-emp .section-title {
                    color: #2c3e50;
                    font-size: 28px;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                
            .div-container-emp .section-description {
                    color: #5d6d7e;
                    font-size: 15px;
                    line-height: 1.5;
                    max-width: 700px;
                    margin: 0 auto;
                }
                
            .div-container-emp .card-grid {
                    display: flex;
                    justify-content: center;
                }
                
            .div-container-emp .dashboard-card {
                    background: #ffffff;
                    border-radius: 8px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                    overflow: hidden;
                    width: 100%;
                    /* max-width: 800px; */
                }
                
                /* Cabeçalho do Card */
            .div-container-emp .card-header {
                    height: 200px;
                    background-size: cover;
                    background-position: center;
                    position: relative;
                }
                
            .div-container-emp .header-overlay {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                    padding: 25px;
                    color: white;
                }
                
            .div-container-emp .header-overlay h3 {
                    margin: 0;
                    font-size: 24px;
                    font-weight: 500;
                }
                
            .div-container-emp .header-overlay p {
                    margin: 5px 0 0;
                    opacity: 0.9;
                    font-size: 15px;
                }
                
                /* Corpo do Card */
            .div-container-emp .card-body {
                    /* padding: 30px; */
                }
                
            .div-container-emp .form-intro {
                    margin-bottom: 25px;
                }
                
            .div-container-emp .card-title {
                    color: #2c3e50;
                    font-size: 22px;
                    font-weight: 500;
                    margin: 0 0 5px 0;
                }
                
            .div-container-emp .card-subtitle {
                    color: #7f8c8d;
                    font-size: 14px;
                    margin: 0;
                }
                
                /* Informações Financeiras */
            .div-container-emp .financial-info {
                    background: #f8fafc;
                    border-radius: 6px;
                    padding: 15px;
                    margin-bottom: 25px;
                    border: 1px solid #e2e8f0;
                }
                
            .div-container-emp .cost-badge {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 10px;
                }
                
            .div-container-emp .cost-label {
                    font-weight: 500;
                    color: #4a5568;
                    font-size: 15px;
                }
                
            .div-container-emp .cost-value {
                    color: #2e7d32;
                    font-weight: 600;
                    font-size: 18px;
                }
                
            .div-container-emp .cost-disclaimer p {
                    margin: 0;
                    font-size: 13px;
                    color: #718096;
                    line-height: 1.5;
                }
                
                /* Formulário */
            .div-container-emp .dashboard-form {
                    margin-top: 10px;
                }
                
            .div-container-emp .form-group {
                    margin-bottom: 25px;
                }
                
            .div-container-emp .form-group label {
                    display: block;
                    margin-bottom: 8px;
                    font-weight: 500;
                    color: #4a5568;
                    font-size: 15px;
                }
                
            .div-container-emp .form-group input, .form-select {
                    width: 100%;
                    padding: 12px 15px;
                    border: 1px solid #ced4da;
                    border-radius: 6px;
                    font-size: 15px;
                    transition: all 0.3s ease;
                    background-color: #fff;
                }
                
            .div-container-emp .form-group input:focus, .form-select:focus {
                    border-color: #4299e1;
                    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
                    outline: none;
                }
                
            .div-container-emp .form-instructions {
                    margin-top: 8px;
                }
                
            .div-container-emp .form-instructions p {
                    margin: 3px 0;
                    font-size: 13px;
                    color: #718096;
                    line-height: 1.4;
                }
                
                /* Termos Legais */
            .div-container-emp .legal-disclaimer {
                    background: #fff8f8;
                    border-left: 4px solid #e53e3e;
                    padding: 15px;
                    border-radius: 0 4px 4px 0;
                    margin: 30px 0;
                }
                
            .div-container-emp .legal-disclaimer h4 {
                    margin: 0 0 10px 0;
                    color: #c53030;
                    font-size: 15px;
                    font-weight: 500;
                }
                
            .div-container-emp .legal-disclaimer p {
                    margin: 0;
                    font-size: 13px;
                    color: #718096;
                    line-height: 1.5;
                }
                
                /* Ações do Formulário */
            .div-container-emp .form-actions {
                    margin-top: 30px;
                }
                
            .div-container-emp .form-submit-btn {
                    width: 100%;
                    padding: 14px;
                    background: #2b6cb0;
                    color: white;
                    border: none;
                    border-radius: 6px;
                    font-size: 16px;
                    font-weight: 500;
                    cursor: pointer;
                    transition: background 0.3s ease;
                }
                
            .div-container-emp .form-submit-btn:hover {
                    background: #2c5282;
                }
                
            .div-container-emp .form-note {
                    margin-top: 12px;
                }
                
            .div-container-emp .form-note p {
                    margin: 0;
                    font-size: 13px;
                    color: #718096;
                    text-align: center;
                    line-height: 1.5;
                }
                
                /* Estado de Espera */
            .div-container-emp .card-waiting {
                    border-top: 4px solid #e53e3e;
                }
                
            .div-container-emp .status-message {
                    margin-top: 10px;
                }
                
            .div-container-emp .alert-message {
                    padding: 15px;
                    border-radius: 6px;
                    margin: 20px 0;
                }
                
            .div-container-emp .alert-message.warning {
                    background: #fffaf0;
                    border-left: 4px solid #dd6b20;
                }
                
            .div-container-emp .alert-message p {
                    margin: 0;
                    font-size: 14px;
                    color: #718096;
                    line-height: 1.5;
                }
                
            .div-container-emp .timer-container {
                    background: #f8fafc;
                    border-radius: 6px;
                    padding: 15px;
                    margin: 25px 0;
                    border: 1px solid #e2e8f0;
                }
                
            .div-container-emp .timer-badge {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 8px;
                }
                
            .div-container-emp .timer-label {
                    font-weight: 500;
                    color: #4a5568;
                    font-size: 15px;
                }
                
            .div-container-emp .timer-value {
                    color: #c53030;
                    font-weight: 600;
                    font-size: 18px;
                }
                
            .div-container-emp .timer-note {
                    margin: 0;
                    font-size: 13px;
                    color: #718096;
                }
                
            .div-container-emp .suggested-actions {
                    margin-top: 30px;
                }
                
            .div-container-emp .suggested-actions h4 {
                    color: #2d3748;
                    font-size: 16px;
                    font-weight: 500;
                    margin-bottom: 15px;
                }
                
            .div-container-emp .action-list {
                    padding-left: 20px;
                    margin: 0;
                }
                
            .div-container-emp .action-list li {
                    margin-bottom: 12px;
                    font-size: 14px;
                    color: #4a5568;
                    line-height: 1.5;
                }
                
            .div-container-emp .action-list li strong {
                    color: #2d3748;
                    font-weight: 500;
                }
                
                /* Responsividade */
                @media (max-width: 768px) {
                .div-container-emp .dashboard-section {
                        /* padding: 20px 15px; */
                    }
                    
                .div-container-emp .card-header {
                        height: 160px;
                    }
                    
                .div-container-emp .card-body {
                        /* padding: 20px; */
                    }
                    
                .div-container-emp .section-title {
                        font-size: 24px;
                    }
                    
                .div-container-emp .section-description {
                        font-size: 14px;
                    }
                }
                
                @media (max-width: 480px) {
                .div-container-emp .cost-badge, .timer-badge {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                    
                .div-container-emp .cost-value, .timer-value {
                        margin-top: 5px;
                    }
                }
        /* */
    /* */
/*  */
