/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #f8b500 50%, #ff6b9d 75%, #c44569 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    color: #2d1b3d;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 69, 105, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(248, 181, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 520px;
    margin: 0 auto;
    padding: 25px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Header */
.payment-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.payment-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Cards Base */
.loading-container,
.error-container,
.payment-container,
.success-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.loading-container::before,
.error-container::before,
.payment-container::before,
.success-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Loading State */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 157, 0.2);
    border-top: 4px solid #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error State */
.error-container {
    color: #ff4757;
}

.error-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(255, 71, 87, 0.3));
}

.error-container h2 {
    margin-bottom: 15px;
    color: #2d1b3d;
    font-weight: 600;
}

.retry-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

/* Payment State */
.payment-container {
    text-align: left;
}

.plan-info {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

.plan-info::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

.plan-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d1b3d;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.2));
}

.currency {
    font-size: 1.8rem;
    vertical-align: top;
}

/* PIX Section */
.pix-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #2d1b3d;
    font-size: 1.5rem;
    font-weight: 600;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.qr-code-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #ff6b9d);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.qr-code-container img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 15px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-code-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.pix-instructions {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(196, 69, 105, 0.05));
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.pix-instructions h4 {
    margin-bottom: 18px;
    color: #2d1b3d;
    font-weight: 600;
    font-size: 1.1rem;
}

.pix-instructions ol {
    padding-left: 25px;
}

.pix-instructions li {
    margin-bottom: 12px;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1.6;
}

/* PIX Copy Section */
.pix-copy-section p {
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d1b3d;
    font-size: 1.05rem;
}

.pix-code-container {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

#pix-code {
    flex: 1;
    padding: 16px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 12px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
}

#pix-code:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

#copy-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

#copy-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

#copy-btn.copied {
    background: linear-gradient(135deg, #17a2b8, #138496);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
}

/* Status Section */
.status-section {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

.status-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pulse-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.status-text {
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.timer-section {
    background: linear-gradient(135deg, rgba(255, 243, 205, 0.8), rgba(255, 234, 167, 0.8));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

.timer-section p {
    margin: 0;
    color: #8b5a00;
    font-weight: 600;
    font-size: 1rem;
}

#countdown-timer {
    font-weight: 800;
    color: #d63031;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(214, 48, 49, 0.2);
}

/* Success State */
.success-container {
    color: #10B981;
    position: relative;
    overflow: hidden;
}

.success-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.success-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.3));
    animation: successBounce 0.8s ease-out;
}

.success-container h2 {
    color: #2d1b3d;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.success-container p {
    color: #4a4a4a;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .payment-header h1 {
        font-size: 2rem;
    }
    
    .loading-container,
    .error-container,
    .payment-container,
    .success-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .qr-code-container img {
        max-width: 220px;
    }
    
    .pix-code-container {
        flex-direction: column;
    }
    
    #copy-btn {
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.6);
    }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-button {
    background: rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 157, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-button:hover {
    background: rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
}

/* Premium Visual Effects */
.premium-glow {
    position: relative;
}

.premium-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #ff6b9d);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0.7;
    filter: blur(8px);
}

/* Morphing Shapes */
.morphing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.morphing-bg::before,
.morphing-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: morph 20s ease-in-out infinite;
}

.morphing-bg::before {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.morphing-bg::after {
    background: linear-gradient(135deg, #f8b500, #ff6b9d);
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 50%;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    }
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 157, 0.6);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(2n) {
    background: rgba(196, 69, 105, 0.6);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: rgba(248, 181, 0, 0.6);
    animation-duration: 25s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
.success-container {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: successBounce 0.6s ease-out;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.success-message {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.success-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.success-subtext {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.transaction-info {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.transaction-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    text-align: center;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #6B7280;
}

.info-value {
    font-weight: 600;
    color: #374151;
}

.next-steps {
    background: #EFF6FF;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.next-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E40AF;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Estilos base para todos os botões */
.action-buttons .btn {
    flex: 1;
    max-width: 280px;
    min-height: 56px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    padding: 16px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Botão Primário - Imprimir Comprovante */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Botão Secundário - Voltar ao Início */
.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary::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.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.support-info {
    background: #FEF3C7;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #92400E;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.support-info a {
    color: #D97706;
    text-decoration: none;
    font-weight: 600;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Success Animation */
@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 280px;
    justify-content: center;
}

.btn-whatsapp::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.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.action-buttons .btn {
    flex: 1;
    max-width: 200px;
}

.support-info {
    background: #FEF3C7;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #92400E;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.support-info a {
    color: #D97706;
    text-decoration: none;
    font-weight: 600;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Success Animation */
@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments for success page */
@media (max-width: 768px) {
    .success-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-buttons .btn {
        max-width: none;
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }
    
    .btn-whatsapp {
        min-width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        gap: 0.75rem;
    }
    
    .action-buttons .btn {
        min-height: 48px;
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .success-container {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
}

/* Print styles for success page */
@media print {
    .action-buttons,
    .support-info {
        display: none !important;
    }
    
    .success-container {
        box-shadow: none !important;
        border: 2px solid #ddd !important;
    }
    
    body {
        background: white !important;
    }
    
    .container {
        padding: 0 !important;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}