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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.header-logo img {
    border-radius: 50%;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-link {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.header-link:hover {
    opacity: 1;
}

.header-link svg {
    flex-shrink: 0;
}

.header-cta {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu .mobile-cta {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    font-weight: 600;
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 998;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    max-width: 320px;
}

.social-proof-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.9rem;
    color: #333;
}

.toast-text strong {
    color: #27ae60;
}

.toast-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 100px 20px 60px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.unmute-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(233, 69, 96, 0.95);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    transition: all 0.3s ease;
    animation: pulse-unmute 2s infinite;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.5);
}

.unmute-button:hover {
    background: rgba(233, 69, 96, 1);
    transform: translateX(-50%) scale(1.05);
}

.unmute-button.hidden {
    display: none;
}

@keyframes pulse-unmute {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(233, 69, 96, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(233, 69, 96, 0.8);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.payment-badges {
    max-width: 400px;
    margin: 30px auto 0;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 50px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #e94560;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.about-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.about-content .divider {
    width: 80px;
    height: 4px;
    background: #e94560;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #1a1a2e;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Secret Section */
.secret-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.secret-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.secret-content h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.secret-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.highlight-box h2 {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-box .location {
    color: #e94560;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Media Logos */
.media-section {
    padding: 60px 20px;
    background: #fff;
}

.media-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.media-logos img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* For Who Section */
.for-who {
    padding: 80px 20px;
    background: #f8f9fa;
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.for-who-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.for-who-card.positive {
    border-top: 4px solid #27ae60;
}

.for-who-card.negative {
    border-top: 4px solid #e74c3c;
}

.for-who-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.for-who-card ul {
    list-style: none;
}

.for-who-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.for-who-card.positive ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.for-who-card.negative ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Course Content */
.course-content {
    padding: 80px 20px;
    background: #fff;
}

.phase {
    max-width: 1100px;
    margin: 0 auto 60px;
}

.phase-header {
    text-align: center;
    margin-bottom: 40px;
}

.phase-header h3 {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
}

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

.module-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    background: #1a1a2e;
    color: #fff;
}

.module-card i {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

.module-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pricing-intro h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.pricing-intro p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.pricing-card {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    max-width: 450px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    list-style: none;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-features del {
    opacity: 0.7;
}

.old-price {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.old-price del {
    font-size: 1.5rem;
}

.new-price-label {
    font-size: 1rem;
    margin-bottom: 5px;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.pricing-card .cta-button {
    background: #fff;
    color: #e94560;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card .cta-button:hover {
    background: #f8f9fa;
}

.pricing-warning {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Value Props */
.value-props {
    padding: 60px 20px;
    background: #f8f9fa;
}

.value-props ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.value-props li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #333;
    border-bottom: 1px solid #eee;
}

.value-props li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.value-props .highlight-text {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Course Preview */
.course-preview {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.preview-video {
    max-width: 700px;
    margin: 0 auto;
}

/* Bonuses */
.bonuses {
    padding: 80px 20px;
    background: #f8f9fa;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bonus-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.bonus-card h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Guarantee */
.guarantee {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4), inset 0 -3px 0 rgba(0,0,0,0.1);
    position: relative;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
}

.guarantee-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
}

.guarantee-days {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.guarantee-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: -5px;
}

.guarantee-subtext {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 2px;
    opacity: 0.9;
}

.guarantee-content img {
    width: 150px;
    margin-bottom: 30px;
}

.guarantee-content h2 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.guarantee-content p {
    color: #555;
    margin-bottom: 15px;
}

/* FAQ */
.faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a1a2e;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #e94560;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact p {
    color: #666;
    margin-bottom: 20px;
}

.chat-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.chat-button svg {
    width: 24px;
    height: 24px;
}

/* Chatbot Widget */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 350px;
    min-height: 250px;
    background: #f8f9fa;
}

.bot-message, .user-message {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    max-width: 85%;
    line-height: 1.5;
    font-size: 0.9rem;
}

.bot-message {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bot-message a {
    color: #e94560;
    text-decoration: underline;
}

.user-message {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-replies button {
    background: #fff;
    border: 1px solid #e94560;
    color: #e94560;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-replies button:hover {
    background: #e94560;
    color: #fff;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input input:focus {
    border-color: #e94560;
}

.chatbot-input button {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

/* Floating Chat Button */
.chat-toggle-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

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

.chat-toggle-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px !important;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Book Section */
.book-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.book-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.book-image {
    text-align: center;
}

.book-image img {
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-rating {
    margin-top: 15px;
}

.book-rating .stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.book-rating .rating-text {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.book-info h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.book-author {
    color: #e94560;
    font-weight: 600;
    margin-bottom: 20px;
}

.book-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.book-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.book-details span {
    color: #666;
    font-size: 0.9rem;
}

.book-prices {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.book-price-item {
    text-align: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.book-price-item .price-label {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.book-price-item .price-value {
    display: block;
    color: #e94560;
    font-size: 1.4rem;
    font-weight: 700;
}

.book-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.book-cta:hover {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer .disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer .copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Fixed Header Mobile */
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-logo span {
        font-size: 0.95rem;
    }

    .social-proof-toast {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 80px;
    }

    /* General */
    body {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Hero */
    .hero {
        padding: 80px 15px 30px;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 80px !important;
        height: 80px !important;
    }

    .video-container {
        margin: 20px 0;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }

    .payment-badges {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* About */
    .about {
        padding: 40px 15px;
    }

    .about-grid,
    .secret-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image {
        order: -1;
        text-align: center;
    }

    .about-image img {
        max-width: 250px;
        width: 100%;
    }

    .about-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    /* Secret Section */
    .secret-section {
        padding: 40px 15px;
    }

    .secret-content p {
        font-size: 0.95rem;
    }

    .secret-image img {
        max-width: 100%;
    }

    /* Highlight Box */
    .highlight-box {
        padding: 30px 15px;
    }

    .highlight-box h2 {
        font-size: 1.2rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 15px;
    }

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

    .testimonial-item img {
        max-width: 100%;
    }

    /* Benefits */
    .benefits {
        padding: 40px 15px;
    }

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

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    /* Media Logos */
    .media-section {
        padding: 40px 15px;
    }

    .media-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

    .media-logos img {
        max-width: 80px;
        height: auto;
    }

    /* For Who */
    .for-who {
        padding: 40px 15px;
    }

    .for-who-grid {
        gap: 20px;
    }

    .for-who-card {
        padding: 20px;
    }

    /* Curriculum */
    .curriculum {
        padding: 40px 15px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .module-card {
        padding: 15px;
    }

    .module-card h4 {
        font-size: 1rem;
    }

    .phase-header h3 {
        font-size: 1.3rem;
    }

    /* Pricing */
    .pricing {
        padding: 40px 15px;
    }

    .pricing-intro {
        padding: 0 10px;
    }

    .pricing-intro h2 {
        font-size: 1.4rem;
    }

    .pricing-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
    }

    .new-price {
        font-size: 2.2rem;
    }

    .price-note {
        font-size: 1rem;
    }

    /* Value Props */
    .value-props {
        padding: 40px 15px;
    }

    .value-props ul {
        padding-left: 20px;
    }

    .value-props li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .highlight-text p {
        font-size: 1rem;
    }

    /* Course Preview */
    .course-preview {
        padding: 40px 15px;
    }

    /* Bonuses */
    .bonuses {
        padding: 40px 15px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-card img {
        max-width: 80px;
    }

    .bonus-card h4 {
        font-size: 1.1rem;
    }

    /* Guarantee */
    .guarantee {
        padding: 40px 15px;
    }

    .guarantee-content {
        padding: 0 10px;
    }

    .guarantee-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .guarantee-badge::before {
        width: 110px;
        height: 110px;
    }

    .guarantee-days {
        font-size: 2.8rem;
    }

    .guarantee-text {
        font-size: 1rem;
    }

    .guarantee-subtext {
        font-size: 0.6rem;
    }

    .guarantee-content img {
        width: 100px !important;
        height: 100px !important;
    }

    .guarantee-content h2 {
        font-size: 1.4rem;
    }

    .guarantee-content p {
        font-size: 0.9rem;
    }

    /* Book Section */
    .book-section {
        padding: 40px 15px;
    }

    .book-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .book-image img {
        max-width: 180px;
    }

    .book-info h3 {
        font-size: 1.4rem;
    }

    .book-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .book-details {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .book-prices {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .book-price-item {
        width: 100%;
        max-width: 180px;
    }

    /* FAQ */
    .faq {
        padding: 40px 15px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 15px;
    }

    /* Footer */
    .footer {
        padding: 30px 15px;
    }

    .footer .disclaimer {
        font-size: 0.75rem;
    }

    /* Chatbot */
    .chatbot-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 80px;
        max-height: 70vh;
    }

    .chatbot-header h3 {
        font-size: 1rem;
    }

    .chatbot-messages {
        max-height: 45vh;
    }

    .quick-replies {
        flex-wrap: wrap;
    }

    .quick-replies button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .chatbot-input input {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .chatbot-input button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .chat-toggle-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .chat-toggle-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.15rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 14px 20px;
    }

    .new-price {
        font-size: 2rem;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .book-info h3 {
        font-size: 1.2rem;
    }

    .guarantee-badge {
        width: 100px;
        height: 100px;
    }

    .guarantee-badge::before {
        width: 90px;
        height: 90px;
        border-width: 2px;
    }

    .guarantee-days {
        font-size: 2.2rem;
    }

    .guarantee-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .guarantee-subtext {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    .guarantee-content h2 {
        font-size: 1.2rem;
    }

    .chatbot-widget {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
    }
}

/* Social Proof Toast (fake notifications) - removido por ser spam */
