/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #059669);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #1f2937;
    color: white;
}

.btn-secondary:hover {
    background: #111827;
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
            width: 100%;
}


/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
    gap: 16px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.logo-section-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.logo-text {
    min-width: 0;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    white-space: nowrap;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    margin-left: 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe, #d1fae5);
    padding: 60px 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 4vw, 18px);
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    white-space: nowrap;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: clamp(16px, 4vw, 18px);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    font-size: 48px;
    margin: 24px 0 16px;
    color: #2563eb;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #dbeafe);
}

.pricing-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.card-header {
    padding: 32px 24px 24px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0; /* Não permite que o header encolha */
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.card-header > p {
    color: #6b7280;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 18px;
    color: #1f2937;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 18px;
    color: #6b7280;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
}

.features-list {
    list-style: none;
    padding: 24px 24px 0;
    flex: 1; /* Ocupa o espaço disponível */
    display: flex;
    flex-direction: column;
}

.features-list li {
    padding: 12px 0;
    color: #6b7280;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li i {
    color: #10b981;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.features-list li:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.pricing-card .btn {
    margin: 24px;
    margin-top: auto; /* Empurra o botão para baixo */
    flex-shrink: 0; /* Não permite que o botão encolha */
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    padding: 32px;
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.contact-form {
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo .logo-text p {
    font-size: 14px;
    color: #9ca3af;
    margin: 24px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    background: #ef4444;
}

.toast.success {
    background: #10b981;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
        margin-left: 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .how-it-works,
    .pricing,
    .contact,
    .faq {
        padding: 60px 0;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .contact-form,
    .form-header {
        padding: 24px;
    }
    
    .pricing-card .btn {
        margin: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
        align-items: flex-start;
    }
    
    .faq-question span {
        flex: 1;
        margin-right: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .step-card h3 {
        font-size: 18px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    .pricing-card .card-header h3 {
        font-size: 20px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .features-list li {
        font-size: 14px;
    }
    
    .popular-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .toast {
        max-width: 250px;
        font-size: 14px;
    }
    
    .pricing-card .btn {
        margin: 16px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .pricing-card .btn {
        margin: 12px;
    }
}


.logo-icon .logo-img {
    height: 75px;
    width: auto;
    border-radius: 12px;
}

/* Responsivo: reduz a logo no mobile */
@media (max-width: 768px) {
    .logo-icon .logo-img {
        height: 60px;
    }
}


@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo-section {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-text {
        margin-top: 8px;
    }
}
