/* --- OVERRIDES GERAIS --- */
body {
    overflow-y: auto !important;
    height: auto !important;
    display: block !important;
}

.bg-shape {
    position: fixed !important;
    bottom: -45vh;
    left: 25%;
    z-index: -1;
}

/* --- Layout da Página --- */
.container-about {
    width: 90%;
    max-width: 1100px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 40px 0 100px 0;
    display: flex;
    flex-direction: column;
}

/* Header */
.about-header {
    margin-bottom: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-back:hover { color: #2563EB; }
.btn-back svg { width: 20px; height: 20px; }

/* --- Conteúdo Principal (Grid) --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide em 2 colunas iguais */
    gap: 60px;
    align-items: center; /* Centraliza verticalmente */
}

/* Lado Esquerdo: Texto */
.text-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.1;
}

.text-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-section .intro {
    font-weight: 500;
    color: #222;
    font-size: 1.2rem;
}

/* Assinatura com Avatar */
.signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signature img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Faz a imagem ficar redonda */
    background: #eef2ff;
    border: 2px solid #2563EB;
}

.signature span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* --- Lado Direito: Card de Apoio --- */
.support-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15); /* Sombra azulada destaque */
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ícone de coração no topo do card */
.card-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}
.card-icon svg { width: 30px; height: 30px; }

.support-card h2 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 15px;
}

.support-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.highlight-text {
    color: #333 !important;
    font-weight: 500;
}

/* Botões de Doação */
.donation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.btn-donate-primary {
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.btn-donate-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-donate-primary svg { width: 20px; height: 20px; }

.btn-donate-secondary {
    background-color: transparent;
    color: #555;
    border: 2px solid #eee;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-donate-secondary:hover {
    border-color: #ccc;
    color: #000;
}

.disclaimer {
    font-size: 0.75rem !important;
    color: #999 !important;
    margin-bottom: 0 !important;
}

/* --- Ajuste da Dock Social --- */
.social-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.active-icon img {
    opacity: 1 !important;
    transform: scale(1.1); /* Destaca o ícone da página atual */
}

/* --- Responsividade (Celular) --- */
@media (max-width: 850px) {
    .about-content {
        grid-template-columns: 1fr; /* Vira uma coluna só */
        gap: 40px;
    }
    
    .text-section {
        text-align: center;
    }

    .signature {
        justify-content: center;
    }
}