* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Header */
.header {
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: #FF6B35;
}

.header-icon {
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

/* Profile Section (Desktop) */
.profile-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-container {
    position: relative;
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    display: block;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.banner-stats {
    position: absolute;
    bottom: 8px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    gap: 12px;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.stat-item svg {
    color: #666;
    width: 14px;
    height: 14px;
}

.profile-picture-container {
    position: absolute;
    bottom: -60px;
    left: 0;
}

@media (min-width: 769px) {
    .banner-container {
        max-width: 600px;
        margin: 0 auto 80px;
    }
}

.profile-picture {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: visible;
    background: white;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.discount-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.profile-info {
    margin-top: 0px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.verified-icon {
    flex-shrink: 0;
}

.profile-handle {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.profile-bio {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Privacy Week */
.privacy-week {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-week-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.privacy-week-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e5e5e5;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.small-profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 40px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.most-popular {
    margin-bottom: 30px;
}

.popular-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-btn {
    width: 100%;
    background: #FF6B35;
    color: white;
    border: 2px solid #FF6B35;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: #FF6B35;
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        border-color: #ff8c5a;
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0);
    }
}

.subscription-btn:hover {
    background: #e55a2b;
}

.bonus-text {
    margin-top: 8px;
    color: #FF6B35;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.promotions h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.promo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    width: 100%;
    text-align: left;
    transition: all 0.2s;
    animation: borderPulseLight 2s ease-in-out infinite;
}

@keyframes borderPulseLight {
    0%, 100% {
        border-color: rgba(255, 107, 53, 0.3);
    }
    50% {
        border-color: rgba(255, 107, 53, 0.6);
    }
}

.promo-item:hover {
    background: #e5e5e5;
    border-color: rgba(255, 107, 53, 0.5);
    animation: none;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.economy-badge {
    background: #FF6B35;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.best-offer-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

/* Stats Footer */
.stats-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.stat-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.2s;
}

.stat-tab.active {
    color: #FF6B35;
    border-bottom: 2px solid #FF6B35;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: #e5e5e5;
}

/* Feed Section */
.feed-section {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Mobile Subscription Bar */
.mobile-subscription-bar {
    display: none;
}

.mobile-sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.best-offer-mobile {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

/* Mobile Tabs */
.mobile-tabs {
    display: none;
}

.mobile-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.mobile-tab.active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
}

/* Content Cards */
.content-cards {
    display: block;
    padding: 0;
}

.content-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.card-user-info {
    flex: 1;
}

.card-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.verified-icon-small {
    flex-shrink: 0;
}

.card-handle {
    font-size: 13px;
    color: #666;
}

.menu-icon {
    color: #666;
    cursor: pointer;
}

.card-description {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-content {
    position: relative;
    margin-bottom: 12px;
}

.blurred-content {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(8px) brightness(0.7);
}

.content-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(8px) brightness(0.7);
}

/* Background images removed - using videos instead */

.blurred-content.card-2 .content-type-badge,
.blurred-content.card-3 .content-type-badge {
    display: none;
}

.blurred-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.blurred-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.lock-icon {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 3;
}

.content-type-badge svg {
    width: 14px;
    height: 14px;
}

.content-type-badge span {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.content-stats {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    z-index: 3;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.content-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.content-stat svg {
    color: white;
    opacity: 0.9;
    width: 16px;
    height: 16px;
}

.card-actions {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}

.action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.action-btn:hover {
    color: #FF6B35;
}

/* Responsive */
/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.modal-model-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.modal-model-handle {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.modal-subscription-section {
    margin-top: 20px;
}

.modal-most-popular {
    margin-bottom: 25px;
}

.modal-popular-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
}

.modal-subscription-btn {
    width: 100%;
    background: #FF6B35;
    color: white;
    border: 2px solid #FF6B35;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    animation: borderPulse 2s ease-in-out infinite;
}

.modal-subscription-btn:hover {
    background: #e55a2b;
}

.modal-bonus-text {
    margin-top: 8px;
    color: #FF6B35;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.modal-promotions h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.modal-promo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    animation: borderPulseLight 2s ease-in-out infinite;
}

.modal-promo-item:hover {
    background: #e5e5e5;
    border-color: rgba(255, 107, 53, 0.5);
    animation: none;
}

.modal-promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-economy-badge {
    background: #FF6B35;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-best-offer-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-promo-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

@media (max-width: 768px) {
    .profile-section {
        display: block;
        max-width: 100%;
        padding: 15px;
        align-items: flex-start;
    }

    .banner-container {
        width: 100%;
        margin-bottom: 70px;
        position: relative;
    }

    .banner-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
        margin: 0;
    }
    
    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .profile-picture-container {
        position: absolute;
        bottom: -60px;
        left: 10px;
    }
    
    .profile-info {
        max-width: 100%;
        margin-top: 0px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .profile-header {
        flex-wrap: wrap;
        word-wrap: break-word;
    }
    
    .profile-name {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .profile-handle {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 15px;
    }
    
    .profile-bio {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .bio-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        display: block;
    }
    
    .bio-short,
    .bio-full {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline;
    }
    
    .privacy-week {
        max-width: 100%;
        word-wrap: break-word;
        padding: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .privacy-week-offer {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .subscription-section {
        max-width: 100%;
        word-wrap: break-word;
        margin-left: 0;
        margin-right: 0;
    }

    .feed-section {
        padding: 15px;
    }

    .content-cards {
        padding: 0;
    }

    .header {
        padding: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
    }

    .modal-title {
        font-size: 20px;
    }

    .pix-action-buttons {
        flex-direction: column;
    }

    .check-payment-btn {
        width: 100%;
        min-width: 100%;
    }

    .lock-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-support-btn-small {
        position: absolute;
        top: 5px;
        left: 5px;
        width: auto;
        margin-top: 0;
        justify-content: center;
        z-index: 20;
        padding: 6px 8px;
        font-size: 12px;
    }

    .whatsapp-support-btn-small svg {
        width: 16px;
        height: 16px;
    }

    .pix-code-main-title {
        margin-top: 35px;
    }

    .pix-instructions {
        font-size: 10px;
        padding: 6px;
    }
}

/* Payment Modal Styles */
.payment-modal {
    max-width: 450px;
}

.payment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.modal-back {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s;
    margin-right: 10px;
}

.modal-back:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.payment-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    text-align: left;
    padding-left: 0;
}

.payment-modal-subheader {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.payment-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    position: relative;
}

.payment-option:not(.disabled):hover {
    background: #e5e5e5;
}

.payment-option.active {
    background: #fff5f0;
    border: 2px solid #FF6B35;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: #FF6B35;
    flex-shrink: 0;
}

.payment-icon.pix-icon {
    background: #32BCAD;
    color: white;
}

.payment-option.disabled .payment-icon {
    background: #e5e5e5;
    color: #999;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.payment-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.payment-option.disabled .payment-info h4,
.payment-option.disabled .payment-info p {
    color: #999;
}

.payment-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6B35;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.payment-option.active .payment-check {
    opacity: 1;
}

/* Data Form Modal Styles */
.data-modal {
    max-width: 450px;
}

.data-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.data-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    text-align: left;
    padding-left: 0;
}

.data-modal-subheader {
    margin-top: 20px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.data-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.data-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: white;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.continue-btn {
    width: 100%;
    padding: 16px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.continue-btn:hover {
    background: #e55a2b;
}

.continue-btn:active {
    transform: scale(0.98);
}

/* PIX Payment Modal Styles */
.pix-payment-modal {
    max-width: 450px;
}

.pix-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pix-payment-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    text-align: left;
    padding-left: 0;
}

.pix-payment-content {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pix-payment-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
}

.generate-pix-btn {
    width: 100%;
    padding: 18px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.generate-pix-btn:hover {
    background: #e55a2b;
}

.generate-pix-btn:active {
    transform: scale(0.98);
}

/* Loading Modal Styles */
.loading-modal {
    max-width: 400px;
}

.loading-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 0;
}

.loading-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    text-align: left;
}

.loading-content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-main-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.loading-sub-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* PIX Code Modal Styles */
.pix-code-modal {
    max-width: 450px;
    position: relative;
    user-select: text !important;
    -webkit-user-select: text !important;
}

.pix-code-modal * {
    user-select: text !important;
    -webkit-user-select: text !important;
}

.pix-code-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pix-code-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    text-align: left;
}

.pix-code-content {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pix-code-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 280px;
}

.pix-code-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pix-code-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.pix-code-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pix-code-text {
    flex: 1;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: #1a1a1a;
    background: #f9f9f9;
    resize: none;
    min-height: 80px;
    word-break: break-all;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

.copy-pix-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.copy-pix-btn:hover {
    background: #e55a2b;
}

.copy-pix-btn:active {
    transform: scale(0.98);
}

.pix-status-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    display: none;
}

.pix-status-text:not(:empty) {
    display: block;
}

.pix-instructions {
    font-size: 11px;
    color: #666;
    text-align: center;
    margin: 15px 0 10px 0;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 6px;
    line-height: 1.4;
}

.pix-action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.check-payment-btn {
    width: 100%;
    max-width: 350px;
    padding: 12px 24px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.check-payment-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.check-payment-btn:active {
    transform: translateY(0);
}

.check-payment-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.whatsapp-support-btn-small {
    position: absolute;
    top: 15px;
    left: 15px;
    background: transparent;
    color: #25D366;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.whatsapp-support-btn-small:hover {
    color: #20BA5A;
    transform: translateY(-1px);
}

.whatsapp-support-btn-small:active {
    transform: translateY(0);
}

.whatsapp-support-btn-small svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #25D366;
}

/* Success Modal Styles */
.success-modal {
    max-width: 400px;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 50%;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.success-message {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.success-link-btn {
    width: 100%;
    padding: 16px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: background 0.2s;
    margin-top: 10px;
}

.success-link-btn:hover {
    background: #e55a2b;
}

/* Copyright Footer */
.copyright-footer {
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

.copyright-text {
    font-size: 10px;
    color: #999;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .copyright-footer {
        padding: 12px 15px;
        margin-top: 30px;
    }

    .copyright-text {
        font-size: 9px;
    }

    /* Ajustes para QR Code em celulares pequenos */
    .qr-code-container {
        padding: 15px;
    }

    .qr-code-container img {
        max-width: 200px;
    }

    /* Botão Verificar Pagamento mais largo em mobile */
    .check-payment-btn {
        width: 100%;
        max-width: 100%;
    }

    /* Diminuir um pouco o tamanho dos modais de pagamento em mobile */
    .payment-modal,
    .data-modal,
    .pix-payment-modal {
        max-width: 90%;
        padding: 20px 18px;
    }

    .payment-modal-content,
    .data-modal-content,
    .pix-payment-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    /* QR Code ainda menor em celulares muito pequenos */
    .qr-code-container {
        padding: 12px;
    }

    .qr-code-container img {
        max-width: 180px;
    }

    /* Modais ainda menores em celulares muito pequenos */
    .payment-modal,
    .data-modal,
    .pix-payment-modal {
        max-width: 92%;
        padding: 18px 15px;
    }

    .payment-modal-title,
    .data-modal-title,
    .pix-payment-title {
        font-size: 16px;
    }

    .payment-title,
    .data-title {
        font-size: 18px;
    }

    .pix-payment-main-title {
        font-size: 20px;
    }
}

