:root {
    --primary-blue: #0a2540;
    --secondary-blue: #1a3a5a;
    --accent-orange: #ff6b00;
    --whatsapp-green: #25d366;
    --white: #ffffff;
    --light-gray: #f4f7fa;
    --text-dark: #333333;
    --text-light: #666666;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

/* Header */
header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0px 0;
    text-align: center;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-orange);
}

.subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.offer-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.batch-text {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.urgency-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #d9534f;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: var(--whatsapp-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1eb954;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Countdown */
.countdown-container {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
}

.time-unit span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.time-unit label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Pain Section */
.pain {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.pain h2 {
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pain-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pain-item i {
    color: #d9534f;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Transformation */
.transformation {
    padding: 80px 0;
    text-align: center;
}

.transformation h2 {
    margin-bottom: 40px;
}

.check-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li i {
    color: var(--whatsapp-green);
    font-size: 1.5rem;
}

/* Modules */
.content-modules {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.content-modules h2 {
    margin-bottom: 40px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.module-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    transition: var(--transition);
}

.module-card:hover {
    background: rgba(255,255,255,0.1);
}

.module-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    text-align: center;
}

.whatsapp-prints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.wp-card {
    background: #e5ddd5;
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wp-header {
    background: #075e54;
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.wp-content {
    padding: 20px;
    background: var(--white);
    margin: 15px;
    border-radius: 10px;
    position: relative;
    text-align: left;
}

.wp-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.wp-caption {
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Bonus */
.bonus {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bonus-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bonus-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Instructor */
.instructor {
    padding: 80px 0;
}

.instructor-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.instructor-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-orange);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    max-width: 600px;
    text-align: left;
}

.instructor-info h3 {
    color: var(--accent-orange);
    margin-bottom: 15px;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.price-final {
    margin: 25px 0;
}

.price-final .label {
    font-size: 1.2rem;
    display: block;
}

.price-final .value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.security {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #f9f9f9;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .price-final .value {
        font-size: 3rem;
    }
    
    .instructor-flex {
        flex-direction: column;
    }
}

/* Event Highlight Styles */
.event-highlight {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.event-item {
    background: rgba(255, 107, 0, 0.15);
    border: 2px solid var(--accent-orange);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.event-item i {
    color: var(--accent-orange);
    font-size: 1.4rem;
}

/* Realistic WhatsApp Chat Styles */
.whatsapp-chat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.wa-chat {
    width: 320px;
    background: #e5ddd5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 450px;
}

.wa-header {
    background: #075e54;
    color: white;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-back { font-size: 1.1rem; margin-right: 2px; }

.wa-avatar {
    width: 38px;
    height: 38px;
    background: #ccc;
    border-radius: 50%;
    overflow: hidden;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-contact {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wa-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.wa-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-icons {
    display: flex;
    gap: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.wa-body {
    flex: 1;
    padding: 15px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-repeat: repeat;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-msg-received {
    background: white;
    padding: 8px 12px;
    border-radius: 0 10px 10px 10px;
    max-width: 85%;
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    align-self: flex-start;
    line-height: 1.4;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .event-highlight {
        flex-direction: column;
        align-items: center;
    }
    .event-item {
        width: 100%;
        max-width: 300px;
    }
}
