/* Custom Variables */
:root {
    --dark-bg: #0a0a0a;
    --red-cta: #dc3545;
    --blue-accent: #4a90e2;
    --white-text: #ffffff;
    --gray-text: #cccccc;
    --section-spacing: 80px;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    top: 20px;
    left: -400px;
    width: 350px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 16px;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid #dc3545;
}

.sales-notification.show {
    left: 20px;
}

.sales-notification.hide {
    left: -400px;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.notification-icon {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.notification-title {
    font-size: 13px;
    font-weight: 600;
    color: #28a745;
    margin: 0;
}

.notification-content {
    color: #333;
    font-size: 13px;
    line-height: 1.4;
}

.notification-name {
    font-weight: 600;
    color: #dc3545;
}

.notification-details {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.notification-package {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--blue-accent);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    padding: var(--section-spacing) 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Benefits List */
.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.3rem;
}

/* CTA Buttons */
.btn-cta {
    background: linear-gradient(45deg, var(--red-cta) 0%, #ff3333 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff0000 0%, #ff4444 100%);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(230, 0, 0, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    }
}

/* Sections */
.bonuses-section,
.objection-section,
.guarantee-section,
.package-section,
.pricing-section,
.final-cta-section,
.cta-payment-section,
.package-complete-section,
.course-benefits-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.bonuses-section {
    background: linear-gradient(135deg, #111111 0%, var(--dark-bg) 100%);
}

.objection-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.guarantee-section {
    background: linear-gradient(135deg, #111111 0%, var(--dark-bg) 100%);
}

.package-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.pricing-section {
    background: linear-gradient(135deg, #111111 0%, var(--dark-bg) 100%);
}

.final-cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.cta-payment-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #111111 100%);
}

/* CTA Payment Section Styles */
.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--white-text);
    font-weight: 400;
    margin-bottom: 2rem;
}

.payment-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.payment-icon {
    font-size: 2rem;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: var(--white-text);
}

.payment-icon-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.payment-icon-text:hover {
    color: var(--white-text);
    background: rgba(255,255,255,0.2);
}

.cta-main-image {
    margin: 3rem 0;
}

.cta-main-image img {
    filter: drop-shadow(0 20px 40px rgba(230, 0, 0, 0.3));
}

.cta-bottom-text {
    margin-top: 2rem;
}

.cta-bottom-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Package Complete Section */
.package-complete-section {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.package-complete-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    z-index: 1;
}

.package-intro {
    font-size: 1.2rem;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.package-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red-cta);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.access-text {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.package-item-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.package-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-cta);
    box-shadow: 0 15px 30px rgba(230, 0, 0, 0.2);
}

.package-item-title {
    font-size: 1.3rem;
    color: var(--white-text);
    margin-bottom: 0.5rem;
}

.highlight-title {
    font-size: 1.1rem;
    color: var(--blue-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-description {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ready-text {
    font-size: 0.9rem;
    color: var(--white-text);
    font-style: italic;
}

/* Video Thumbnails Grid */
.video-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
}

.video-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.video-thumb {
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 4px;
    border: 2px solid #666;
    position: relative;
}

.video-thumb::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--red-cta);
    font-size: 10px;
}

/* GIFs Section */
.gif-header {
    background: var(--blue-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.gif-exercises {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

.exercise-row {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.exercise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.exercise-figure {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--blue-accent) 0%, #4f7cff 100%);
    border-radius: 50%;
    position: relative;
}

.exercise-figure::after {
    content: '🏃';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.exercise-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-text);
}

.exercise-item small {
    font-size: 0.7rem;
    color: var(--gray-text);
    text-align: center;
}

/* Schedule Section */
.schedule-title {
    font-size: 1.2rem;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.weekly-schedule {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.day-row:last-child {
    border-bottom: none;
}

.day-row span {
    color: var(--white-text);
    font-weight: 500;
}

.schedule-icons {
    display: flex;
    gap: 5px;
}

.schedule-icons::after {
    content: '💪 🏃 🤸';
    font-size: 12px;
}

.rest-day {
    color: var(--red-cta);
    font-weight: 700;
}

.health-balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red-cta) 0%, #ff4444 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Course Benefits Section */
.course-benefits-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
    position: relative;
}

.benefits-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.benefits-list-left,
.benefits-list-right {
    padding: 1rem 0;
}

.benefits-central-image {
    margin: 2rem 0;
    position: relative;
}

.benefits-central-image img {
    filter: drop-shadow(0 20px 40px rgba(230, 0, 0, 0.4));
}

.course-benefits-section .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.course-benefits-section .benefit-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.course-benefits-section .benefit-item span {
    color: var(--white-text);
}

/* Bonus Cards */
.bonus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-cta), var(--blue-accent));
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--red-cta);
}

.bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.bonus-title {
    font-size: 1.5rem;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.bonus-value {
    font-size: 1.2rem;
}

/* Objection Section */
.objection-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid #333;
}

.objection-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefits-highlight {
    background: rgba(29, 78, 216, 0.1);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--blue-accent);
}

.benefits-list-2 {
    list-style: none;
    padding: 0;
}

.benefits-list-2 li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Guarantee Section */
.guarantee-image {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.guarantee-title {
    font-size: 2.2rem;
    color: var(--white-text);
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Package Section */
.package-content {
    padding: 2rem 0;
}

.package-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.package-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--red-cta);
    transition: all 0.3s ease;
}

.package-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.package-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.package-item strong {
    font-size: 1.2rem;
    color: var(--white-text);
    display: block;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--red-cta);
    box-shadow: 0 20px 60px rgba(230, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'OFERTA LIMITADA';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--red-cta);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: var(--gray-text);
    font-size: 1.2rem;
}

.price-comparison {
    margin: 2rem 0;
}

.old-price {
    position: relative;
    margin-bottom: 1rem;
}

.old-price .price-value {
    font-size: 1.8rem;
    color: #666;
    text-decoration: line-through;
}

.new-price .price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--red-cta);
    display: block;
    line-height: 1;
}

.price-label {
    font-size: 1.2rem;
    color: var(--gray-text);
    display: block;
}

.price-note {
    font-size: 1.1rem;
    color: var(--blue-accent);
    display: block;
    margin-top: 0.5rem;
}

.pricing-benefits {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 2rem;
}

.security-badges {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-title {
    font-size: 2.2rem;
    line-height: 1.3;
}

.final-cta-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.package-item-final {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid var(--red-cta);
    font-weight: 500;
}

.package-item-final i {
    font-size: 1.2rem;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--dark-bg) 100%);
    border-top: 1px solid #333;
}

.footer-title {
    color: var(--red-cta);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-text {
    color: var(--gray-text);
}

.payment-title {
    color: var(--white-text);
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.payment-icon {
    font-size: 2rem;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: var(--blue-accent);
}

.footer-divider {
    border-color: #333;
    margin: 2rem 0 1rem 0;
}

.copyright {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card::before {
        display: none;
    }
    
    .payment-icons {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-card,
    .objection-content,
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .new-price .price-value {
        font-size: 3rem;
    }
    
    .package-item {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .payment-icons-row {
        gap: 1rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
    }
    
    .package-title {
        font-size: 2rem;
    }
    
    .package-item-card {
        padding: 1.5rem 1rem;
    }
    
    .video-thumb {
        width: 35px;
        height: 20px;
    }
    
    .exercise-figure {
        width: 25px;
        height: 25px;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefits-subtitle {
        font-size: 1.2rem;
    }
    
    .course-benefits-section .benefit-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-cta {
        width: 100%;
        padding: 1rem;
    }
    
    .bonus-card,
    .objection-content,
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .payment-icons-row {
        gap: 0.8rem;
        flex-direction: row;
    }
    
    .payment-icon {
        font-size: 1.3rem;
    }
    
    .payment-icon-text {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .package-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .package-intro, .package-subtitle {
        font-size: 0.9rem;
    }
    
    .package-item-card {
        padding: 1rem;
    }
    
    .video-thumb {
        width: 30px;
        height: 18px;
    }
    
    .exercise-figure {
        width: 20px;
        height: 20px;
    }
    
    .exercise-item span, .exercise-item small {
        font-size: 0.7rem;
    }
    
    .day-row {
        font-size: 0.8rem;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .course-benefits-section .benefit-item {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .benefits-central-image {
        margin: 1rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--red-cta);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff3333;
}

/* Selection Color */
::selection {
    background: var(--red-cta);
    color: white;
}

::-moz-selection {
    background: var(--red-cta);
    color: white;
}
