/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    min-height: 130px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #8B5CF6;
}

.logo-subtitle {
    font-size: 12px;
    color: #8B5CF6;
    font-weight: 500;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 18px;
    font-weight: 700;
    font-family: sans-serif;
    text-transform: uppercase;
}


.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Botão hambúrguer (hidden by default) */
.mobile-menu-button {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-button .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #111827;
    margin: 5px 0;
    transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu-button.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-button.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-button.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile colapsável */
.mobile-menu {
    display: none !important;
    width: 100%;
}
.mobile-menu.active {
    display: block !important;
}
.mobile-menu-links,
.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0 0 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button_style_01{
    background: linear-gradient(to bottom, #4d4d4d 0%, #1a1a1a 100%);
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 4px rgba(0, 0, 0, 0.5);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.button_style_01:hover{
  background: linear-gradient(to bottom, #5e5e5e 0%, #2a2a2a 100%);
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 1px solid #595959;
    opacity: .7;
}


.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #293087 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-logo .logo-text {
    font-size: 32px;
    color: white;
}

.hero-logo .logo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #60A5FA;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn_plan{
    color: #fff;
    border: 1px solid #595959;
    opacity: .7;
    background: linear-gradient(to bottom, #4d4d4d 0%, #1a1a1a 100%);
}

.btn_plan:hover{
    background: linear-gradient(to bottom, #5e5e5e 0%, #2a2a2a 100%);
    opacity: 1;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}


/* Removed complex illustration elements - replaced with simple image */

/* Sections */
.benefits, .how-it-works, .plans {
    padding: 100px 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #ffffff;
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 0;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
}
.faq-question i {
    transition: transform .2s ease;
    color: #6B7280;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
    padding: 0 20px;
    color: #4B5563;
}
.faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
}
.faq-answer p + p { margin-top: 10px; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    background: #F9FAFB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* How it Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.step-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* Plans Section */
.plans {
    background: #F9FAFB;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border: 2px solid #8B5CF6;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B5CF6;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #6B7280;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #8B5CF6;
}

.period {
    font-size: 1rem;
    color: #6B7280;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #374151;
}

.plan-features i {
    color: #10B981;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #F9FAFB;
    color: #1F2937;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: #8B5CF6;
}

.footer-brand .logo-subtitle {
    color: rgba(139, 92, 246, 0.7);
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-brand p {
    color: #6B7280;
    margin-top: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1F2937;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B5CF6;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #6B7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        min-height: 80px;
    }
    .mobile-menu-button {
        display: inline-block;
        margin-left: auto;
    }
    .mobile-menu-button .bar {
        width: 28px;
        height: 3px;
    }
    /* Esconder itens secundários no topo em mobile */
    .navbar .nav-links { display: none !important; }
    /* Ajustar layout dos botões em mobile */
    .navbar .nav-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }
    .navbar .nav-actions .btn {
        font-size: 12px;
        padding: 10px 16px;
        white-space: nowrap;
    }
    .navbar .nav-actions .btn.btn-outline {
        display: inline-flex !important;
    }
    .navbar .nav-actions .button_style_01 {
        display: inline-flex !important;
    }
    
    /* Menu colapsável ocupa largura total abaixo do header */
    .mobile-menu {
        display: none !important;
        background: rgba(255,255,255,0.95);
        border-top: 1px solid rgba(0,0,0,0.08);
        padding: 10px 0 16px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .steps,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Ajustes de botões no topo para telas muito pequenas */
    .navbar .nav-actions {
        gap: 8px;
    }
    .navbar .nav-actions .btn {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}
