/*---------------------------------------
       SECTIONS DE DOAÇÃO - ESTILOS EXCLUSIVOS               
     -----------------------------------------*/

/* Section Diferencial - Impacto da Doação */
.dp-donation-impact-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.dp-donation-impact-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: var(--font-weight-bold);
    font-size: var(--h2-font-size);
    color: var(--secondary-color);
}

.dp-donation-impact-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--custom-btn-bg-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Cards de Impacto */
.dp-impact-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(61, 64, 91, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 1;
}

.dp-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 178, 154, 0.1), rgba(244, 241, 222, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dp-impact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.15);
    border-color: var(--primary-color);
}

.dp-impact-card:hover::before {
    opacity: 1;
}

.dp-impact-icon {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.dp-impact-card:hover .dp-impact-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--custom-btn-bg-hover-color);
}

.dp-impact-card h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.dp-impact-card:hover h4 {
    color: var(--primary-color);
}

.dp-impact-card p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Efeito de círculo decorativo */
.dp-impact-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(129, 178, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transition: all 0.6s ease;
    z-index: -1;
}

.dp-impact-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Progress Bar Section */
.dp-progress-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--section-bg-color);
    position: relative;
    overflow: hidden;
}

.dp-progress-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(129, 178, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.dp-progress-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 204, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.dp-progress-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: var(--font-weight-bold);
    font-size: var(--h2-font-size);
    color: var(--secondary-color);
    z-index: 2;
}

.dp-progress-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--custom-btn-bg-color), var(--custom-btn-bg-hover-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.dp-progress-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-large);
    height: 24px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dp-progress-bar {
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--custom-btn-bg-color) 50%,
        var(--custom-btn-bg-hover-color) 100%);
    height: 100%;
    border-radius: var(--border-radius-large);
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.dp-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
        );
    animation: dpProgressShine 2s infinite;
}

@keyframes dpProgressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.dp-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-color);
    z-index: 2;
    position: relative;
}

.dp-progress-amount {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.dp-progress-amount span {
    font-size: var(--h6-font-size);
    color: var(--p-color);
    font-weight: var(--font-weight-normal);
}

.dp-progress-remaining {
    text-align: center;
    margin-top: 25px;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-color);
    z-index: 2;
    position: relative;
}

.dp-progress-remaining strong {
    color: var(--custom-btn-bg-hover-color);
}

/* Testimonials Section */
.dp-donation-testimonials-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.dp-testimonials-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: var(--font-weight-bold);
    font-size: var(--h2-font-size);
    color: var(--secondary-color);
}

.dp-testimonials-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--custom-btn-bg-hover-color), var(--primary-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.dp-testimonial-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(61, 64, 91, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.dp-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.15);
    border-left-color: var(--custom-btn-bg-color);
}

.dp-testimonial-card::before {
    content: "❝";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3.5rem;
    color: var(--section-bg-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dp-testimonial-card:hover::before {
    color: var(--primary-color);
    opacity: 0.9;
    transform: scale(1.1);
}

.dp-testimonial-card p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.dp-testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--section-bg-color);
    transition: all 0.3s ease;
}

.dp-testimonial-card:hover .dp-testimonial-avatar {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.dp-testimonial-author h5 {
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.dp-testimonial-author small {
    color: var(--custom-btn-bg-hover-color);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
}

/* Final CTA Section */
.dp-donation-cta-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(129, 178, 154, 0.05), rgba(244, 241, 222, 0.1));
}

.dp-cta-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: var(--font-weight-bold);
    font-size: var(--h2-font-size);
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.dp-cta-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--p-color);
    font-size: var(--p-font-size);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.dp-cta-button {
    background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--custom-btn-bg-hover-color));
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    padding: 16px 45px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dp-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.dp-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(224, 122, 95, 0.3);
    color: var(--white-color);
}

.dp-cta-button:hover::before {
    left: 100%;
}

.dp-cta-button i {
    margin-right: 10px;
    font-size: 20px;
}

/* Decorative elements for CTA */
.dp-cta-section::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(129, 178, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50px;
    left: 10%;
}

.dp-cta-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(242, 204, 143, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 50px;
    right: 10%;
}

/* Animations */
@keyframes dpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dp-fade-in-up {
    animation: dpFadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
    opacity: 0;
}

