* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/fotoperfil.webp') center/cover no-repeat;
    filter: blur(12px) brightness(0.7);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    padding: 30px;
    z-index: 1;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.header {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    letter-spacing: 0.5px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    border: 1px solid #bbdefb;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid #c8e6c9;
}

.online-badge i {
    color: #4caf50;
    font-size: 8px;
}

.location-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.location i {
    color: #6a11cb;
}

.location-text {
    font-weight: 600;
    color: #6a11cb;
}

.experience-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 12px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #6a11cb;
    border-radius: 2px;
}

.experience-description {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.benefit-check {
    margin-right: 12px;
    color: #00a859;
    font-size: 18px;
    min-width: 22px;
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.benefit-text {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.normal-price {
    font-size: 16px;
    color: #777;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.savings-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid #c8e6c9;
    font-size: 14px;
}

.price-highlight {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    background: #fff5f7;
    padding: 18px 30px;
    border-radius: 6px;
    border: 2px solid #e91e63;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #e91e63;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.offer-price {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    line-height: 1;
}

.payment-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.schedule-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #6a11cb;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.content-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #e91e63;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.privacy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #1a1a2e;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.schedule-btn:hover {
    background: #5a0db0;
    transform: translateY(-2px);
}

.content-btn:hover {
    background: #d81b60;
    transform: translateY(-2px);
}

.privacy-btn:hover {
    background: #0f0f1f;
    transform: translateY(-2px);
}

.vip-note {
    text-align: center;
    font-size: 16px;
    color: #6a11cb;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 14px;
    background: #f3f0ff;
    border-radius: 6px;
    border: 2px solid #6a11cb;
}

.availability {
    text-align: center;
    font-size: 15px;
    color: #e91e63;
    font-weight: 700;
    margin-top: 15px;
    padding: 12px;
    background: #fff5f7;
    border-radius: 6px;
    border: 2px solid #e91e63;
}

.social-proof {
    margin: 20px 0;
    text-align: center;
}

.testimonial {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #6a11cb;
    font-style: italic;
}

.testimonial i {
    color: #6a11cb;
    font-size: 12px;
}

.client {
    margin-top: 8px;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.stat {
    text-align: center;
    padding: 10px;
}

.stat strong {
    display: block;
    font-size: 18px;
    color: #6a11cb;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.footer {
    text-align: center;
    color: #777;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #777;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-icon:hover {
    background: #6a11cb;
    color: white;
    transform: translateY(-2px);
}

/* Novos elementos adicionados */
.countdown-timer {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #ff0000;
}

.slots-counter {
    background: #ffebee;
    color: #d32f2f;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    border: 2px solid #d32f2f;
    font-size: 15px;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 11px;
    color: #666;
}

.trust-badge i {
    font-size: 20px;
    color: #6a11cb;
    margin-bottom: 5px;
}

.recent-activity {
    background: #e8f5e9;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    border-left: 4px solid #4caf50;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #2e7d32;
    line-height: 1.3;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-item strong {
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.stars {
    color: #ffc107;
}

.guarantee-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin: 10px 0;
    border: 1px solid #bbdefb;
    font-size: 13px;
    font-weight: 600;
}

/* Order Bump Styles */
.order-bump-section {
    margin: 15px 0;
}

.bump-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    text-align: center;
}

.bump-option {
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bump-option.selected {
    border-color: #6a11cb;
    background: #f3f0ff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.2);
}

.bump-option {
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bump-option:hover {
    border-color: #6a11cb;
    background: #f8f9fa;
}

.bump-checkbox {
    display: none;
}

.bump-option.selected {
    border-color: #6a11cb;
    background: #f3f0ff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.2);
}

.bump-option {
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bump-option:hover {
    border-color: #6a11cb;
    background: #f8f9fa;
}

.bump-label {
    display: block;
    padding: 10px;
    cursor: pointer;
}

.bump-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bump-info {
    flex: 1;
}

.bump-name {
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    font-size: 13px;
}

.bump-description {
    font-size: 11px;
    color: #666;
}

.bump-price {
    font-weight: 700;
    color: #e91e63;
    font-size: 13px;
}

/* Checkout Form Styles */
.checkout-form {
    margin: 15px 0;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #6a11cb;
    outline: none;
}

.total-section {
    background: #fff5f7;
    border: 2px solid #e91e63;
    border-radius: 6px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
}

.total-label {
    font-size: 13px;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 4px;
}

.total-amount {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
}

.payment-btn {
    width: 100%;
    padding: 14px;
    background: #6a11cb;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.payment-btn:hover {
    background: #5a0db0;
    transform: translateY(-2px);
}

.payment-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 11px;
    color: #666;
    margin-bottom: 15px;
}

.security-icons {
    display: flex;
    gap: 5px;
}

.security-icon {
    width: 16px;
    height: 16px;
}

.loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.loading-spinner {
    font-size: 20px;
    color: #6a11cb;
    margin-bottom: 8px;
}

.qr-code-container {
    display: none;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
}

.qr-code-image {
    max-width: 160px;
    margin: 10px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.pix-code-container {
    margin: 12px 0;
    padding: 12px;
    background: #f3f0ff;
    border-radius: 6px;
    border: 2px solid #6a11cb;
}

.pix-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pix-code-label {
    font-weight: 600;
    color: #6a11cb;
    font-size: 13px;
}

.copy-pix-btn {
    background: #6a11cb;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-pix-btn:hover {
    background: #5a0db0;
    transform: translateY(-1px);
}

.copy-pix-btn.copied {
    background: #e91e63;
}

.pix-code {
    background: white;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    font-family: monospace;
    font-size: 11px;
    word-break: break-all;
    line-height: 1.3;
    color: #6a11cb;
    font-weight: 600;
}

.success-message {
    display: none;
    text-align: center;
    padding: 15px;
    background: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 6px;
    margin-top: 15px;
}

.error-message {
    display: none;
    text-align: center;
    padding: 12px;
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 6px;
    margin-top: 12px;
    color: #d32f2f;
    font-size: 13px;
}

/* Popup de Agendamento - MENOR */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    width: 95%;
    max-width: 380px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.popup-overlay.active .popup-container {
    transform: translateY(0);
}

.popup-header {
    background: #6a11cb;
    color: white;
    padding: 12px 15px;
    text-align: center;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 10;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    transform: rotate(90deg);
}

.popup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.popup-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.popup-content {
    padding: 12px 15px;
}

.popup-info {
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 3px solid #6a11cb;
    font-size: 12px;
}

.popup-info p {
    margin-bottom: 4px;
    line-height: 1.3;
}

.popup-info p:last-child {
    margin-bottom: 0;
}

.day-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.day-option {
    padding: 8px 4px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-option:hover {
    background: #e9ecef;
}

.day-option.selected {
    background: #6a11cb;
    color: white;
    border-color: #6a11cb;
}

.popup-price {
    text-align: center;
    margin: 10px 0;
    padding: 8px;
    background: #fff5f7;
    border-radius: 6px;
    border: 2px solid #e91e63;
}

.popup-price-text {
    font-size: 12px;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 2px;
}

.popup-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #e91e63;
}

/* Popup de Conteúdos - MENOR */
.content-popup-header {
    background: #e91e63;
    color: white;
    padding: 12px 15px;
    text-align: center;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 10;
}

.content-popup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.content-popup-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.content-popup-info {
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 3px solid #e91e63;
    font-size: 12px;
}

.content-popup-info p {
    margin-bottom: 4px;
    line-height: 1.3;
}

.content-popup-info p:last-child {
    margin-bottom: 0;
}

.content-benefits {
    margin: 12px 0;
}

.content-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #e91e63;
}

.content-benefit i {
    color: #e91e63;
    margin-right: 8px;
    font-size: 14px;
}

.content-benefit-text {
    font-size: 13px;
    font-weight: 500;
}

.content-price {
    text-align: center;
    margin: 12px 0;
    padding: 12px;
    background: #fff5f7;
    border-radius: 6px;
    border: 2px solid #e91e63;
}

.content-price-text {
    font-size: 13px;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 4px;
}

.content-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
}

.content-price-note {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

/* Responsividade */
@media (max-width: 500px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .experience-description {
        font-size: 15px;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .price-highlight {
        font-size: 24px;
        padding: 15px 20px;
    }
    
    .schedule-btn, .content-btn, .privacy-btn {
        padding: 14px;
        font-size: 16px;
    }
    
    .vip-note {
        font-size: 15px;
        padding: 12px;
    }
    
    .experience-section {
        padding: 20px;
    }
    
    .buttons-container {
        gap: 12px;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
    }
    
    .popup-content {
        padding: 10px 12px;
    }
    
    .stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .activity-item {
        font-size: 12px;
        gap: 6px;
    }

    .pix-code {
        font-size: 10px;
        padding: 8px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 15px 12px;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .price-highlight {
        font-size: 22px;
        padding: 12px 18px;
    }
    
    .buttons-container {
        gap: 10px;
    }
    
    .day-options {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        font-size: 11px;
    }

    .pix-code {
        font-size: 9px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(106, 17, 203, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0);
    }
}

.glow {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        box-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
    }
    to { 
        box-shadow: 0 0 20px rgba(106, 17, 203, 0.8);
    }
}