/* Variáveis CSS */
:root {
    /* Cores principais */
    --orange-primary: #FF1E00;
    --orange-light: #F9E7E5;
    --dark-gray: #252525;
    --black: #000000;
    --white: #ffffff;
    
    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Tipografia */
    --font-family: 'Inter', sans-serif; /* Substituto para Lufga Bold */
    --line-height: 1.5;
}

/* Reset CSS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilidades */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
        max-width: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--orange-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff3c22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 30, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    text-align: center;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    padding: var(--space-sm) 0;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Menu de navegação principal */
.desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
        margin-left: auto;
        margin-right: var(--space-md);
    }
    
    .desktop-nav ul {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }
    
    .desktop-nav a {
        font-weight: 500;
        color: var(--white);
    }
    
    .desktop-nav a:hover {
        color: var(--orange-primary);
    }
}

/* Estilos base do menu mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
}

.mobile-nav-container {
    padding-top: calc(60px + var(--space-md));
    height: 100%;
    overflow-y: auto;
}

.mobile-nav.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: var(--space-md) 0;
    }
    
    .mobile-nav ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: calc(var(--item-index) * 0.1s);
    }
    
    .mobile-nav.show ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        color: var(--white);
        transition: color 0.3s ease;
    }
    
    .mobile-nav ul li a:hover {
        color: var(--orange-primary);
    }
    
    .mobile-nav ul li:last-child {
        margin-top: var(--space-md);
    }
    
    .mobile-nav ul li:last-child a.btn {
        display: inline-flex;
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        position: relative;
        z-index: 1001;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-btn.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Impedir rolagem quando menu mobile estiver aberto */
html.scroll-locked {
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Ajuste do tamanho do logo SVG */
.logo img {
    max-width: 150px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    margin-right: var(--space-sm);
}

/* Ajusta responsivamente o tamanho do logo para telas menores */
@media (max-width: 768px) {
    .logo img {
        max-width: 120px;
    }
}

/* Hero Section */
.hero {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--black), var(--dark-gray));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-weight: 700;
    color: var(--white);
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Benefits Section */
.benefits {
    padding: var(--space-xl) 0;
    background-color: var(--black);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--orange-primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 30, 0, 0.2);
}

.benefit-icon {
    color: var(--orange-primary);
    margin-bottom: var(--space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 30, 0, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* How it works */
.how-it-works {
    padding: var(--space-xl) 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 30, 0, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 80% 70%, rgba(255, 30, 0, 0.05) 0%, transparent 25%);
    opacity: 0.7;
    z-index: 0;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff1e00' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 20L20 0L40 20L20 40z' /%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works .section-title {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), var(--white), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: var(--space-lg);
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(255, 30, 0, 0.1),
        var(--orange-primary),
        rgba(255, 30, 0, 0.1));
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 30, 0, 0.3);
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    margin-bottom: 100px;
    min-height: 100px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 30px;
    padding-left: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-primary), #ff4d4d);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 30, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 30, 0, 0.5);
}

.timeline-content {
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    background-color: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 30, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: rgba(20, 20, 20, 0.7);
    transform: rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-right: 1px solid rgba(255, 30, 0, 0.3);
    border-top: 1px solid rgba(255, 30, 0, 0.3);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-left: 1px solid rgba(255, 30, 0, 0.3);
    border-bottom: 1px solid rgba(255, 30, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
    background-color: var(--black);
    position: relative;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--orange-primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 30, 0, 0.2);
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 30, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 24px;
    color: var(--orange-primary);
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-card:hover .author-avatar i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Pricing Section */
.pricing {
    padding: var(--space-xl) 0;
    background-color: var(--dark-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.pricing-card.featured {
    background-color: rgba(255, 30, 0, 0.1);
    border-color: rgba(255, 30, 0, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-header {
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.pricing-features {
    padding: var(--space-md);
    flex: 1;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li i {
    color: var(--orange-primary);
}

.pricing-cta {
    padding: var(--space-md);
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: var(--space-xl) 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 60%;
    height: 120%;
    background-image: url('img/simbolo.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    opacity: 0.08;
    transform: scale(1.8) rotate(-5deg);
    z-index: 0;
    filter: brightness(0.7) contrast(1.2);
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--space-sm) var(--space-md);
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.faq-answer {
    padding: 0 var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
    opacity: 1;
}

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

/* CTA Section */
.cta {
    padding: var(--space-xl) 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--orange-primary);
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin-bottom: var(--space-md);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 500px;
}

.cta-form .form-group {
    position: relative;
    width: 100%;
}

.cta-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--orange-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form input.error {
    border-color: #ff3b3b;
    animation: shake 0.4s linear;
}

.cta-form .btn {
    width: 100%;
    margin-top: var(--space-xs);
}

@media (min-width: 768px) {
    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-form .form-group {
        width: 100%;
    }
}

.form-group.error-message {
    color: #ff3b3b;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.form-group.error-message.show {
    display: block;
}

/* Footer */
.footer {
    padding: var(--space-lg) 0;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-md);
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer-branding .logo {
    margin-bottom: var(--space-sm);
}

.footer-branding .logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-branding p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 30, 0, 0.3);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--space-md);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.footer-links-group h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links-group a:hover {
    color: var(--orange-primary);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-image {
        margin-top: var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    .header.scrolled {
        background-color: rgba(0, 0, 0, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .header.scrolled .logo img {
        max-width: 100px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: auto;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-btn.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Microinterações e Animações */
.thank-you-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background-color: rgba(255, 30, 0, 0.1);
    border-radius: 8px;
    margin-top: var(--space-md);
    border: 1px solid rgba(255, 30, 0, 0.3);
    transition: opacity 0.5s ease;
}

.thank-you-message h3 {
    margin: var(--space-sm) 0;
    font-size: 1.4rem;
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
}

.thank-you-message .success-icon {
    color: var(--orange-primary);
    font-size: 2rem;
}

.fade-out {
    opacity: 0;
}

.btn-primary.success {
    background-color: #2ecc71;
}

/* Animações para elementos em hover */
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: rgba(255, 30, 0, 0.2);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 30, 0, 0.4);
}

/* Melhoria para destacar Cards */
.benefit-card::before,
.testimonial-card::before,
.pricing-card::before,
.step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 12px 12px 0 0;
}

.benefit-card:hover::before,
.testimonial-card:hover::before,
.pricing-card:hover::before,
.step:hover::before {
    opacity: 1;
}

/* Efeito de scroll para o header */
.header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Ajuste do logo quando o header estiver na versão scrolled */
.header.scrolled .logo img {
    max-width: 130px; /* Um pouco menor quando o header está scrolled */
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--space-sm);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--space-sm);
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        position: relative;
        z-index: 2500;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: var(--space-md) 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-nav.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: var(--space-md) 0;
    }
    
    .mobile-nav ul li {
        width: 100%;
        text-align: center;
    }
    
    .mobile-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .mobile-nav ul li:last-child {
        margin-top: var(--space-md);
    }
    
    .mobile-nav ul li:last-child a.btn {
        display: inline-flex;
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
        margin: 0 auto;
    }
} 