/* cPanel Theme - DevWeb Landing Page */

:root {
    /* Cores do Logo - Paleta Principal */
    --brand-primary: #ff6a07;
    --brand-primary-light: #ff8533;
    --brand-primary-dark: #e55f06;
    --brand-purple: #6b21a8;
    --brand-purple-dark: #581c87;
    
    /* Cores de Fundo - Baseadas no logo */
    --cpanel-dark: #0f0f1a;
    --cpanel-darker: #0a0a12;
    --cpanel-sidebar: #1a1a2e;
    --cpanel-card: #252541;
    --cpanel-border: #3a3a5a;
    
    /* Cores de Destaque */
    --cpanel-primary: #ff6a07;
    --cpanel-secondary: #8b5cf6;
    --cpanel-text: #f5f5f5;
    --cpanel-muted: #a0a0b0;
    --cpanel-white: #ffffff;
    --cpanel-green: #22c55e;
    --cpanel-accent: #c2410c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cpanel-dark);
    color: var(--cpanel-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--cpanel-white);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.25rem; }

.accent {
    color: var(--cpanel-primary);
}

.section-subtitle {
    color: var(--cpanel-muted);
    font-size: 1.1rem;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 7, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cpanel-white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--cpanel-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--cpanel-card);
    border-color: var(--cpanel-primary);
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* Card Component */
.card {
    background: var(--cpanel-card);
    border: 1px solid var(--cpanel-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--cpanel-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 106, 7, 0.12);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cpanel-border);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cpanel-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-accent {
    color: var(--cpanel-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-brand .logo-img {
    height: 36px;
}

/* EFEITOS ULTRA PREMIUM */

/* Cursor customizado - esconder padrão */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button {
        cursor: none;
    }
}

/* Efeito 3D nos cards */
.card, .plano-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Canvas de partículas - visíveis mas discretas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.9;
}

/* Efeito de shake nos cards no hover */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Glow effect melhorado */
.mouse-glow {
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--cpanel-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cpanel-white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cpanel-white);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cpanel-sidebar);
    border-bottom: 1px solid var(--cpanel-border);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    color: var(--cpanel-muted);
    text-decoration: none;
    padding: 8px 0;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cpanel-card);
    border: 1px solid var(--cpanel-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--cpanel-muted);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--cpanel-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--cpanel-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cpanel-white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cpanel-muted);
}

.divider {
    width: 1px;
    height: 40px;
    background: var(--cpanel-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.code-card {
    background: var(--cpanel-card);
    border: 1px solid var(--cpanel-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--cpanel-sidebar);
    border-bottom: 1px solid var(--cpanel-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.filename {
    margin-left: 8px;
    font-size: 0.8rem;
    color: var(--cpanel-muted);
}

.code-body {
    padding: 24px;
}

.line {
    height: 12px;
    background: var(--cpanel-sidebar);
    border-radius: 6px;
    margin-bottom: 12px;
}

.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-85 { width: 85%; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.box {
    height: 80px;
    background: var(--cpanel-sidebar);
    border-radius: 8px;
}

.box-large {
    height: 120px;
    background: var(--cpanel-sidebar);
    border-radius: 8px;
}

.glow-1, .glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.glow-1 {
    width: 200px;
    height: 200px;
    background: var(--cpanel-primary);
    top: -20px;
    right: -20px;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: var(--cpanel-secondary);
    bottom: -30px;
    left: -30px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-alt {
    background: var(--cpanel-darker);
    padding: 80px 0;
}

section {
    padding: 80px 0;
}

/* Cards Grid */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--cpanel-sidebar);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpanel-primary);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--cpanel-muted);
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    text-align: center;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--cpanel-sidebar);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpanel-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 106, 7, 0.15);
}

/* Benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.beneficios-content h2 {
    margin-bottom: 16px;
}

.beneficios-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.beneficio-item {
    display: flex;
    gap: 16px;
}

.beneficio-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 106, 7, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpanel-primary);
    flex-shrink: 0;
}

.beneficio-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.beneficio-text p {
    color: var(--cpanel-muted);
    font-size: 0.9rem;
}

/* Results Card */
.results-card {
    padding: 32px;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    color: var(--cpanel-white);
    font-weight: 600;
}

