:root {
    --bg-color: #070202;
    --text-main: #ffffff;
    --text-muted: #a09e9e;
    --accent-red: #d31d1d;
    --accent-orange: #ff5e00;
    --accent-gradient: linear-gradient(90deg, #ff2a00 0%, #ff7300 100%);
    --card-bg: #110505;
    --card-border: #3d1010;
    --glow-color: rgba(255, 60, 0, 0.4);
}

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

.mobile-break {
    display: none;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Glow Effect */
.main-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 800px;
    background: radial-gradient(ellipse at top, rgba(211, 29, 29, 0.25) 0%, rgba(255, 94, 0, 0.15) 30%, rgba(7, 2, 2, 0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

h1, h2, h3, .logo-text, .pricing-title {
    font-family: 'Montserrat', sans-serif;
}

/* Top Banner */
.top-banner {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 60, 0, 0.4));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero .highlight {
    color: #ff3c00;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-sub strong {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Video Placeholder */
.video-placeholder-container {
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(180deg, #ff5e00, #d31d1d);
    box-shadow: 0 0 30px var(--glow-color);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 60, 0, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 60, 0, 0.7);
}

.pulse-btn {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 60, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 60, 0, 0); }
}

.security-badges {
    margin-top: 15px;
}

.security-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.security-text i {
    color: #4caf50; /* Green for secure icons */
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    color: #666;
    margin-top: 5px;
}
.payment-icons i:hover {
    color: #fff;
    transition: color 0.3s ease;
}

/* Features */
.features {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.features-sub {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass-card {
    background: rgba(17, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.feature-item:hover {
    transform: translateX(5px) scale(1.01);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 32px 0 rgba(255, 60, 0, 0.15);
}

.feature-icon {
    background: rgba(211, 29, 29, 0.1);
    color: var(--accent-orange);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.testimonials h2 {
    font-size: 1.8rem;
    color: #c75656;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    max-width: 100vw; /* Take full width */
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    display: flex;
    gap: 20px;
    padding-right: 20px; /* Gap between the two sets */
}

.carousel-item {
    width: 280px;
    border-radius: 15px;
    border: 1px solid #1f2833;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.02);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    text-align: center;
}

.pricing-subtitle {
    color: var(--accent-red);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 40px 30px;
    width: 380px;
    text-align: left;
    position: relative;
    transition: transform 0.3s;
}

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

.basic-card {
    border: 1px solid #333;
}

.vip-card {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 40px rgba(211, 29, 29, 0.25);
    background: linear-gradient(180deg, rgba(22, 6, 6, 0.9), rgba(7, 2, 2, 0.9));
    backdrop-filter: blur(10px);
    transform: scale(1.05);
    z-index: 2;
}

.vip-card:hover {
    transform: scale(1.08) translateY(-5px);
}

.tag-mais-vendido {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 2px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

.benefits li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.benefits li i {
    color: #4caf50;
    margin-right: 10px;
    margin-top: 4px;
}

.vip-card .benefits li i {
    color: var(--accent-orange);
}

.card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.basic-btn {
    background: transparent;
    color: white;
    border: 1px solid #555;
}
.basic-btn:hover {
    background: #222;
}

.vip-btn {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
}
.vip-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 60, 0, 0.5);
    transform: scale(1.02);
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.faq-subtitle {
    color: var(--accent-red);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}
.faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #222;
    background-color: #050101;
}

.footer-logo {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-logo .logo-img {
    max-width: 180px;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    .top-banner {
        padding: 12px 10px;
        line-height: 1.4;
        font-size: 0.78rem; /* Smaller to prevent wrapping the first line */
        letter-spacing: -0.2px;
    }
    .logo-img {
        max-width: 130px;
    }
    .hero {
        padding: 10px 15px 40px;
    }
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 25px;
    }
    .hero-sub {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 400px;
    }
}
