* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
    border-radius: 15px;
}

.logo:hover {
    transform: scale(1.05) translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.badge i {
    font-size: 1.1rem;
}

.meta-partner i {
    color: #1877f2;
}

.verified i {
    color: #42b883;
}

.secure i {
    color: #ffd700;
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Mensagem de Localização */
.location-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    margin: 15px auto;
    max-width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    animation: slideIn 0.8s ease forwards;
}

.location-message i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fcb045 0%, #fd1d1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.location-message span {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Estatísticas */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131,58,180,0.2);
    border-color: rgba(131,58,180,0.3);
}

.feature-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Instagram Section */
.instagram-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.instagram-container {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.instagram-container:hover {
    border-color: rgba(131,58,180,0.4);
    box-shadow: 0 15px 40px rgba(131,58,180,0.15);
}

.instagram-container h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.instagram-container h2 i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.instagram-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.instagram-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.instagram-prefix {
    position: absolute;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.instagram-input {
    width: 100%;
    padding: 18px 60px 18px 50px;
    font-size: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.instagram-input:focus {
    outline: none;
    border-color: #833ab4;
    background: white;
    box-shadow: 0 5px 20px rgba(131,58,180,0.3);
}

.instagram-input::placeholder {
    color: #adb5bd;
}

.input-check {
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #28a745;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.input-check.show {
    opacity: 1;
    transform: scale(1);
}

.instagram-hint {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
    padding-top: 20px;
}

.price-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.price-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131,58,180,0.15), transparent);
    transition: left 0.6s;
}

.price-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(131,58,180,0.05) 0%, rgba(253,29,29,0.05) 50%, rgba(252,176,69,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.price-btn:hover::before {
    left: 100%;
}

.price-btn:hover::after {
    opacity: 1;
}

.price-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(131,58,180,0.3);
    border-color: rgba(131,58,180,0.4);
}

.price-btn:active {
    transform: translateY(-2px);
}

/* Plano Popular */
.popular-plan {
    border: 3px solid #fcb045 !important;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(252,176,69,0.3) !important;
    padding-top: 35px !important;
    margin-top: 5px;
}

.popular-plan:hover {
    transform: translateY(-8px) scale(1.07) !important;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fcb045 0%, #fd1d1d 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 20px rgba(252,176,69,0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.popular-badge i {
    font-size: 0.85rem;
}

/* Seguidores Info - Destaque Principal */
.followers-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.followers-info i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.followers-count {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(131,58,180,0.1);
}

.followers-label {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Price Info - Secundário */
.price-info {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    background: linear-gradient(135deg, #666 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

/* Efeitos de hover para seguidores */
.price-btn:hover .followers-info i {
    transform: scale(1.1);
    opacity: 1;
}

.price-btn:hover .followers-count {
    transform: scale(1.05);
}

.price-btn:hover .price-value {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* PIX Result */
.pix-result {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header h2 {
    color: #28a745;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.amount-display {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 15px;
    color: white;
}

.amount-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: bold;
}

.qr-section {
    text-align: center;
    margin-bottom: 30px;
}

.qr-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.2rem;
}

.qr-container {
    display: inline-block;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-container img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

.pix-code-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.pix-code-container {
    position: relative;
    margin-bottom: 20px;
}

.pix-code-container textarea {
    width: 100%;
    height: 80px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    resize: none;
    background: #f8f9fa;
}

/* Botão de Copiar Principal - DESTAQUE MÁXIMO */
.copy-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
    margin-top: 15px;
    margin-bottom: 20px;
}

.copy-btn-primary i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.copy-btn-primary:hover {
    background: linear-gradient(135deg, #fcb045 0%, #fd1d1d 50%, #833ab4 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.5);
}

.copy-btn-primary:active {
    transform: translateY(-1px);
}

/* Efeito de brilho no botão */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.copy-btn-primary:hover .btn-shine {
    left: 100%;
}

/* Estado de copiado */
.copy-btn-primary.copied {
    background: linear-gradient(135deg, #28a745 0%, #20903d 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.copy-btn-primary.copied i {
    animation: checkmark 0.5s ease;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Animações de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações */
.header {
    animation: fadeInDown 0.8s ease;
}

.stats-container {
    animation: fadeInDown 1s ease 0.2s backwards;
}

.features-section {
    animation: fadeInDown 1s ease 0.4s backwards;
}

.instagram-section {
    animation: scaleIn 0.8s ease 0.6s backwards;
}

.pricing-grid {
    animation: fadeInDown 1s ease 0.8s backwards;
}

.action-buttons {
    text-align: center;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Loading */
.loading {
    text-align: center;
    color: white;
    margin: 40px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 20px 0;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    color: white;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 120px;
        padding: 8px;
    }
    
    .trust-badges {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        gap: 15px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 12px 20px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .features-section {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 12px 20px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .location-message {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .location-message i {
        font-size: 1.1rem;
    }
    
    .instagram-section {
        max-width: 100%;
    }
    
    .instagram-container {
        padding: 25px 20px;
    }
    
    .instagram-container h2 {
        font-size: 1.5rem;
    }
    
    .instagram-container h2 i {
        font-size: 1.7rem;
    }
    
    .instagram-subtitle {
        font-size: 1rem;
    }
    
    .instagram-input {
        font-size: 1.1rem;
        padding: 16px 50px 16px 45px;
    }
    
    .instagram-prefix {
        font-size: 1.3rem;
        left: 18px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .price-btn {
        padding: 20px 15px;
        min-height: 160px;
    }
    
    .followers-count {
        font-size: 2.2rem;
    }
    
    .followers-info i {
        font-size: 2rem;
    }
    
    .followers-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .pix-result {
        padding: 20px;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .qr-container img {
        max-width: 150px;
    }
    
    .copy-btn-primary {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .copy-btn-primary i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 10px;
    }
    
    .logo {
        max-width: 100px;
        padding: 6px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .stats-container {
        gap: 10px;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .features-section {
        gap: 8px;
    }
    
    .feature-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
        top: -10px;
    }
    
    .popular-plan {
        padding-top: 30px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .price-btn {
        padding: 18px 12px;
        min-height: 140px;
    }
    
    .followers-count {
        font-size: 1.8rem;
    }
    
    .followers-info i {
        font-size: 1.8rem;
    }
    
    .followers-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .location-message {
        font-size: 0.9rem;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .location-message i {
        font-size: 1rem;
    }
    
    .instagram-container {
        padding: 20px 15px;
    }
    
    .instagram-container h2 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .instagram-container h2 i {
        font-size: 1.5rem;
    }
    
    .instagram-subtitle {
        font-size: 0.95rem;
    }
    
    .instagram-input {
        font-size: 1rem;
        padding: 14px 45px 14px 40px;
    }
    
    .instagram-prefix {
        font-size: 1.2rem;
        left: 15px;
    }
    
    .input-check {
        font-size: 1.3rem;
        right: 15px;
    }
    
    .copy-btn-primary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .copy-btn-primary i {
        font-size: 1.1rem;
    }
}
