/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --bg-dark: #010101;
    --bg-darker: #000000;
    --bg-card: rgba(26, 26, 26, 0.95);
    --bg-card-hover: rgba(40, 40, 40, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(1, 1, 1, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(1, 1, 1, 0.98);
    backdrop-filter: blur(30px);
}

.navbar.scrolled .nav-content {
    padding: 0.5rem 0;
}

.navbar.scrolled .logo-image {
    height: 60px;
    max-width: 240px;
}

.navbar.scrolled-deep {
    background: rgba(1, 1, 1, 0.99);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled-deep .nav-content {
    padding: 0.4rem 0;
}

.navbar.scrolled-deep .logo-image {
    height: 50px;
    max-width: 200px;
}

.navbar.scrolled-deep .nav-link {
    font-size: 0.9rem;
}

.navbar.scrolled .nav-menu {
    gap: 2rem;
}

.navbar.scrolled-deep .nav-menu {
    gap: 1.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 320px;
    transition: var(--transition);
}

.logo-image-footer {
    height: 240px;
    width: auto;
    object-fit: contain;
    max-width: 880px;
    margin-bottom: 1rem;
}

.logo-fallback,
.logo-fallback-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--text-primary);
    margin-top: 3.5rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    height: clamp(90px, 15vw, 150px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.hero-logo-fallback {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
    flex-wrap: wrap;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
    margin-top: 2rem;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.illustration-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.illustration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 0.2s;
}

.card-3 {
    animation-delay: 0.4s;
}

.card-4 {
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* Businesses Section */
/* Pricing Highlight Section */
.pricing-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-highlight-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pricing-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-highlight-text {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.brand-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.price-amount {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
}

.no-extra {
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 0 0 300px;
    width: 300px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    height: 350px;
    box-sizing: border-box;
}

.comparison-bad {
    border-color: rgba(231, 76, 60, 0.3);
}

.comparison-bad:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.comparison-good {
    border-color: rgba(46, 204, 113, 0.3);
}

.comparison-good:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.comparison-icon {
    font-size: 3rem;
}

.comparison-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.comparison-content h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    min-height: 40px;
}

.comparison-logo-image {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.comparison-logo-fallback {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.comparison-value {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.comparison-bad .comparison-value {
    color: var(--accent-color);
}

.comparison-good .comparison-value {
    color: var(--secondary-color);
}

.comparison-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comparison-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.pricing-cta {
    margin-top: 2rem;
}

.businesses {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.business-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
}

.business-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.business-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.business-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.business-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-darker);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Responsive Design - Telas Médias */
@media (min-width: 1441px) and (max-width: 1920px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-title {
        font-size: 2.4rem;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .hero-title {
        font-size: clamp(2.5rem, 4.5vw, 2.8rem);
    }
    
    .section-title {
        font-size: clamp(1.9rem, 3.5vw, 2rem);
    }
    
    .pricing-title {
        font-size: clamp(2rem, 4vw, 2.2rem);
    }
    
    .hero-description,
    .section-subtitle {
        font-size: clamp(1rem, 2vw, 1.1rem);
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.7rem, 3.5vw, 1.9rem);
    }
    
    .pricing-title {
        font-size: clamp(1.8rem, 4vw, 2rem);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 0;
    }

    .nav-content {
        padding: 0.6rem 0;
    }

    .logo-image {
        height: 60px;
        max-width: 240px;
    }
    
    .navbar.scrolled .logo-image {
        height: 50px;
        max-width: 200px;
    }
    
    .navbar.scrolled-deep .logo-image {
        height: 45px;
        max-width: 180px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 1.5rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-image {
        height: clamp(75px, 13.5vw, 135px);
    }

    .hero-badge {
        white-space: normal;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-illustration {
        grid-template-columns: 1fr 1fr;
        height: 300px;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }

    .illustration-card {
        padding: 1.25rem;
        border-radius: 15px;
        gap: 0.75rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card-label {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .businesses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .logo-image {
        height: 50px;
        max-width: 200px;
    }

    .nav-content {
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .navbar.scrolled .nav-content {
        padding: 0.4rem 0;
    }
    
    .navbar.scrolled-deep .logo-image {
        height: 40px;
        max-width: 160px;
    }
    
    .navbar.scrolled-deep .nav-content {
        padding: 0.35rem 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-text {
        margin-top: 1.5rem;
    }
    
    .hero-logo {
        margin-bottom: 1rem;
    }
    
    .hero-logo {
        margin-bottom: 1rem;
    }
    
    .hero-logo-image {
        height: clamp(80px, 15vw, 150px);
    }

    .hero-badge {
        white-space: normal;
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 2rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-illustration {
        grid-template-columns: 1fr 1fr;
        height: 250px;
        max-width: 280px;
        gap: 0.75rem;
    }

    .illustration-card {
        padding: 1rem;
        border-radius: 12px;
        gap: 0.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-label {
        font-size: 0.75rem;
    }

    .pricing-highlight {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }

    .pricing-description {
        font-size: 1.1rem;
    }

    .pricing-comparison {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .comparison-vs {
        transform: rotate(90deg);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .comparison-item {
        min-width: 100%;
        max-width: 100%;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .logo-image-footer {
        height: 100px;
        max-width: 300px;
    }

    /* Businesses Section Mobile */
    .pricing-highlight {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }

    .pricing-description {
        font-size: 1.1rem;
    }

    .pricing-comparison {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-comparison {
        align-items: center;
    }

    .comparison-vs {
        transform: rotate(90deg);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .comparison-item {
        min-width: 100%;
        max-width: 100%;
    }

    .businesses {
        padding: 60px 0;
    }

    .businesses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .business-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .business-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .business-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .business-features {
        font-size: 0.75rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .business-features li {
        padding: 0.4rem 0;
    }
}

/* Modal Formulário de Email */
.modal-email {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.modal-email.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-email-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.modal-email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-email-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-email-close {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-email-close:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.modal-email-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.875rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.form-actions .btn {
    min-width: 120px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 640px) {
    .modal-email-content {
        max-width: 100%;
        border-radius: 12px;
        max-height: 95vh;
        margin: 10px;
    }

    .modal-email-header {
        padding: 1rem 1.25rem 0.75rem;
    }

    .modal-email-header h2 {
        font-size: 1.25rem;
    }

    .modal-email-form {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .form-actions {
        flex-direction: column;
        margin-top: 1.25rem;
        padding-top: 0.875rem;
    }

    .form-actions .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
