:root {
    --primary-color: #D2691E;
    /* Chocolate/Caramel */
    --secondary-color: #8B4513;
    /* Darker Brown */
    --accent-color: #FFD700;
    /* Gold */
    --bg-color: #FFF8E7;
    /* Cream/Light Pudding */
    --text-color: #2b2b2b;
    --green-cta: #00d870;
    /* NEW VIBRANT GREEN #00d870 */
    --green-cta-dark: #00b860;
    --orange-badge: #ff7f00;
    /* NEW ORANGE from Reference */
    --white: #ffffff;
    --gray-light: #f0f2f5;
    --red-alert: #ff4757;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    padding-top: 40px;
    /* Space for sticky bar */
}

/* Sticky Top Bar */
#sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--red-alert);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #4A2C2A;
    /* Dark Brown */
    margin-bottom: 20px;
}

a {
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #fff 0%, #FFF8E7 100%);
    padding: 40px 0 40px;
}

.badge-top {
    background-color: #B22222;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    text-transform: uppercase;
    color: #000;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero .subhead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* --- Estilos do Vídeo da Wistia --- */
.video-container {
    max-width: 350px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Este bloco SEMPRE deve vir depois da regra acima */
@media (max-width: 480px) {
    .video-container {
        max-width: 95%;
        /* Ajuste para ocupar quase toda a largura no celular */
    }
}

.hero-img-container {
    margin: 30px auto;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.hero-img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    background-color: var(--green-cta);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 5px 0 var(--green-cta-dark), 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: all 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--green-cta-dark);
    background-color: #00cc99;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Features */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: #FFF8E7;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Product Info & Champions */
.product-info {
    padding: 80px 0;
    background-color: #fcf6ee;
}

.content-box {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    color: var(--green-cta);
    margin-right: 15px;
    font-size: 1.3rem;
}

/* Champions Section */
.champions {
    padding: 60px 0;
    background: white;
}

.champion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.champion-card {
    background: #FFF8E7;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #eecfa1;
    text-align: left;
}

.champion-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.price-line {
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 5px;
}

.desc-line {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.premium-list-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.premium-list-box h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.premium-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    text-align: left;
}

.premium-list li {
    font-size: 0.95rem;
}

.premium-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Bonuses */
.bonuses {
    padding: 60px 0;
    background-color: #333;
    color: white;
}

.bonus-box h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    gap: 15px;
    /* Added gap for spacing */
}

.bonus-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Testimonials - RESTORED FACEBOOK STYLE */
.testimonials {
    background-color: #fff;
    padding: 60px 0;
}

.comments-container {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

.fb-comment {
    display: flex;
    margin-bottom: 8px;
    gap: 10px;
}

.comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-bubble {
    background-color: #f0f2f5;
    padding: 10px 15px;
    border-radius: 18px;
    display: inline-block;
    min-width: 200px;
}

.comment-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #050505;
    margin-bottom: 3px;
}

.comment-text {
    font-size: 0.95rem;
    color: #050505;
    line-height: 1.3;
}

.comment-actions {
    margin-top: 5px;
    margin-left: 10px;
    font-size: 0.8rem;
    color: #65676b;
}

.comment-actions span {
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
}

.comment-actions .time {
    font-weight: 400;
}

.comment-stats {
    float: right;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 2px 5px;
    border-radius: 10px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    transform: translateY(-25px);
    margin-right: 5px;
    color: #65676b;
}

.like-icon {
    color: #fff;
    background: #1877f2;
    border-radius: 50%;
    padding: 3px;
    font-size: 0.6rem;
    margin-right: 3px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.replies-count {
    margin-left: 60px;
    margin-top: -25px;
    margin-bottom: 35px;
    font-size: 0.85rem;
    color: #65676b;
    font-weight: 600;
    cursor: pointer;
}

.replies-count i {
    transform: rotate(180deg);
    margin-right: 5px;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background-color: #fff;
}

.guarantee-box {
    border: 3px solid var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    background: #FFF8E7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Pricing - REBUILT TO MATCH REFERENCE EXACTLY (COMPACT VERSION) */
.pricing {
    background-color: #f0fdf4;
    /* Very light green bg like image */
    padding: 60px 0;
    /* Reduced padding */
}

.pricing h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    /* FORCE ROW */
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .pricing-grid {
        flex-direction: column;
        /* Column only on small screens */
        align-items: center;
    }
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    /* REDUCED PADDING for Compact Look */
    width: 100%;
    max-width: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

/* Basic Card */
.basic-card {
    border: 1px solid #ddd;
}

/* Premium Card (Green Border) */
.premium-card {
    border: 2px solid #00d870;
    /* Vibrant Green Border */
    box-shadow: 0 10px 30px rgba(0, 216, 112, 0.15);
}

.badge-best {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-badge);
    color: white;
    padding: 8px 20px;
    /* Reduced padding */
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 15px;
    /* Reduced Margin */
}

.card-header h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 3rem;
    /* Slightly smaller */
    font-weight: 900;
    color: var(--green-cta);
    line-height: 1;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-top: 5px;
}

.card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    /* Reduced Margin */
    flex: 1;
}

.card-features li {
    padding-bottom: 8px;
    /* Reduced padding */
    margin-bottom: 8px;
    /* Reduced margin */
    font-size: 0.9rem;
    border-bottom: none;
    display: flex;
    align-items: flex-start;
    color: #444;
}

.card-features li i {
    color: var(--green-cta);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 1rem;
}

.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--green-cta) !important;
    color: white;
    padding: 15px 20px;
    /* Reduced padding */
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.2s;
    width: 100%;
    box-shadow: 0 4px 0 var(--green-cta-dark);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.btn-price:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--green-cta-dark);
    background-color: #00bf63 !important;
}

.secure-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    color: #777;
}

.secure-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* About Julia */
.about {
    padding: 60px 0;
    /* Reduced padding */
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 40px auto 0;
    gap: 30px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        text-align: left;
    }
}

.about-img img {
    width: 250px;
    height: 250px;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.btn-text {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #aaa;
    padding: 40px 0;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalAnim 0.3s ease-out;
}

@keyframes modalAnim {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    background: #fff;
    padding: 20px 20px 0;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-header h3 {
    margin: 0;
    color: var(--orange-badge);
    font-size: 1.4rem;
    line-height: 1.3;
}

.modal-body {
    padding: 20px;
    text-align: center;
}

.modal-headline {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-box {
    background: #f0fdf4;
    border: 2px solid var(--green-cta);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.modal-box h4 {
    color: #004d40;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 800;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.modal-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.modal-list li i {
    color: var(--green-cta);
    margin-right: 10px;
    margin-top: 3px;
}

.modal-price-box {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.old-price {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.today-text {
    font-weight: 700;
    color: #333;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green-cta);
    line-height: 1;
    margin: 5px 0;
}

.economy-tag {
    background: var(--orange-badge);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.modal-btn-primary {
    display: block;
    background-color: var(--green-cta);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0 4px 0 var(--green-cta-dark);
    transition: 0.2s;
    text-decoration: none;
}

.modal-btn-primary:hover {
    background-color: #00bf63;
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--green-cta-dark);
}

.modal-link-secondary {
    color: #777;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    display: block;
    padding: 5px;
}

.modal-link-secondary:hover {
    color: #333;
}

/* Responsiveness tweaks */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .modal-content {
        width: 95%;
    }

    .modal-price {
        font-size: 2rem;
    }
}