/* ========================================
   MANUAL DO PILOTO 2.0 - F1 STYLE
   Cores: Preto, Vermelho, Prata
   ======================================== */

/* Variáveis Globais */
:root {
    /* Cores Principais */
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-dark: #000000;
    --red: #ff0000;
    --red-dark: #cc0000;
    --red-light: #ff3333;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #999999;
    --white: #ffffff;

    /* Tipografia */
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ======================================
   HEADER F1 STYLE
   ====================================== */
.header-f1 {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--red);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-f1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-mp {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-version {
    background: var(--silver);
    color: var(--black);
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 3px;
}

.nav-f1 {
    display: flex;
    gap: 2rem;
}

.nav-link-f1 {
    color: var(--silver);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link-f1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-link-f1:hover,
.nav-link-f1.active {
    color: var(--white);
}

.nav-link-f1:hover::after,
.nav-link-f1.active::after {
    width: 100%;
}

.cta-header {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    transition: var(--transition);
}

.cta-header:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--red);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--red);
}

/* ======================================
   HERO SECTION F1
   ====================================== */
.hero-f1 {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 0, 0, 0.03) 35px,
            rgba(255, 0, 0, 0.03) 70px);
    z-index: 1;
}

.speed-lines-bg {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(255, 0, 0, 0.1) 50%,
        transparent 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-f1 {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--red);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

.hero-title-f1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    color: var(--silver);
    font-size: 0.4em;
    letter-spacing: 3px;
}

.title-line-2 {
    display: block;
    color: var(--red);
    font-size: 1em;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 var(--black-dark);
}

.title-line-3 {
    display: block;
    color: var(--white);
    font-size: 0.8em;
    letter-spacing: 2px;
}

.hero-subtitle-f1 {
    font-size: 1.1rem;
    color: var(--silver-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats-f1 {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.stat-f1 {
    display: flex;
    flex-direction: column;
}

.stat-number-f1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-label-f1 {
    font-size: 0.9rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background: rgba(192, 192, 192, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-f1,
.btn-secondary-f1 {
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-f1 {
    background: var(--red);
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.btn-primary-f1:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

.btn-secondary-f1 {
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
}

.btn-secondary-f1:hover {
    background: var(--silver);
    color: var(--black);
}

/* Hero Visual */
.hero-visual-f1 {
    position: relative;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.car-showcase {
    position: relative;
    width: 100%;
    height: 400px;
}

.car-main-f1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--silver) 0%,
        var(--red) 50%,
        var(--black) 100%);
    clip-path: polygon(
        15% 0%,
        100% 0%,
        85% 100%,
        0% 100%
    );
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.car-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(192, 192, 192, 0.1) 0%,
        transparent 100%);
    clip-path: polygon(
        15% 0%,
        100% 0%,
        85% 100%,
        0% 100%
    );
    opacity: 0.5;
}

.speed-effect {
    position: absolute;
    left: -20%;
    top: 50%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--red) 50%,
        transparent 100%);
    animation: speed-line 2s linear infinite;
}

@keyframes speed-line {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--red);
    height: 40px;
    overflow: hidden;
    z-index: 3;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: flex;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    padding: 0.5rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ======================================
   SEÇÕES
   ====================================== */
.container-f1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-f1 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-tag.premium {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
}

.section-title-f1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.text-red {
    color: var(--red);
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
        var(--black) 0%,
        var(--black-light) 100%);
    position: relative;
}

.section-diagonal-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--black);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.features-grid-f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card-f1 {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.feature-card-f1:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.feature-icon-f1 {
    width: 60px;
    height: 60px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.feature-icon-f1 i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card-f1 h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card-f1 p {
    color: var(--silver);
    line-height: 1.8;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.3s;
}

.feature-card-f1:hover .feature-line {
    width: 100%;
}

/* Bonus Section */
.bonus-section-f1 {
    padding: 100px 0;
    background: var(--black-light);
    position: relative;
}

.section-diagonal-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--black);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.bonus-grid-f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-item-f1 {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--red);
    transition: var(--transition);
}

.bonus-item-f1:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.bonus-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--red);
    font-weight: 700;
    opacity: 0.5;
}

.bonus-content i {
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.bonus-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bonus-content p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-f1 {
    padding: 100px 0;
    background: var(--black);
}

.testimonials-grid-f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card-f1 {
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card-f1:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.quote-mark {
    font-size: 4rem;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-text {
    color: var(--silver-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--silver);
    font-size: 0.9rem;
}

/* Pricing */
.pricing-f1 {
    padding: 100px 0;
    background: linear-gradient(180deg,
        var(--black-light) 0%,
        var(--black) 100%);
    position: relative;
}

.section-diagonal-top-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--black);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.pricing-grid-f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.pricing-single-f1 {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.pricing-single-f1 .price-card-f1 {
    width: 100%;
}

.price-card-f1 {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(192, 192, 192, 0.2);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.price-card-f1:hover {
    border-color: var(--red);
    transform: translateY(-10px);
}

.price-card-f1.featured {
    border-color: var(--red);
    transform: scale(1.08);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.3),
                0 0 100px rgba(255, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.7);
    }
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.price-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--silver);
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
}

.cents {
    font-size: 1.2rem;
    color: var(--red);
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.05);
    font-size: 0.9rem;
}

