* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Banner de oferta */
.offer-banner {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.offer-banner p {
    margin: 0;
    font-size: 16px;
}

.timer {
    font-size: 18px;
    font-weight: 900;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Logo Privacy */
.privacy-logo {
    text-align: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.privacy-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

/* Container principal */
.container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}

/* Seção do perfil - Layout Original */
.profile-section {
    padding: 0;
    border-bottom: 1px solid #eee;
}

.profile-header {
    position: relative;
    height: 250px;
    overflow: visible;
    border-radius: 0 0 15px 15px;
    margin-bottom: 0;
}

.cover-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-pic-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: -70px auto 0;
    z-index: 10;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    object-position: center center;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.profile-info {
    text-align: center;
    padding: 80px 20px 30px;
    background: white;
}

.profile-info h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.username {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.bio {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stats .stat {
    text-align: center;
}

.stats .stat strong {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.stats .stat span {
    font-size: 14px;
    color: #666;
}

/* Seção de Assinatura */
.subscription-section {
    padding: 30px 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.subscription-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.subscription-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.subscription-button {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.subscription-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.plan-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.plan-desc {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* Seção de conteúdo */
.content-section {
    padding: 30px 20px;
    background: white;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.content-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.blur-image {
    filter: blur(8px);
}

.blur-image:hover {
    filter: blur(0px);
}

.content-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #000;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

/* Seção de avaliações */
.reviews-section {
    padding: 40px 20px;
    background: #f8f9fa;
}

.reviews-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.review-card span {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Botão de acesso final */
.final-access {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-access h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-access p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.access-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.security-badges img {
    height: 35px;
    border-radius: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.faq-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    font-size: 20px;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Modal de Pagamento PIX */
.pix-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.pix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.pix-container {
    position: relative;
    background: white;
    margin: 20px;
    border-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInModal 0.3s ease-out;
}

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.pix-header h2 {
    font-size: 24px;
    color: #333;
}

.close-pix {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-pix:hover {
    background: #f0f0f0;
    color: #333;
}

.pix-content {
    padding: 20px;
}

.pix-info {
    text-align: center;
    margin-bottom: 25px;
}

.pix-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.pix-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.pix-qr-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.pix-qr-code {
    width: 250px;
    height: 250px;
    border: 2px solid #eee;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.pix-qr-code img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pix-code-section {
    margin: 25px 0;
}

.pix-code-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.pix-code-container {
    display: flex;
    gap: 10px;
}

.pix-code-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    font-family: monospace;
}

.copy-pix-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-pix-btn:hover {
    background: #ff8c42;
}

.pix-instructions {
    margin: 25px 0;
}

.pix-instructions h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.pix-instructions ol {
    padding-left: 20px;
}

.pix-instructions li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.pix-status {
    text-align: center;
    margin: 25px 0;
}

.status-waiting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.status-icon {
    font-size: 30px;
}

.status-waiting p {
    color: #666;
    font-weight: 600;
}

.status-paid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #28a745;
}

.status-paid .status-icon {
    font-size: 30px;
}

.status-paid p {
    color: #28a745;
    font-weight: 600;
}

.status-expired {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #dc3545;
}

.status-expired .status-icon {
    font-size: 30px;
}

.status-expired p {
    color: #dc3545;
    font-weight: 600;
}

.pix-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.pix-cancel-btn {
    flex: 1;
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pix-cancel-btn:hover {
    background: #e0e0e0;
}

.pix-check-btn {
    flex: 1;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pix-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Modal de Checkout */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.checkout-container {
    position: relative;
    background: white;
    margin: 20px;
    border-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInModal 0.3s ease-out;
}

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

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.checkout-header h2 {
    font-size: 24px;
    color: #333;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-checkout:hover {
    background: #f0f0f0;
    color: #333;
}

.checkout-content {
    padding: 20px;
}

.main-offer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.main-offer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.offer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-details span:first-child {
    font-weight: 600;
    color: #333;
}

.offer-details span:last-child {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.checkout-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
}

.order-bumps {
    margin: 25px 0;
}

.order-bumps h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.bump-item {
    margin-bottom: 15px;
}

.bump-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bump-label:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.bump-checkbox {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #ff6b35;
}

.bump-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bump-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.bump-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

.checkout-total {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.checkout-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

/* Responsivo para tablets */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .profile-header {
        height: 300px;
    }
    
    .profile-pic-wrapper {
        width: 120px;
        height: 120px;
        margin: -60px auto 0;
    }
    
    .profile-pic {
        border: 5px solid white;
    }
    
    .profile-info {
        padding: 70px 20px 40px;
    }
    
    .profile-info h1 {
        font-size: 32px;
    }
    
    .bio {
        font-size: 18px;
        max-width: 400px;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .content-image,
    .content-item video {
        height: 300px;
    }
    
    .reviews-grid {
        flex-direction: row;
        gap: 20px;
    }
    
    .checkout-container {
        max-width: 500px;
        margin: 40px auto;
    }
}

/* Responsivo para desktop pequeno */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
    }
    
    .subscription-options {
        max-width: 500px;
    }
    
    .reviews-grid {
        gap: 30px;
    }
    
    .review-card {
        padding: 30px;
    }
}

/* Otimizações específicas para mobile muito pequeno */
@media (max-width: 480px) {
    .offer-banner {
        padding: 12px 8px;
    }
    
    .offer-banner p {
        font-size: 14px;
    }
    
    .timer {
        font-size: 16px;
    }
    
    .profile-header {
        height: 200px;
    }
    
    .profile-pic-wrapper {
        width: 100px;
        height: 100px;
        margin: -50px auto 0;
    }
    
    .profile-pic {
        border: 4px solid white;
    }
    
    .profile-info {
        padding: 60px 15px 25px;
    }
    
    .profile-info h1 {
        font-size: 24px;
    }
    
    .bio {
        font-size: 15px;
        max-width: 280px;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stats .stat strong {
        font-size: 18px;
    }
    
    .stats .stat span {
        font-size: 13px;
    }
    
    .subscription-section {
        padding: 25px 15px;
    }
    
    .subscription-section h2 {
        font-size: 20px;
    }
    
    .content-section {
        padding: 25px 15px;
    }
    
    .content-image,
    .content-item video {
        height: 300px;
    }
    
    .reviews-section {
        padding: 30px 15px;
    }
    
    .reviews-section h2 {
        font-size: 20px;
    }
    
    .final-access {
        padding: 30px 15px;
    }
    
    .final-access h2 {
        font-size: 24px;
    }
    
    .final-access p {
        font-size: 16px;
    }
    
    .access-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .faq-section {
        padding: 30px 15px;
    }
    
    .faq-section h2 {
        font-size: 20px;
    }
    
    .checkout-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .checkout-content {
        padding: 15px;
    }
    
    .security-badges img {
        height: 30px;
    }
}

/* Otimizações para telas muito pequenas */
@media (max-width: 360px) {
    .profile-header {
        height: 180px;
    }
    
    .profile-pic-wrapper {
        width: 90px;
        height: 90px;
        margin: -45px auto 0;
    }
    
    .profile-pic {
        border: 3px solid white;
    }
    
    .profile-info {
        padding: 55px 10px 20px;
    }
    
    .profile-info h1 {
        font-size: 22px;
    }
    
    .bio {
        font-size: 14px;
        max-width: 250px;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stats .stat strong {
        font-size: 16px;
    }
    
    .content-image,
    .content-item video {
        height: 280px;
    }
    
    .subscription-button {
        padding: 15px;
    }
    
    .plan-name {
        font-size: 16px;
    }
    
    .plan-price {
        font-size: 20px;
    }
}