/* Style System for Kit Comunicação e Rotina Visual */

:root {
    --primary: #2EB860;
    --primary-dark: #24914c;
    --bg-white: #FFFFFF;
    --bg-hero: #F1F3FD; /* Light Blue */
    --bg-alt: #F7F5FA;  /* Lilac/Grey */
    --bg-bonus: #FDF7ED; /* Beige/Yellow */
    --text-main: #1A1A1A;
    --text-sec: #4B5563;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {

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

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

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

/* Alert Bar */
.top-bar {
    background: linear-gradient(90deg, #6366F1 0%, #8B5CF6 100%);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 80px 0;
}

/* VSL Section (New Premium Mockup) */
.vsl-section {
    background-color: var(--white);
    padding: 60px 0;
}

.vsl-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.vsl-player-mockup {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 6px solid #F8FAFC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.vsl-player-mockup:hover {
    transform: scale(1.02);
}

/* Pulsing Play Button */
.play-button-pulse {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(46, 184, 96, 0.7);
    animation: pulse 2s infinite;
}

.play-button-pulse::after {
    content: "▶";
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 184, 96, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px rgba(46, 184, 96, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 184, 96, 0);
    }
}

/* Fake Controls Overlay */
.vsl-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vsl-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
}

.vsl-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 65%; /* Random progress */
    background: var(--primary);
    border-radius: 2px;
}

.vsl-meta {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.vsl-live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vsl-live-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .vsl-wrapper {
        max-width: 320px;
    }
    .play-button-pulse {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Hero Section */
.hero {
    background-color: var(--bg-hero);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-white);
    clip-path: ellipse(50% 50% at 50% 100%);
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(46, 184, 96, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 32px;
}

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

/* Info Sections (New) */
.info-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.info-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--text-main);
    margin-bottom: 40px;
    line-height: 1.2;
}

.info-title .blue-hl {
    color: #4338CA;
}

.info-card-white {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    border: 1px solid #F1F5F9;
    margin-bottom: 60px;
    text-align: left; /* Keep text inside boxes aligned left by default */
}

.info-text {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 24px;
}

.info-text strong {
    color: var(--text-main);
}

.info-list-pink {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.info-list-pink li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4B5563;
}

.info-list-pink li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #E11D48;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.info-highlight-box {
    background-color: #F1F5F9;
    padding: 24px 30px;
    border-radius: 12px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    border: 1px solid #E2E8F0;
}

.info-highlight-box strong {
    color: var(--text-main);
}

.info-subtitle-centered {
    text-align: center;
    font-size: 1.1rem;
    color: #64748B;
    margin: -20px 0 30px; /* Reduced margin since it follows a title */
}

.info-list-green {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-list-green li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
}

.info-list-green li .check-circle {
    width: 28px;
    height: 28px;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.info-footer-italic {
    text-align: center;
    font-style: italic;
    color: #94A3B8;
    font-size: 0.95rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .info-card-white {
        padding: 24px 16px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .info-highlight-box {
        padding: 16px 12px;
        font-size: 0.95rem;
    }

    .info-title {
        font-size: 1.6rem;
    }
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.checkmark {
    color: var(--primary);
    background: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(46, 184, 96, 0.39);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 184, 96, 0.5);
    background-color: var(--primary-dark);
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Cards & Grids */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Bonus Section */
.bonus-section {
    background-color: var(--bg-bonus);
}

.bonus-title {
    color: #1E3A8A;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 50px;
}

.testimonials {
    background-color: var(--bg-alt);
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
}

.guarantee img {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.guarantee img.animate {
    opacity: 1;
    transform: translateY(0);
}

.important-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding: 50px 0;
}

.important-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.important-title {
    color: #EF4444;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.important-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    line-height: 1.8;
}

.important-right {
    background: #0F0F1A;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #EF4444;
}

.important-problems-title {
    color: #EF4444;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem-item {
    color: #F87171;
    font-size: 1.1rem;
    font-weight: 500;
}

.important-btn {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .important-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
}

.bonus-number {
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    background: #8B5CF6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.bonus-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #8B5CF6; /* Purple */
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.bonus-image-container {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    overflow: hidden;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 30px;
    flex-grow: 1;
}

.bonus-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bonus-badge {
    display: inline-block;
    background: #E0E7FF;
    color: #4338CA;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Pricing Section Improvements */
.pricing {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1.5px solid #E2E8F0;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2.5px solid #4F46E5; /* Blue/Indigo border */
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

/* Premium Badge */
.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.price-card h3 {
    font-size: 1.8rem;
    color: #1E293B;
    margin-bottom: 8px;
}

.price-box {
    margin: 20px 0;
}

.price-main {
    font-size: 4rem;
    font-weight: 800;
    color: #1E293B;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
}

.cents {
    font-size: 1.5rem;
}

.price-subtitle {
    display: block;
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: -5px;
}

/* Feature List */
.benefit-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #2EB860;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Bonus Inner Box */
.bonus-inner-box {
    background-color: #FDF9F0;
    border: 1px dashed #FDE047;
    border-radius: 20px;
    padding: 20px;
    margin: 10px 0 30px;
    text-align: left;
}

.bonus-box-title {
    color: #EF4444;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.bonus-items-list {
    list-style: none;
    padding: 0;
}

.bonus-items-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
}

.bonus-items-list li:last-child {
    margin-bottom: 0;
}

/* Buy Button Animation */
.pricing-btn {
    width: 100%;
    padding: 20px;
    background: #2EB860;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(46, 184, 96, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.pricing-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(46, 184, 96, 0.3);
    background: #27a153;
}

/* Footer Icons */
.card-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 500;
}

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

.faq-item {
    border-bottom: 1px solid #EEE;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-sec);
    display: none;
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        text-align: center;
    }
    
    .hero-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .pricing-grid {
        gap: 24px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

/* Slider de Reviews */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
}

.slider-slide img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-left {
    left: 10px;
}

.slider-btn-right {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
