/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* IMAGENS RESPONSIVAS */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.images-grid-responsive img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-btn {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 600;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-nav {
    background: var(--white);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 100px 0 50px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    animation: fadeInUp 0.8s 0.4s backwards;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    animation: fadeInUp 0.8s 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s 0.8s backwards;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* FEATURES SECTION */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gray-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
        "icon header"
        "icon desc"
        "features features";
    gap: 12px 20px;
    align-items: start;
}

.feature-card .feature-icon {
    grid-area: icon;
    align-self: start;
    flex-shrink: 0;
}

.feature-card h3 {
    grid-area: header;
    margin: 0 0 8px 0;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.3;
}

.feature-card > p {
    grid-area: desc;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.6;
}

.feature-card .feature-list {
    grid-area: features;
    columns: 2;
    column-gap: 30px;
    margin: 0;
    padding-top: 10px;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card.featured {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-card.featured .feature-icon {
    background: rgba(255,255,255,0.2);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.feature-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.feature-card.featured .feature-list i {
    color: var(--white);
}

/* DETAILED FEATURES */
.detailed-features {
    padding: 100px 0;
    background: var(--gray-light);
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.detail-row.reverse {
    direction: rtl;
}

.detail-row.reverse > * {
    direction: ltr;
}

.detail-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    margin-bottom: 20px;
    opacity: 0.5;
}

.detail-content {
    padding: 20px;
}

.detail-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-content h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

.detail-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.checklist i {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* COMPATIBILITY */
.compatibility {
    padding: 100px 0;
    background: var(--white);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.compat-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.compat-card:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-10px);
}

.compat-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.compat-card:hover i {
    color: var(--white);
}

.compat-card h3 {
    margin-bottom: 10px;
}

/* PRICING */
.pricing {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.pricing .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.pricing .section-header h2,
.pricing .section-header p {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--secondary);
    background: var(--gradient);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 15px 0;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
}

.price-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.discount {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.guarantee {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee i {
    font-size: 3rem;
    color: var(--secondary);
}

.guarantee h3 {
    margin-bottom: 10px;
}

.guarantee p {
    opacity: 0.9;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.faq-item h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-item:hover i {
    color: var(--white);
}

.faq-item p {
    line-height: 1.8;
}

/* CTA FINAL */
.cta-final {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.8;
}

/* CONTACT */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card.whatsapp {
    border-top: 4px solid #25d366;
}

.contact-card.whatsapp i {
    color: #25d366;
}

.contact-card.telegram {
    border-top: 4px solid #0088cc;
}

.contact-card.telegram i {
    color: #0088cc;
}

.contact-card.email {
    border-top: 4px solid var(--primary);
}

.contact-card.email i {
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-card span {
    font-weight: 600;
    color: var(--dark);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    /* Tablets grandes e laptops pequenos */
    .container {
        padding: 0 25px;
    }
    
    .images-grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    }
}

@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 6px !important;
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn {
        padding: 8px 10px;
        font-size: 0.8em;
        flex: 0 1 auto;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "icon"
            "header"
            "desc"
            "features";
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .feature-card h3 {
        text-align: center;
    }
    
    .feature-card .feature-list {
        columns: 1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Corrigir grids que usam auto-fit com minmax muito grande */
    [style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Reduzir padding de seções para economizar espaço vertical */
    section {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 1.1em !important;
        line-height: 1.6 !important;
    }
    
    /* Otimizar badges e estatísticas */
    .badge, .section-badge {
        font-size: 0.9em !important;
        padding: 8px 15px !important;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badges span {
        font-size: 0.9em;
    }
    
    /* Melhorar tabelas em mobile */
    .specs-table table {
        font-size: 0.9em;
    }
    
    .specs-table td {
        padding: 15px 10px !important;
        font-size: 1em !important;
        display: block;
        width: 100% !important;
    }
    
    .specs-table td:first-child {
        background: #f8f9fa !important;
        font-weight: bold;
        border-bottom: 1px solid #ddd;
    }
    
    .specs-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    
    /* NAVBAR MOBILE */
    .navbar .container {
        padding: 0 10px !important;
    }
    
    .logo {
        font-size: 1rem;
        gap: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 5px !important;
        width: 100%;
    }
    
    .nav-btn {
        padding: 6px 8px;
        font-size: 0.75em;
        border-radius: 6px;
    }
    
    /* CORRIGIR PADDING DO CONTAINER - APROVEITAR LARGURA TOTAL */
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Forçar elementos a usarem largura total */
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    section > * {
        max-width: 100% !important;
    }
    
    .hero-text { 
        padding: 0 10px !important; 
    }
    
    /* Sections com padding mínimo */
    section {
        padding: 50px 10px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .trust-badges { 
        flex-direction: column; 
        gap: 12px;
        font-size: 0.85em;
    }
    
    /* Compactar blocos de texto grandes */
    p {
        font-size: 0.95em;
        line-height: 1.5;
    }
    
    ul, ol {
        padding-left: 20px;
    }
    
    li {
        margin-bottom: 8px;
        font-size: 0.9em;
    }
    
    /* Botões mais compactos */
    .btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    /* CARDS COM PADDING REDUZIDO MAS LARGURA MÁXIMA */
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 15px !important;
        margin: 0 5px 20px 5px !important;
    }
    
    /* Otimizar grids de botões demo - mais espaçados e legíveis */
    .button-visual {
        gap: 10px !important;
        padding: 12px 5px !important;
        margin: 18px 0 !important;
    }
    
    .btn-demo {
        padding: 12px 16px !important;
        font-size: 0.9em !important;
        min-width: auto !important;
    }
    
    .btn-demo.wide {
        width: calc(100% - 10px) !important;
        min-width: auto !important;
    }
    
    .btn-demo.small {
        padding: 10px 14px !important;
        font-size: 0.88em !important;
    }
    
    /* CATEGORIAS COM LARGURA MÁXIMA E MELHOR LEGIBILIDADE */
    .button-category {
        padding: 25px 15px !important;
        margin-bottom: 25px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        background: rgba(255,255,255,0.08) !important;
    }
    
    .button-category h3 {
        font-size: 1.25em !important;
        margin-bottom: 18px !important;
        line-height: 1.3 !important;
    }
    
    .button-category ul {
        margin: 18px 5px 18px 25px !important;
    }
    
    .button-category li {
        font-size: 0.92em !important;
        margin: 10px 0 !important;
        line-height: 1.6 !important;
    }
    
    /* Listas aninhadas mais compactas */
    .button-category li ul {
        margin: 8px 0 8px 15px !important;
    }
    
    .button-category li ul li {
        font-size: 0.88em !important;
        margin: 6px 0 !important;
    }
    
    .button-category p {
        font-size: 0.95em !important;
        margin: 15px 5px !important;
        line-height: 1.6 !important;
    }
    
    .button-category strong {
        color: #ffd700;
        font-size: 1.05em;
    }
    
    /* IMAGENS COM PADDING MÍNIMO */
    .images-grid-responsive {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .images-grid-responsive > div {
        padding: 12px !important;
        margin: 0 5px !important;
    }
    
    .images-grid-responsive h3 {
        font-size: 1.1em !important;
        margin-bottom: 12px !important;
    }
    
    .images-grid-responsive p {
        font-size: 0.85em !important;
        margin-top: 10px !important;
    }
    
    /* HIGHLIGHT BOXES COM LARGURA MÁXIMA */
    .highlight-box {
        padding: 15px 10px !important;
        margin: 20px 5px !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .highlight-box h3 {
        font-size: 1.3em !important;
        margin-bottom: 10px !important;
    }
    
    .highlight-box p {
        font-size: 0.95em !important;
        line-height: 1.5 !important;
    }
    
    /* Seção Guia Completo em mobile */
    .guia-section {
        padding: 40px 10px !important;
    }
    
    .guia-section i {
        font-size: 2.5em !important;
        margin-bottom: 15px !important;
    }
    
    .guia-title {
        font-size: 1.5em !important;
        margin-bottom: 15px !important;
    }
    
    .guia-text {
        font-size: 1em !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
        padding: 0 5px !important;
    }
    
    .guia-text br {
        display: none;
    }
    
    .guia-btn {
        font-size: 1em !important;
        padding: 15px 20px !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
        margin: 0 10px !important;
    }
    
    .guia-subtitle {
        font-size: 0.9em !important;
        margin-top: 15px !important;
        padding: 0 10px !important;
    }
    
    /* TABELAS DE SPECS */
    .specs-table {
        margin: 30px 5px !important;
        padding: 0 5px !important;
    }
    
    /* GRIDS DE COMPATIBILIDADE */
    .compatibility-grid,
    .compat-card {
        padding: 15px 10px !important;
        margin: 10px 5px !important;
    }
    
    /* FAQ ITEMS */
    .faq-item {
        padding: 20px 12px !important;
        margin: 0 5px 15px 5px !important;
    }
    
    /* CONTACT CARDS */
    .contact-card {
        padding: 25px 15px !important;
        margin: 0 5px 15px 5px !important;
    }
    
    /* FOOTER */
    .footer-content {
        padding: 0 10px !important;
    }
    
    .footer-links {
        padding: 20px 10px !important;
    }
}