.dp-fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}
.dp-fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}
.dp-fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}
.dp-fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
}
.dp-fade-in-up:nth-child(5) {
    animation-delay: 0.5s;
}
.dp-fade-in-up:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .dp-donation-impact-section,
    .dp-progress-section,
    .dp-donation-testimonials-section,
    .dp-donation-cta-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .dp-donation-impact-title,
    .dp-progress-title,
    .dp-testimonials-title,
    .dp-cta-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .dp-impact-card,
    .dp-testimonial-card {
        margin-bottom: 25px;
    }

    .dp-impact-icon {
        font-size: 2.8rem;
    }

    .dp-cta-button {
        font-size: 16px;
        padding: 14px 35px;
    }
}

@media screen and (max-width: 768px) {
    .dp-donation-impact-section,
    .dp-progress-section,
    .dp-donation-testimonials-section,
    .dp-donation-cta-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .dp-donation-impact-title,
    .dp-progress-title,
    .dp-testimonials-title,
    .dp-cta-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .dp-impact-card,
    .dp-testimonial-card {
        padding: 25px 20px;
    }

    .dp-impact-card h4,
    .dp-testimonial-author h5 {
        font-size: 18px;
    }

    .dp-impact-card p,
    .dp-testimonial-card p,
    .dp-cta-subtitle {
        font-size: 16px;
    }

    .dp-progress-container {
        height: 20px;
    }

    .dp-progress-amount {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .dp-progress-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .dp-testimonial-card {
        text-align: center;
    }

    .dp-testimonial-author {
        justify-content: center;
    }
}

/*---------------------------------------
SECTION PIX - ESTILOS EXCLUSIVOS               
-----------------------------------------*/

.dp-pix-donation-section {
    position: relative;
    overflow: hidden;
}

.dp-pix-donation-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129, 178, 154, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

.dp-pix-donation-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 204, 143, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

/* Header */
.dp-pix-header {
    position: relative;
    z-index: 2;
}

.dp-pix-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--custom-btn-bg-hover-color), #d95c42);
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    padding: 8px 20px;
    border-radius: var(--border-radius-large);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    animation: dpPulse 2s infinite;
}

@keyframes dpPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(224, 122, 95, 0.5);
    }
}

.dp-pix-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dp-pix-subtitle {
    color: var(--p-color);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* Card Principal PIX */
.dp-pix-card {
    background: white;
    border-radius: var(--border-radius-medium);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(61, 64, 91, 0.1);
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.dp-pix-card-header {
    text-align: center;
    margin-bottom: 35px;
}

.dp-pix-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--custom-btn-bg-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dp-pix-icon {
    font-size: 2.5rem;
    color: white;
}

.dp-pix-card-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.dp-pix-card-subtitle {
    color: var(--p-color);
    font-size: 16px;
}

/* Chave PIX */
.dp-pix-key-container {
    background: linear-gradient(135deg, rgba(129, 178, 154, 0.05), rgba(244, 241, 222, 0.1));
    border-radius: var(--border-radius-small);
    padding: 20px;
    border: 2px solid rgba(129, 178, 154, 0.2);
    margin-bottom: 20px;
}

.dp-pix-key-label {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.dp-pix-key-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 15px 20px;
    border-radius: var(--border-radius-small);
    border: 1px solid #e0e0e0;
}

.dp-pix-key-value code {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    letter-spacing: 1px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-pix-copy-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.dp-pix-copy-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    transform: scale(1.1);
}

.dp-pix-copied-message {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    margin-top: 10px;
    display: none;
    align-items: center;
    font-weight: var(--font-weight-medium);
    animation: dpSlideDown 0.3s ease;
}

@keyframes dpSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* QR Code PIX */
.dp-pix-qr-container {
    text-align: center;
}

.dp-pix-qr-label {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-pix-qr-code {
    display: inline-block;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-small);
    border: 2px solid rgba(129, 178, 154, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dp-pix-qr-placeholder {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dp-pix-qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    margin-bottom: 15px;
}

.dp-pix-qr-cell {
    width: 20px;
    height: 20px;
    background: #e0e0e0;
    border-radius: 3px;
}

.dp-pix-qr-cell-dark {
    background: var(--secondary-color);
}

.dp-pix-qr-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--p-color);
    font-size: 14px;
}

.dp-pix-qr-text i {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.dp-pix-qr-instructions {
    color: var(--p-color);
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* Informações da Conta */
.dp-pix-account-info {
    margin: 35px 0;
    padding-top: 25px;
    border-top: 2px dashed rgba(129, 178, 154, 0.2);
}

.dp-pix-info-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.dp-pix-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dp-pix-info-item {
    background: rgba(129, 178, 154, 0.05);
    padding: 12px 15px;
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--primary-color);
}

.dp-pix-info-label {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--p-color);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-pix-info-value {
    display: block;
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-color);
}

/* Instruções */
.dp-pix-instructions {
    margin: 35px 0;
}

.dp-pix-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-pix-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.3s ease;
}

.dp-pix-step:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.dp-pix-step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--custom-btn-bg-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    margin-right: 15px;
    flex-shrink: 0;
}