.price-features i {
    color: var(--red);
}

.btn-price-primary,
.btn-price-featured {
    width: 100%;
    padding: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-price-primary {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-price-primary:hover {
    background: var(--red);
    color: var(--white);
}

.btn-price-featured {
    background: var(--red);
    color: var(--white);
}

.btn-price-featured:hover {
    background: var(--red-light);
}

/* Guarantee */
.guarantee-box {
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid var(--red);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-box i {
    font-size: 2rem;
    color: var(--red);
}

.guarantee-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.guarantee-content p {
    color: var(--silver);
}

/* Achievements */
.achievements-f1 {
    padding: 100px 0;
    background: var(--black);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: var(--transition);
}

.achievement-card:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.achievement-card i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.achievement-card p {
    color: var(--silver);
}

/* CTA Final */
.cta-final-f1 {
    padding: 100px 0;
    background: linear-gradient(135deg,
        var(--red) 0%,
        var(--red-dark) 100%);
    text-align: center;
}

.cta-content-f1 h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-content-f1 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-final {
    background: var(--white);
    color: var(--red);
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-cta-final:hover {
    background: var(--silver);
    transform: translateY(-3px);
}

/* Footer */
.footer-f1 {
    padding: 3rem 0;
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer-content-f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: var(--silver);
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link-f1 {
    width: 40px;
    height: 40px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    transition: var(--transition);
}

.social-link-f1:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual-f1 {
        display: none;
    }

    .nav-f1 {
        display: none;
    }

    .hero-stats-f1 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .features-grid-f1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-mp {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-header {
        display: none;
    }

    /* Menu Hamburger Mobile */
    .hamburger {
        display: flex;
    }

    .nav-f1 {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0;
        border-left: 2px solid var(--red);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-f1.active {
        right: 0;
    }

    .nav-link-f1 {
        padding: 1rem;
        border-bottom: 1px solid rgba(192, 192, 192, 0.1);
        width: 100%;
        text-align: left;
    }

    .nav-link-f1::after {
        display: none;
    }

    .nav-link-f1.active {
        background: rgba(255, 0, 0, 0.1);
        border-left: 3px solid var(--red);
    }

    /* Hero Mobile */
    .hero-f1 {
        padding-top: 80px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title-f1 {
        font-size: 2.5rem;
    }

    .hero-subtitle-f1 {
        font-size: 1rem;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-stats-f1 {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-f1 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    }

    .stat-number-f1 {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-f1,
    .btn-secondary-f1 {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Ticker Mobile */
    .ticker-item {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Seções Mobile */
    .container-f1 {
        padding: 0 1rem;
    }

    .section-header-f1 {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title-f1 {
        font-size: 2rem;
    }

    /* Features Mobile */
    .features-grid-f1 {
        gap: 1.5rem;
    }

    .feature-card-f1 {
        padding: 1.5rem;
    }

    .feature-card-f1 h3 {
        font-size: 1.3rem;
    }

    /* Bonus Mobile */
    .bonus-grid-f1 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bonus-item-f1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .bonus-number {
        font-size: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid-f1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card-f1 {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Pricing Mobile */
    .pricing-grid-f1,
    .pricing-single-f1 {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .price-card-f1 {
        padding: 1.5rem 1rem;
    }

    .price-card-f1.featured {
        transform: scale(1);
    }

    .featured-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .price-header h3 {
        font-size: 1.4rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-features li {
        font-size: 0.85rem;
    }

    /* Guarantee Mobile */
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-content h3 {
        font-size: 1.5rem;
    }

    /* Achievements Mobile */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .achievement-card {
        padding: 1.5rem 1rem;
    }

    /* CTA Final Mobile */
    .cta-final-f1 {
        padding: 60px 0;
    }

    .cta-content-f1 h2 {
        font-size: 2rem;
    }

    .cta-content-f1 p {
        font-size: 1rem;
    }

    .btn-cta-final {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-content-f1 {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .hero-title-f1 {
        font-size: 2rem;
    }

    .title-line-1 {
        font-size: 0.5em;
    }

    .stat-number-f1 {
        font-size: 1.5rem;
    }

    .section-title-f1 {
        font-size: 1.8rem;
    }

    .btn-primary-f1,
    .btn-secondary-f1 {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
    }

    .logo-text {
        display: none;
    }

    .logo-version {
        font-size: 0.7rem;
    }
}