.results-header svg {
    color: var(--cpanel-primary);
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.progress-label span:first-child {
    color: var(--cpanel-muted);
}

.progress-bar {
    height: 8px;
    background: var(--cpanel-sidebar);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 4px;
    transition: width 1s ease;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-card {
    background: var(--cpanel-card);
    border: 1px solid var(--cpanel-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--cpanel-primary);
    transform: translateY(-4px);
}

.portfolio-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
}

.gradient-1 {
    background: linear-gradient(135deg, #ff6a07, #c2410c);
}

.gradient-2 {
    background: linear-gradient(135deg, #8b5cf6, #ff6a07);
}

.gradient-3 {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--cpanel-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.portfolio-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.portfolio-link {
    color: var(--cpanel-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-link {
    color: var(--cpanel-primary);
}

/* Depoimentos */
.depoimento-card .stars {
    color: #ffc107;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.depoimento-text {
    color: var(--cpanel-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--cpanel-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    color: var(--cpanel-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    color: var(--cpanel-muted);
    font-size: 0.85rem;
}

/* Planos */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plano-card {
    position: relative;
    text-align: center;
}

.plano-card.popular {
    border-color: var(--brand-primary);
    background: linear-gradient(180deg, var(--cpanel-card) 0%, rgba(255, 106, 7, 0.08) 100%);
}

.plano-card.popular:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 12px 40px rgba(255, 106, 7, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 106, 7, 0.4);
}

.plano-card h3 {
    margin-bottom: 8px;
}

.plano-price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cpanel-white) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.plano-card.popular .plano-price {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plano-price::before {
    content: 'R$';
    font-size: 1.5rem;
    font-weight: 600;
}

.plano-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--cpanel-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--cpanel-border);
}

.plano-card.popular .plano-features li {
    color: var(--cpanel-text);
}

.plano-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--brand-primary);
    font-weight: 700;
}

.plano-card.popular .check {
    color: var(--brand-primary-light);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--cpanel-card);
    border: 1px solid var(--cpanel-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    color: var(--cpanel-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    color: var(--cpanel-muted);
    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;
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--cpanel-muted);
}

/* Contato */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contato-info h2 {
    margin-bottom: 16px;
}

.contato-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contato-icon {
    width: 52px;
    height: 52px;
    background: var(--cpanel-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpanel-primary);
}

.contato-label {
    color: var(--cpanel-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contato-value {
    color: var(--cpanel-white);
    font-weight: 500;
}

/* Form */
.form-card {
    padding: 40px;
}

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

.form-group label {
    display: block;
    color: var(--cpanel-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--cpanel-sidebar);
    border: 1px solid var(--cpanel-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--cpanel-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cpanel-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cpanel-muted);
}

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

/* Footer */
.footer {
    background: var(--cpanel-darker);
    border-top: 1px solid var(--cpanel-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--cpanel-muted);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--cpanel-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cpanel-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cpanel-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--cpanel-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpanel-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cpanel-sidebar);
    color: var(--cpanel-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--cpanel-border);
    color: var(--cpanel-muted);
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--cpanel-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: transform 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cpanel-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--cpanel-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cpanel-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-text {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .beneficios-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* OTIMIZAÇÕES MOBILE */
@media (max-width: 768px) {
    /* Esconder partículas no mobile (performance) */
    #particle-canvas {
        display: none !important;
    }
    
    /* Mostrar cursor padrão no mobile */
    body, a, button {
        cursor: auto !important;
    }
    
    /* Touch targets maiores */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    /* Espaçamento maior entre elementos tocáveis */
    .nav-links a, .footer-links a {
        padding: 12px 0;
    }
    
    /* Fontes ajustadas */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    /* Hero mais compacto */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    /* Cards com touch melhor */
    .card, .plano-card {
        padding: 20px;
    }
    
    /* Menu mobile mais rápido */
    .mobile-menu {
        transition: all 0.2s ease;
    }
    
    /* Planos empilhados com espaçamento */
    .planos-grid {
        gap: 32px;
    }
    
    /* Formulário otimizado para touch */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 16px;
    }
    
    /* WhatsApp button mais acessível */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    /* Animações mais rápidas no mobile */
    .card {
        transition: all 0.3s ease;
    }
    
    /* Stats em linha no mobile */
    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat {
        flex: 1;
        min-width: 100px;
    }
}
