/* Basic styling for the cloned page */
:root {
    --primary-color: #f39c12;
    --cta-green: #2ecc71;
    --bg-dark: #121212;
    --text-light: #f5f5f5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Urgency Header */
.urgency-header {
    background-color: #d32f2f;
    /* Red color for urgency */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.urgency-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.urgency-text {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-box {
    background: #000;
    color: #fff;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}

.timer-box span {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.timer-box small {
    font-size: 10px;
    margin-top: 2px;
}

.timer-separator {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 600px) {
    .urgency-text {
        font-size: 14px;
        text-align: center;
    }
}

/* Sections */
section {
    padding: 60px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: var(--primary-color);
}

.header-cta {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
section {
    padding: 60px 0;
}

.highlight-yellow {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--cta-green);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Typography */
.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        /* maintaining the likely old apparent scaling */
    }
}

.section-title {
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 40px;
}

.hero-main-image {
    max-width: 100%;
    width: 600px;
    /* Reduced width for desktop */
    height: auto;
    margin: 5px auto;
    display: block;
    border-radius: 12px;
    /* Optional: adjust if you don't want rounded corners */
}

@media (max-width: 768px) {
    .hero-main-image {
        width: 98%;
        /* Responsive sizing for mobile */
        max-width: 400px;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto 20px;
    text-align: left;
}

.hero-subtitle strong {
    color: #fff;
    font-weight: 600;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.hero-benefits li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    justify-content: flex-start;
    text-align: left;
}

.hero-benefits li i {
    color: var(--cta-green);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .hero-benefits {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-benefits li {
        width: auto;
    }
}

/* Centering everything below header */
section {
    padding: 60px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features Grid styling */
.features-grid-new {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.feature-card-new {
    background-color: #111;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s;
}

.feature-card-new.highlight {
    border: 1px solid #ffd700;
}

.feature-icon-circle {
    background-color: #ffd700;
    color: #000;
    font-size: 28px;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.feature-card-new h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 0;
}

.feature-card-new p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid-new {
        flex-direction: column;
        align-items: center;
    }

    .feature-card-new {
        width: 100%;
        max-width: 400px;
    }
}

/* O Que Vem Dentro Section Styling */
.inside-content {
    background-color: #000000;
    padding: 60px 0;
    border-top: 1px solid #2a2b2e;
    border-bottom: 1px solid #2a2b2e;
}

.inside-title {
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    color: #fafaf8;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.highlight-orange {
    color: #f39c12;
    /* Closer to the orange in the image */
}

.inside-title {
    color: #ffffff;
    /* Adjust general title color if needed */
}

.inside-subtitle {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-bottom: 50px;
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

.inside-card {
    background-color: #111111;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.inside-card:first-child {
    border: 1px solid #ffd700;
}

.inside-icon {
    background-color: #ffd700;
    color: #000;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.inside-card span {
    color: #ffd700;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .inside-grid {
        grid-template-columns: 1fr;
    }

    .inside-title {
        font-size: 40px;
    }
}

.hero-content,
.bonus-grid,
.pricing-grid,
.faq-container,
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.hero-highlights-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 90%;
    margin: 40px 0;
    max-width: 1000px;
}

.highlight-box-item {
    background-color: #111;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.highlight-box-item>i {
    background-color: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    font-size: 28px;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    margin-bottom: 25px;
}

.highlight-box-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-box-content strong {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box-content span {
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-highlights-box {
        flex-direction: column;
        align-items: center;
    }

    .highlight-box-item {
        width: 100%;
        max-width: 400px;
    }
}

.video-wrapper img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

ul {
    list-style-position: inside;
    padding: 0;
}

.faq-item {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #222;
    padding: 15px;
    border-radius: 8px;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
}

/* Add more basic styling as needed... */

/* Pricing Container styling */
.hero-price-container {
    margin: 40px auto 20px;
    width: 100%;
    max-width: 500px;
}

.price-strip {
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #888;
}

.price-main-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
}

.old-price {
    font-size: 24px;
    color: #666;
    text-decoration: line-through;
    font-weight: bold;
}

.current-price {
    display: flex;
    align-items: baseline;
    color: #ffd700;
    font-weight: 900;
    line-height: 1;
}

.current-price .currency {
    font-size: 24px;
    margin-right: 5px;
}

.current-price .amount {
    font-size: 64px;
}

.current-price .cents {
    font-size: 24px;
}

.price-tagline {
    font-size: 13px;
    color: #aaa;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-cta {
    background-color: #2ecc71;
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Bonus Section New */
.bonus-section {
    background-color: #0A0A0A;
    padding: 80px 0;
    border-top: 1px solid #2a2b2e;
}

.bonus-header-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    gap: 15px;
}

.bonus-pill {
    background-color: #2ECC71;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bonus-pill i {
    color: #ff4757;
}

.bonus-title-new {
    font-family: 'Bebas Neue', cursive;
    color: #ffffff;
    font-size: 56px;
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
}

.bonus-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
}

.bonus-card-new {
    background-color: #111111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bonus-icon-box {
    background-color: rgba(255, 140, 0, 0.1);
    color: #2ECC71;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bonus-card-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.bonus-number {
    color: #2ECC71;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .bonus-grid-new {
        grid-template-columns: 1fr;
    }

    .bonus-title-new {
        font-size: 40px;
    }
}

/* Pricing Section */
.pricing {
    background-color: #000;
    padding: 80px 0;
}

.pricing .section-title {
    color: #fff;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
}

.pricing-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 400px;
    position: relative;
    box-sizing: border-box;
}

.pricing-card.featured {
    border: 2px solid #ffd700;
}

.featured-tag {
    background-color: #ffd700;
    color: #000;
    font-weight: 900;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #ffd700;
    font-weight: 900;
    line-height: 1;
}

.price-main .currency {
    font-size: 20px;
    margin-right: 5px;
    color: #888;
}

.price-main .amount {
    font-size: 64px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.price-features>li {
    padding: 16px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.price-features>li:last-child {
    border-bottom: none;
}

.price-features>li>i {
    color: #ffd700;
    margin-top: 3px;
    font-size: 14px;
}

.price-features li.disabled {
    color: #555;
}

.price-features li.disabled i {
    color: #555;
}

.bonus-highlight-card {
    border: 2px dashed #2ecc71;
    border-radius: 12px;
    padding: 8px;
    margin: -20px 0 20px 0;
    background-color: rgba(46, 204, 113, 0.05);
}

.bonus-highlight-card h4 {
    color: #2ecc71;
    font-size: 14px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.bonus-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.bonus-highlight-card li {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-highlight-card li>i {
    color: #ffd700;
    font-size: 12px;
}

.pricing-card .cta-button {
    width: 100%;
    margin-bottom: 15px;
    font-size: 18px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #2ecc71;
    color: #fff;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 900;
}

.pricing-card .pix-info {
    font-size: 10px;
    color: #555;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
    }
}

/* Popup Overlay and Card Styling */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-card {
    background-color: #111;
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 8px 25px;
    max-width: 450px;
    width: 95%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    box-sizing: border-box;
    max-height: 100vh;
    overflow-y: auto;
}

.popup-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.popup-subtitle {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 20px;
}

.popup-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 12px;
}

.popup-old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popup-new-price {
    color: #2ecc71;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.popup-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 0 15px 0;
}

.popup-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-benefits li:last-child {
    border-bottom: none;
}

.popup-benefits li>i {
    color: #ffd700;
    font-size: 14px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-btn {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    width: 100%;
}

.popup-btn-accept {
    background-color: #2ecc71;
    color: white;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.4);
    border: none;
}

.popup-btn-decline {
    background: transparent;
    color: #888;
    font-weight: bold;
    text-transform: none;
    font-size: 14px;
    border: none;
    text-decoration: underline;
}

.popup-btn-decline:hover {
    color: #fff;
}

/* Testimonials New Styling */
.testimonials-section-new {
    background-color: #000;
    padding: 80px 0;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
    width: 95%;
}

.testimonial-card-new {
    background-color: #151515;
    border: 1px solid #2a2b2e;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
}

.stars-new {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-text-new {
    color: #eaeaea;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.testimonial-user-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-info span {
    color: #888;
    font-size: 13px;
}

@media (max-width: 900px) {
    .testimonials-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }
}