.dp-pix-step-text {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
}

/* Card de Alerta */
.dp-pix-alert-card {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.05), rgba(224, 122, 95, 0.02));
    border: 2px solid rgba(224, 122, 95, 0.3);
    border-radius: var(--border-radius-medium);
    padding: 35px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.dp-pix-alert-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(224, 122, 95, 0.1), transparent);
    border-radius: var(--border-radius-medium);
    z-index: -1;
    animation: dpBorderGlow 3s infinite;
}

@keyframes dpBorderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.dp-pix-alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.dp-pix-alert-icon {
    font-size: 2rem;
    color: var(--custom-btn-bg-hover-color);
    margin-right: 15px;
}

.dp-pix-alert-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--custom-btn-bg-hover-color);
    margin: 0;
}

.dp-pix-alert-text {
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.dp-pix-alert-tips {
    margin: 25px 0;
}

.dp-pix-tip {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.dp-pix-tip-icon {
    color: var(--custom-btn-bg-hover-color);
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.dp-pix-tip-text {
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.5;
}

.dp-pix-contact-warning {
    background: rgba(224, 122, 95, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--custom-btn-bg-hover-color);
    margin-top: 25px;
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
}

.dp-pix-contact-warning a {
    color: var(--custom-btn-bg-hover-color);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
}

.dp-pix-contact-warning a:hover {
    text-decoration: underline;
}

/* Card de Flexibilidade */
.dp-pix-flex-card {
    background: linear-gradient(135deg, rgba(129, 178, 154, 0.05), rgba(242, 204, 143, 0.05));
    border: 2px solid rgba(129, 178, 154, 0.3);
    border-radius: var(--border-radius-medium);
    padding: 35px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.dp-pix-flex-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.dp-pix-flex-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.dp-pix-flex-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin: 0;
}

.dp-pix-flex-text {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.dp-pix-flex-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .dp-pix-flex-values {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dp-pix-value-suggestion {
    background: white;
    border-radius: var(--border-radius-small);
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dp-pix-value-suggestion:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dp-pix-value-amount {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.dp-pix-value-desc {
    font-size: 13px;
    color: var(--p-color);
}

.dp-pix-flex-note {
    background: rgba(129, 178, 154, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

/* Aviso Final */
.dp-pix-final-note {
    background: white;
    border-radius: var(--border-radius-medium);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border-top: 5px solid var(--primary-color);
}

.dp-pix-note-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--custom-btn-bg-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dp-pix-note-icon i {
    font-size: 24px;
    color: white;
}

.dp-pix-note-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.dp-pix-note-text {
    color: var(--p-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.dp-pix-note-text a {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

.dp-pix-note-text a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .dp-pix-card {
        padding: 25px;
    }

    .dp-pix-title {
        font-size: 24px;
    }

    .dp-pix-info-grid {
        grid-template-columns: 1fr;
    }

    .dp-pix-flex-values {
        grid-template-columns: 1fr;
    }

    .dp-pix-alert-card,
    .dp-pix-flex-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .dp-pix-key-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dp-pix-copy-btn {
        align-self: flex-end;
        margin-top: -50px;
    }

    .dp-pix-qr-placeholder {
        width: 180px;
        height: 180px;
    }
}

/* Animação de entrada */
.dp-fade-in-up {
    animation: dpFadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes dpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dp-pix-card {
    animation-delay: 0.1s;
}

.dp-pix-alert-card {
    animation-delay: 0.3s;
}

.dp-pix-flex-card {
    animation-delay: 0.5s;
}
