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

:root {
    --primary-blue: #4A9FDB;
    --dark-blue: #1B5A85;
    --navy: #0F2C3E;
    --light-blue: #E8F4FB;
    --text-dark: #1A1A1A;
    --text-gray: #4A5568;
    --white: #FFFFFF;
    --success: #4CAF50;
    --error: #FF6B6B;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.logo h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.logo p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.btn-primary {
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 90, 133, 0.3);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    padding: 12px 24px;
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-secondary.large {
    padding: 16px 32px;
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-cta {
    margin-top: 8px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #E8F4FB 0%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 159, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--navy);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.highlight-blue {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.hero-cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Section Titles */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--navy);
}

.section-title.left {
    text-align: left;
}

.section-title.blue {
    color: var(--dark-blue);
}

.section-title-white {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 48px;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: var(--light-blue);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue) 25%, transparent 25%, transparent 50%, var(--primary-blue) 50%, var(--primary-blue) 75%, transparent 75%);
    z-index: 0;
}

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

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 8px;
}

.step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
}

.demo-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 500;
    color: var(--dark-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--light-blue);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 159, 219, 0.15);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: var(--navy);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text .section-title {
    color: var(--white);
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* For Whom */
.for-whom {
    padding: 80px 0;
    background: var(--light-blue);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.for-whom-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.for-whom-card svg {
    flex-shrink: 0;
}

.for-whom-card p {
    color: var(--text-dark);
    font-size: 16px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 159, 219, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon.purple {
    background: #EDE9FE;
    color: #7C3AED;
}

.benefit-icon.pink {
    background: #FCE7F3;
    color: #EC4899;
}

.benefit-icon.cyan {
    background: #CFFAFE;
    color: #06B6D4;
}

.benefit-icon.green {
    background: #D1FAE5;
    color: #10B981;
}

.benefit-icon.yellow {
    background: #FEF3C7;
    color: #F59E0B;
}

.benefit-icon.magenta {
    background: #FAE8FF;
    color: #D946EF;
}

.benefit-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: 24px;
    right: 24px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-gray);
}

/* Problems */
.problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B5A85 0%, #0F2C3E 100%);
}

.problems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-item p {
    color: var(--white);
    font-size: 16px;
}

.problems-solution {
    margin-top: 32px;
    padding: 24px;
    background: rgba(74, 159, 219, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.problems-solution p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

.problems-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.stars {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0.3;
}

.stars.bottom {
    justify-content: flex-end;
    margin-top: 32px;
    margin-bottom: 0;
}

.social-proof-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-proof-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--navy);
}

.number {
    font-size: 72px;
    color: var(--primary-blue);
    display: inline-block;
}

.social-proof-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--light-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-logo {
    text-align: center;
}

.about-brand h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin: 16px 0 0;
}

.about-brand p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 4px 0 0;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--light-blue);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Investment */
.investment {
    padding: 80px 0;
    background: var(--light-blue);
}

.investment-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(74, 159, 219, 0.3);
}

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

.investment-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.investment-content h4 span {
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

.investment-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.investment-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
}

.investment-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 32px;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: rgba(15, 44, 62, 0.8);
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--navy);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.final-cta-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Planos Page */
.planos-page {
    padding: 140px 0 80px;
    background: var(--white);
}

.planos-header {
    text-align: center;
    margin-bottom: 48px;
}

.planos-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 16px;
}

.planos-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.planos-intro p {
    font-size: 16px;
    color: var(--text-gray);
}

.planos-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.planos-table-header,
.planos-table-row,
.planos-table-footer {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    border-bottom: 1px solid #E2E8F0;
}

.planos-table-header {
    background: var(--light-blue);
    font-weight: 700;
}

.planos-table-row:last-of-type {
    border-bottom: none;
}

.planos-table-cell {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.planos-table-cell.empty {
    background: transparent;
}

.planos-table-cell.featured {
    background: var(--primary-blue);
    color: var(--white);
}

.planos-table-cell.feature-name {
    align-items: flex-start;
    text-align: left;
    font-weight: 500;
}

.plan-badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(74, 159, 219, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.planos-table-cell.featured .plan-badge {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
}

.planos-table-cell.featured .plan-price {
    color: var(--white);
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.planos-table-cell.featured .plan-name {
    color: var(--white);
}

.check {
    animation: checkPop 0.3s ease-out;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.btn-plan {
    background: var(--white);
    color: var(--dark-blue);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--dark-blue);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-plan:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-plan.primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-plan.primary:hover {
    background: var(--white);
    color: var(--navy);
}

.planos-logo {
    text-align: center;
    margin: 48px 0;
}

.planos-logo p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.planos-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: var(--light-blue);
    border-radius: 24px;
}

.planos-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.planos-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* Contato Page */
.contato-page {
    padding: 140px 0 80px;
    background: var(--light-blue);
    min-height: 100vh;
}

.contato-header {
    text-align: center;
    margin-bottom: 48px;
}

.contato-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.contato-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.contato-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-blue);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(74, 159, 219, 0.3);
}

.contato-form-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
}

.form-group input {
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder {
    color: #94A3B8;
}

.btn-submit {
    background: var(--navy);
    color: var(--white);
    padding: 18px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit:hover {
    background: rgba(15, 44, 62, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 44, 62, 0.3);
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 32px 0;
    text-align: center;
}

.footer-cta {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .why-content,
    .problems-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planos-table-header,
    .planos-table-row,
    .planos-table-footer {
        grid-template-columns: 1.5fr repeat(4, 1fr);
    }

    .hero-image,
    .why-image,
    .problems-image {
        order: -1;
    }
}

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

    .header-content .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-white {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

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

    .for-whom-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .demo-info {
        flex-direction: column;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .planos-table {
        overflow-x: auto;
    }

    .planos-table-header,
    .planos-table-row,
    .planos-table-footer {
        min-width: 800px;
    }

    .contato-form-wrapper {
        padding: 32px 24px;
    }

    .social-proof-title {
        font-size: 32px;
    }

    .number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary.large,
    .btn-secondary.large {
        padding: 14px 24px;
        font-size: 14px;
    }

    .investment-content h4 {
        font-size: 24px;
    }

    .final-cta-text h3 {
        font-size: 28px;
    }

    .contato-header h2 {
        font-size: 32px;
    }
}

/* Smooth Scroll Offset */
section {
    scroll-margin-top: 80px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
