/* CSS Variables */
:root {
    --primary-color: #F97316;
    --primary-hover: #EA580C;
    --primary-gradient: linear-gradient(135deg, #FF6A00 0%, #EE0979 100%);
    --secondary-color: #0EA5E9;
    --secondary-hover: #0284C7;
    --bg-color: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #475569;
    --white: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

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

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

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-sm {
    max-width: 1000px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-40 { margin-top: 40px; }
.bg-light { background-color: #F1F5F9; }
.bg-light-alt { background-color: #E2E8F0; }
.bg-orange { background: var(--primary-gradient); }
.color-white { color: var(--white); }
.color-white h2, .color-white h3 { color: var(--white); }
.text-orange { color: var(--primary-color); }
.text-green { color: #10B981; }
.text-gray { color: #94A3B8; }
.text-red { color: #EF4444; }
.full-width { width: 100%; }
.mt-auto { margin-top: auto; }

/* Top Announcement Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem; /* Ajustado um pouco para legibilidade em uppercase */
    font-weight: 700;   /* Aumentado o peso levemente para igualar à imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase; /* Força maiúsculas */
}
.top-bar .icon-small {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(241, 245, 249, 1) 100%), 
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1600 800"%3E%3Cpath fill="%23fdf2f8" d="M0 0h1600v800H0z"/%3E%3Cpath fill="%23fce7f3" d="M300 100 A200 200 0 1 1 300 500 A200 200 0 1 1 300 100 ZM1200 400 A250 250 0 1 1 1200 900 A250 250 0 1 1 1200 400 Z" opacity="0.4"/%3E%3C/svg%3E') center/cover no-repeat;
    text-align: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FEF3C7;
    color: #D97706;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: slideDown 0.5s ease-out forwards;
}
.badge i { width: 16px; height: 16px; }
.badge-white { background: rgba(255,255,255,0.2); color: white; backdrop-filter: blur(5px); }
.badge-bonus {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 8px;
}
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    animation: fadeIn 0.8s ease-out forwards;
}
.highlight {
    color: var(--primary-color);
}
.sub-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeIn 1s ease-out forwards;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 420px; /* Otimizado para telas mobile */
    aspect-ratio: 9 / 16;
    margin: 0 auto 40px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 255, 255, 0.5);
    background: #000;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Wistia Unmute Overlay */
.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50; /* Above the video */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.unmute-icon {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5); /* Primary orange glow */
    transition: var(--transition);
}
.unmute-icon i {
    width: 34px;
    height: 34px;
    position: relative;
    left: 2px; /* Visual center adjustment */
}
.unmute-overlay:hover .unmute-icon {
    transform: scale(1.1);
    background: rgba(249, 115, 22, 0.8);
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-body);
}
.cta-button.primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.5);
}
.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.6);
}
.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}
.cta-button.secondary:hover {
    background: #FFF7ED;
    transform: translateY(-3px);
}
.cta-button.outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid #CBD5E1;
}
.cta-button.outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.cta-button.large {
    font-size: 1.25rem;
    padding: 20px 40px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-item i { width: 18px; height: 18px; color: #10B981; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }

/* Cards & Elements */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.3;
}
.section-title i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -6px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.icon-title { width: 36px; height: 36px; color: var(--primary-color); }

/* Benefits Section */
.benefit-card { text-align: center; }
.icon-wrapper {
    width: 64px;
    height: 64px;
    background: #FFF7ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}
.icon-large { width: 32px; height: 32px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); }

/* Features Section */
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.icon-wrapper-small {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.feature-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); }

