/*
 * Página Seja um Associado
 * (extraído dos templates — não misturar CSS com HTML)
 */

    /* --- CSS ESPECÍFICO DA PÁGINA "SEJA UM ASSOCIADO" --- */

    /* Hero Interno */
    .page-hero {
        position: relative;
        height: 350px;
        display: flex;
        align-items: center;
        background: linear-gradient(rgba(0, 34, 102, 0.85), rgba(0, 51, 153, 0.8)), url('https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
    }

    .page-hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-size: 3rem;
        margin-bottom: 15px;
        color: var(--accent-yellow);
    }

    /* Seção de Introdução */
    .join-intro-section {
        padding: 80px 0 60px;
        background-color: var(--white);
        text-align: center;
    }

    .join-intro-box {
        max-width: 850px;
        margin: 0 auto;
        font-size: 1.15rem;
        color: var(--text-gray);
        line-height: 1.8;
    }

    .join-intro-box strong {
        color: var(--primary-blue);
    }

    .section-title {
        font-size: 2.2rem;
        color: var(--primary-blue);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--accent-yellow);
        border-radius: 2px;
    }

    /* Grid de Requisitos */
    .requirements-section {
        padding: 60px 0 80px;
        background-color: var(--bg-light);
    }

    .req-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 50px;
        font-weight: 700;
    }

    .req-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .req-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        text-align: center;
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .req-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-bottom-color: var(--primary-green);
    }

    .req-icon {
        width: 70px;
        height: 70px;
        background: var(--light-green);
        color: var(--primary-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .req-card:hover .req-icon {
        background: var(--primary-green);
        color: var(--white);
    }

    .req-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        margin: 0;
    }

    /* Seção de Investimento e Download */
    .investment-section {
        padding: 80px 0;
        background-color: var(--white);
    }

    .investment-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }

    .investment-box {
        background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
        padding: 40px;
        border-radius: var(--radius-md);
        color: var(--white);
        box-shadow: 0 20px 40px rgba(0, 51, 153, 0.2);
        position: relative;
        overflow: hidden;
    }

    .investment-box::before {
        content: '\f3d1'; /* Ícone de cifrão no FontAwesome */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 150px;
        color: rgba(255, 255, 255, 0.05);
        transform: rotate(-15deg);
    }

    .inv-header {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 25px;
        font-family: 'Montserrat', sans-serif;
        color: var(--accent-yellow);
    }

    .inv-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .inv-item:last-child {
        border-bottom: none;
    }

    .inv-item-text {
        font-size: 1.05rem;
    }

    .inv-item-text span {
        display: block;
        font-size: 0.85rem;
        color: #d1d8e0;
        margin-top: 4px;
    }

    .inv-price {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--accent-yellow);
        font-family: 'Montserrat', sans-serif;
    }

    /* Área do Download */
    .download-action-box {
        text-align: center;
        padding: 30px;
    }

    .download-action-box h3 {
        color: var(--primary-blue);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .download-action-box p {
        color: var(--text-gray);
        margin-bottom: 30px;
    }

    .btn-download-primary {
        background: var(--primary-green);
        color: var(--white);
        padding: 18px 45px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: var(--radius-btn);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 20px rgba(0, 153, 51, 0.2);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-download-primary:hover {
        background: var(--dark-blue);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 34, 102, 0.3);
    }

    /* Disclaimer / Rodapé da página */
    .disclaimer-text {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        max-width: 800px;
        margin: 60px auto 0;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    /* Responsividade */
    @media (max-width: 992px) {
        .investment-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 2.2rem;
        }
        .inv-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .req-grid {
            grid-template-columns: 1fr;
        }
    }

    /* --- SEÇÃO DE PAGAMENTO: DADOS BANCÁRIOS E PIX --- */
    .section-payment-info {
        padding: 80px 0;
        background-color: var(--white, #ffffff); /* Fundo branco para contrastar com a seção anterior */
        position: relative;
    }

    .payment-container {
        max-width: 1000px; /* Um pouco mais estreito para manter a leitura agradável */
        margin: 0 auto;
        padding: 0 20px;
    }

    .payment-card {
        background: var(--bg-light, #f8f9fa);
        border-radius: var(--radius-md, 12px);
        box-shadow: 0 8px 30px rgba(0, 34, 102, 0.06);
        border: 1px solid rgba(0, 51, 153, 0.1);
        overflow: hidden;
        position: relative;
    }

    /* Linha superior colorida para dar acabamento */
    .payment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-blue, #003399), var(--primary-green, #2e7d32));
    }

    .payment-header {
        text-align: center;
        padding: 40px 20px 20px;
    }

    .payment-header h3 {
        color: var(--primary-blue, #003399);
        font-size: 2rem;
        font-family: 'Montserrat', sans-serif;
        margin: 0 0 10px 0;
    }

    .payment-header p {
        color: var(--text-gray, #555555);
        font-size: 1.1rem;
        margin: 0;
    }

    .payment-body {
        padding: 0 40px 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
    }

    /* --- COLUNA ESQUERDA: DADOS BANCÁRIOS --- */
    .payment-details {
        background: var(--white, #ffffff);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .payment-details h4 {
        color: var(--text-dark, #222222);
        font-size: 1.1rem;
        margin: 0 0 20px 0;
        line-height: 1.4;
        font-family: 'Montserrat', sans-serif;
    }

    .info-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .info-item {
        background: rgba(0, 51, 153, 0.03);
        padding: 15px;
        border-radius: 6px;
        border-left: 3px solid var(--primary-blue, #003399);
    }

    .info-item.pix-highlight {
        border-left-color: #32BCAD; /* Cor característica do PIX */
        background: rgba(50, 188, 173, 0.05);
    }

    .info-label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-gray, #555555);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .info-label i {
        margin-right: 5px;
    }

    .info-value {
        display: block;
        font-size: 1.2rem;
        color: var(--primary-blue, #003399);
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .info-value.bank-data {
        font-size: 1.05rem;
    }

    /* --- COLUNA DIREITA: INSTRUÇÕES E CONTATO --- */
    .payment-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-alert {
        background: rgba(255, 193, 7, 0.1); /* Fundo amarelo suave */
        border-left: 4px solid var(--accent-yellow, #ffc107);
        padding: 15px 20px;
        border-radius: 0 6px 6px 0;
        margin-bottom: 25px;
    }

    .contact-alert p {
        color: #664d00;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-alert i {
        color: var(--accent-yellow, #ffc107);
        margin-right: 8px;
    }

    .contact-info h4 {
        color: var(--primary-blue, #003399);
        font-size: 1.2rem;
        margin: 0 0 5px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .contact-info > p {
        color: var(--text-gray, #555555);
        font-size: 1.05rem;
        margin: 0 0 20px 0;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .btn-email {
        background: var(--white, #ffffff);
        color: var(--primary-blue, #003399);
        border: 1px solid rgba(0, 51, 153, 0.2);
    }

    .btn-email:hover {
        background: rgba(0, 51, 153, 0.05);
    }

    .btn-whatsapp {
        background: #25D366; /* Cor oficial do WhatsApp */
        color: #ffffff;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
        background: #128C7E;
        transform: translateY(-2px);
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .payment-body {
            grid-template-columns: 1fr;
            padding: 0 20px 30px;
            gap: 30px;
        }
        .payment-header {
            padding: 30px 20px 20px;
        }
        .payment-header h3 {
            font-size: 1.7rem;
        }
        .payment-details {
            padding: 20px;
        }
    }