/* Bonus Section */
.bonus-title-italics {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    color: #111827; /* Escuro bem forte */
    margin: 0 0 15px; /* Menos margem no topo */
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.bonus-subtitle-italics {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    font-style: italic;
    color: #111827;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 8px; /* Espaço uniforme e menor entre os itens */
}
.cross-price-red {
    color: #EF4444; 
    text-decoration: line-through;
    text-decoration-thickness: 3px; /* Linha ligeiramente mais fina pra combinar com a nova fonte */
}
.orange-divider {
    width: 80px; /* Linha mais curta e elegante */
    height: 5px;
    background-color: var(--primary-color);
    margin: 0 auto 40px;
    border-radius: 5px;
}
.bonus-card {
    text-align: center;
    position: relative;
    padding: 0; /* Zera padding natural do cartao */
    background: white;
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    overflow: hidden; /* Força imagens na borda a ficarem arredondadas */
}
.bonus-img {
    width: 100%;
    height: 180px; 
    object-fit: cover;
    margin: 0;
    transition: var(--transition);
}
.bonus-card:hover .bonus-img { transform: scale(1.05); }

.bonus-content {
    padding: 24px 20px;
}
.bonus-content h3 {
    font-size: 1.15rem;
    color: #0F172A;
    margin-bottom: 15px;
    font-weight: 800;
}
.bonus-price-crossed {
    color: #EF4444; 
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    margin-bottom: 15px;
    display: inline-block;
}
.bonus-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Testimonials Carousel */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 0 50px;
}
.carousel-track-container {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}
.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
}
.testimonial-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    color: var(--text-main);
    transition: var(--transition);
    z-index: 10;
}
.carousel-btn:hover { background: var(--primary-color); color: white; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Pricing Section */
.relative-section { position: relative; overflow: hidden; }
/* Background blobs for premium feel */
.shape-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.shape-blob-1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.shape-blob-2 { width: 500px; height: 500px; bottom: -100px; right: -100px; background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(255,255,255,0) 70%); }
.z-index-1 { position: relative; z-index: 1; }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Premium is slightly wider/prominent */
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto 0;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 40px 30px;
    background: white;
}
.premium-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.2);
    transform: scale(1.02);
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.pricing-header { text-align: center; border-bottom: 1px solid #E2E8F0; padding-bottom: 24px; margin-bottom: 24px; }
.pricing-header h3 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 10px; }
.price { color: var(--text-main); margin-bottom: 10px; }
.old-price { display: block; font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.currency { font-size: 1.5rem; font-weight: 700; vertical-align: top; }
.amount { font-size: 4rem; font-weight: 800; line-height: 1; }
.cents { font-size: 1.5rem; font-weight: 700; vertical-align: top; }

/* Highlighted Pricing Style */
.price-highlight .old-price {
    font-size: 1.3rem;
    color: #EF4444;
    font-style: italic;
    font-weight: 800;
    text-decoration-thickness: 3px;
    margin-bottom: 2px;
}
.price-highlight .currency,
.price-highlight .amount,
.price-highlight .cents {
    color: #22C55E;
    font-style: italic;
}

.pricing-features { list-style: none; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 0.95rem; }
.pricing-features .disabled { color: var(--text-gray); }
.pricing-features i { flex-shrink: 0; width: 20px; height: 20px; }
.social-proof-text { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Author Section */
.author-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}
.author-img-wrapper {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
}
.author-img { width: 100%; height: 100%; object-fit: cover; }
.author-name { 
    font-size: clamp(3rem, 6vw, 4.5rem); 
    color: #111827; 
    margin-bottom: 5px; 
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}
.author-role { 
    font-size: clamp(1.4rem, 4vw, 1.8rem); 
    font-weight: 800; 
    color: #22C55E; 
    font-style: italic; 
    margin-bottom: 25px; 
}

/* Guarantee */
.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 2px dashed #CBD5E1;
    position: relative;
    padding-top: 50px;
}
.guarantee-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    border: 5px solid white;
}
.guarantee-icon i { width: 40px; height: 40px; }

/* Footer */
.footer { background: #0F172A; color: #94A3B8; padding: 60px 0 30px; font-size: 0.9rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; color: white; margin-bottom: 10px; }
.footer-links { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid #1E293B; }

/* Animations */
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes pulse-fast { 0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.pulse { animation: pulse 2s infinite; }
.pulse-fast { animation: pulse-fast 2s infinite; }
.bounce-on-hover:hover { animation: bounce 1s ease-in-out infinite; }

/* Scroll reveal utility classes */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; gap: 40px; }
    .premium-card { transform: scale(1); }
    .author-layout { flex-direction: column; text-align: center; }
    .author-content h2 { justify-content: center; }
}
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .main-title { font-size: 2.2rem; }
    .hero { padding: 40px 0; }
}
@media (max-width: 480px) {
    .top-bar { font-size: 0.8rem; }
    .cta-button.large { width: 100%; font-size: 1.1rem; padding: 16px 20px; }
    .pricing-card { padding: 30px 20px; }
    .amount { font-size: 3.5rem; }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    max-width: 450px;
    width: 90%;
    padding: 40px 30px;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: var(--border-radius-md);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: #E2E8F0;
    color: var(--text-main);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.modal-icon i {
    width: 30px;
    height: 30px;
}

.modal-title {
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-offer {
    background: #FFF7ED;
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #FFEDD5;
}

.modal-offer .old-price {
    font-size: 1.1rem;
    color: #EF4444;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.decline-btn {
    font-size: 0.9rem !important;
    padding: 12px !important;
    border-color: #E2E8F0 !important;
    color: var(--text-muted) !important;
}

.decline-btn:hover {
    background: #F8FAFC !important;
    color: var(--text-main) !important;
    border-color: #CBD5E1 !important;
}
