/* ==========================================================================
   MOBILE OPTIMIZATIONS - Versão Mobile Premium
   Sistema responsivo mobile-first com foco em conversão
   ========================================================================== */

/* Mobile-First Variables */
:root {
  /* Mobile Spacing System */
  --mobile-section-padding: 60px 0;
  --mobile-card-padding: 24px 16px;
  --mobile-gap-xs: 8px;
  --mobile-gap-sm: 12px;
  --mobile-gap-md: 16px;
  --mobile-gap-lg: 24px;
  --mobile-gap-xl: 32px;
  
  /* Mobile Typography Scale */
  --mobile-font-xs: 0.7rem;
  --mobile-font-sm: 0.8rem;
  --mobile-font-base: 0.9rem;
  --mobile-font-lg: 1rem;
  --mobile-font-xl: 1.125rem;
  --mobile-font-2xl: 1.25rem;
  --mobile-font-3xl: 1.5rem;
  --mobile-font-4xl: 1.875rem;
  --mobile-font-5xl: 2.25rem;
  
  /* Touch Targets */
  --touch-target-min: 44px;
  --touch-padding: 12px 16px;
  
  /* Safe Areas */
  --safe-area-top: env(safe-area-inset-top);
  --safe-area-bottom: env(safe-area-inset-bottom);
  --safe-area-left: env(safe-area-inset-left);
  --safe-area-right: env(safe-area-inset-right);
}

/* Skip Link para Acessibilidade */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-orange);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  font-size: var(--mobile-font-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid white;
}

/* ==========================================================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) and (min-width: 769px) {
  :root {
    --section-padding: 80px 0;
    --card-radius: 18px;
  }
  
  .container {
    max-width: 768px;
    padding: 0 24px;
  }
  
  /* Hero tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .profile-image {
    width: 240px;
    height: 240px;
  }
  
  /* Benefits tablet */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* Tech grid tablet */
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* Workflow tablet */
  .workflow-diagram {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .workflow-step {
    min-width: 180px;
  }
}

/* ==========================================================================
   MOBILE PRINCIPAL (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Reset Typography Mobile */
  :root {
    --font-size-6xl: var(--mobile-font-5xl);
    --font-size-5xl: var(--mobile-font-4xl);
    --font-size-4xl: var(--mobile-font-3xl);
    --font-size-3xl: var(--mobile-font-2xl);
    --font-size-2xl: var(--mobile-font-xl);
    --font-size-xl: var(--mobile-font-lg);
    --font-size-lg: var(--mobile-font-base);
    --font-size-base: var(--mobile-font-sm);
    --font-size-sm: var(--mobile-font-xs);
    --section-padding: var(--mobile-section-padding);
  }
  
  /* Container Mobile */
  .container {
    padding: 0 16px;
    max-width: 100%;
  }
  
  /* ==========================================================================
     NAVIGATION MOBILE
     ========================================================================== */
  
  .nav-container {
    height: 70px;
    padding: 0 16px;
    padding-top: var(--safe-area-top);
  }
  
  /* Remove menu hamburger e mostra botão Contato */
  .nav-links {
    display: none !important;
  }
  
  .nav-toggle {
    display: none !important;
  }
  
  .contato-header-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    background: var(--accent-orange);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    white-space: nowrap;
  }
  
  .contato-header-mobile:hover,
  .contato-header-mobile:active {
    background: #FF3366;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
  }
  
  /* ==========================================================================
     HERO SECTION MOBILE
     ========================================================================== */
  
  .hero {
    padding: calc(90px + var(--safe-area-top)) 0 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }
  
  .hero-container {
    gap: var(--mobile-gap-lg);
    text-align: center;
  }
  
  .hero-visual-top {
    order: -1;
    margin-bottom: var(--mobile-gap-lg);
  }
  
  .hero-badge {
    margin-bottom: var(--mobile-gap-md);
    padding: 8px 16px;
    font-size: var(--mobile-font-xs);
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: var(--mobile-font-4xl);
    line-height: 1.1;
    margin-bottom: var(--mobile-gap-md);
    letter-spacing: -0.5px;
  }
  
  .hero-subtitle {
    font-size: var(--mobile-font-base);
    margin-bottom: var(--mobile-gap-xl);
    line-height: 1.5;
  }
  
  /* Hero Stats Mobile Compacto */
  .hero-stats {
    display: flex;
    justify-content: space-around;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: var(--mobile-gap-sm) var(--mobile-gap-xs);
    margin-bottom: var(--mobile-gap-xl);
    gap: var(--mobile-gap-xs);
    height: 45px;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stat-item {
    text-align: center;
    flex: 1;
  }
  
  .stat-number {
    font-size: var(--mobile-font-sm);
    line-height: 1.1;
  }
  
  .stat-label {
    font-size: 9px;
    margin-top: 2px;
    line-height: 1;
  }
  
  .stat-divider {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
    align-self: center;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--mobile-gap-sm);
    margin-bottom: var(--mobile-gap-xl);
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: var(--mobile-font-base);
    min-height: var(--touch-target-min);
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
  }
  
  .profile-image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  /* Círculo animado mobile */
  .animated-circle {
    top: -8px;
    left: -8px;
    width: 176px;
    height: 176px;
    border-width: 2px;
  }
  
  .floating-badge {
    display: block !important;
    min-width: 80px;
    padding: 6px 10px;
    border-radius: 8px;
  }

  .floating-badge.badge-1 {
    top: -30px;
    left: -45px;
  }

  .floating-badge.badge-2 {
    top: 30px;
    right: -50px;
  }

  .floating-badge.badge-3 {
    bottom: -25px;
    left: -35px;
  }

  .badge-number {
    font-size: var(--mobile-font-xs);
  }

  .badge-text {
    font-size: 8px;
  }
  
  /* ==========================================================================
     SECTIONS MOBILE
     ========================================================================== */
  
  section {
    padding: var(--mobile-section-padding);
  }
  
  .section-header {
    margin-bottom: var(--mobile-gap-lg);
    text-align: center;
  }
  
  .section-title {
    font-size: var(--mobile-font-3xl);
    margin-bottom: var(--mobile-gap-sm);
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: var(--mobile-font-base);
    line-height: 1.5;
  }
  
  /* ==========================================================================
     BENEFITS MOBILE
     ========================================================================== */
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--mobile-gap-sm);
  }
  
  .benefit-card {
    padding: var(--mobile-card-padding);
    border-radius: 16px;
    text-align: center;
  }
  
  .card-icon {
    font-size: var(--mobile-font-3xl);
    margin-bottom: var(--mobile-gap-sm);
  }
  
  .card-title {
    font-size: var(--mobile-font-xl);
    margin-bottom: var(--mobile-gap-xs);
  }
  
  .card-description {
    font-size: var(--mobile-font-sm);
    line-height: 1.5;
  }
  
  /* ==========================================================================
     WORKFLOW MOBILE
     ========================================================================== */
  
  .workflow-diagram {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-gap-md);
    align-items: center;
    padding: 0 var(--mobile-gap-md);
  }
  
  .workflow-step {
    padding: var(--mobile-gap-md) var(--mobile-gap-sm);
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    min-height: var(--touch-target-min);
  }
  
  .step-icon {
    font-size: var(--mobile-font-2xl);
    margin-bottom: var(--mobile-gap-xs);
  }
  
  .step-title {
    font-size: var(--mobile-font-base);
    margin-bottom: 4px;
  }
  
  .step-description {
    font-size: var(--mobile-font-xs);
  }
  
  .workflow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--mobile-gap-xs);
    width: 100%;
    max-width: 40px;
  }
  
  .connector-line {
    width: 2px;
    height: 24px;
    background: var(--accent-gradient);
  }
  
  .connector-arrow {
    font-size: var(--mobile-font-base);
    color: var(--accent-orange);
    transform: rotate(90deg);
  }
  
  /* ==========================================================================
     TECHNOLOGIES MOBILE
     ========================================================================== */
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--mobile-gap-sm);
    max-width: 320px;
    margin: 0 auto;
  }
  
  .tech-item {
    padding: var(--mobile-gap-md) var(--mobile-gap-xs);
    border-radius: 12px;
    text-align: center;
    min-height: var(--touch-target-min);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .tech-icon {
    font-size: var(--mobile-font-2xl);
    margin-bottom: var(--mobile-gap-xs);
  }
  
  .tech-name {
    font-size: var(--mobile-font-xs);
    font-weight: 600;
  }
  
  /* ==========================================================================
     FEATURES MOBILE
     ========================================================================== */
  
  .features-grid {
    gap: var(--mobile-gap-xl);
  }
  
  .feature-block {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-gap-lg);
    text-align: center;
  }
  
  .feature-block.reverse .feature-visual,
  .feature-block.reverse .feature-content {
    order: initial;
  }
  
  .feature-title {
    font-size: var(--mobile-font-3xl);
    margin-bottom: var(--mobile-gap-sm);
    line-height: 1.2;
  }
  
  .feature-description {
    font-size: var(--mobile-font-base);
    margin-bottom: var(--mobile-gap-md);
    line-height: 1.5;
  }
  
  .feature-list li {
    margin-bottom: var(--mobile-gap-xs);
    font-size: var(--mobile-font-sm);
  }
  
  .laptop-mockup {
    width: 100%;
    max-width: 280px;
    height: 180px;
    margin: 0 auto;
  }
  
  .performance-chart,
  .seo-rankings {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* ==========================================================================
     SOCIAL PROOF MOBILE
     ========================================================================== */
  
  .testimonials-carousel {
    max-width: 100%;
    margin: 0 auto var(--mobile-gap-xl);
  }
  
  .testimonial-item {
    padding: var(--mobile-card-padding);
    border-radius: 16px;
  }
  
  .testimonial-text {
    font-size: var(--mobile-font-base);
    margin-bottom: var(--mobile-gap-md);
    line-height: 1.6;
  }
  
  .testimonial-author {
    gap: var(--mobile-gap-sm);
  }
  
  .author-avatar img {
    width: 40px;
    height: 40px;
  }
  
  .author-name {
    font-size: var(--mobile-font-base);
  }
  
  .author-title {
    font-size: var(--mobile-font-xs);
  }
  
  .client-logos {
    gap: var(--mobile-gap-md);
    margin-bottom: var(--mobile-gap-xl);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo-item img {
    height: 32px;
  }
  
  .success-metrics {
    flex-direction: column;
    gap: var(--mobile-gap-md);
    align-items: center;
  }
  
  .metric-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: var(--mobile-gap-md);
    width: 100%;
    max-width: 200px;
  }
  
  .metric-number {
    font-size: var(--mobile-font-2xl);
  }
  
  .metric-label {
    font-size: var(--mobile-font-sm);
  }
  
  /* ==========================================================================
     CTA FINAL MOBILE
     ========================================================================== */
  
  .cta-card {
    padding: var(--mobile-gap-xl) var(--mobile-gap-md);
    margin: 0 var(--mobile-gap-md);
    border-radius: 16px;
  }
  
  .cta-title {
    font-size: var(--mobile-font-3xl);
    margin-bottom: var(--mobile-gap-sm);
    line-height: 1.2;
  }
  
  .cta-description {
    font-size: var(--mobile-font-base);
    margin-bottom: var(--mobile-gap-lg);
    line-height: 1.6;
  }
  
  .cta-form {
    gap: var(--mobile-gap-sm);
    margin-bottom: var(--mobile-gap-lg);
  }
  
  .form-input {
    padding: 16px 20px;
    font-size: var(--mobile-font-base);
    border-radius: 12px;
    min-height: var(--touch-target-min);
  }
  
  .btn-submit {
    padding: 18px 24px;
    font-size: var(--mobile-font-base);
    min-height: var(--touch-target-min);
    width: 100%;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
  }
  
  .cta-alternative {
    padding-top: var(--mobile-gap-md);
    margin-top: var(--mobile-gap-md);
  }
  
  .whatsapp-link {
    font-size: var(--mobile-font-base);
    padding: var(--touch-padding);
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(0, 212, 170, 0.2);
  }
  
  .cta-benefits {
    flex-direction: column;
    gap: var(--mobile-gap-sm);
    margin-top: var(--mobile-gap-lg);
  }
  
  .benefit-item {
    font-size: var(--mobile-font-sm);
    justify-content: center;
  }
  
  /* ==========================================================================
     FOOTER MOBILE
     ========================================================================== */
  
  .footer {
    padding: var(--mobile-gap-xl) 0 calc(var(--mobile-gap-md) + var(--safe-area-bottom));
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--mobile-gap-lg);
    text-align: center;
    margin-bottom: var(--mobile-gap-lg);
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: var(--mobile-gap-md);
    justify-content: center;
  }
  
  .footer-links a {
    padding: var(--touch-padding);
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
  }
  
  .footer-social {
    justify-content: center;
    gap: var(--mobile-gap-sm);
  }
  
  .footer-social a {
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
  }
  
  /* ==========================================================================
     FLOATING ELEMENTS MOBILE
     ========================================================================== */
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: calc(24px + var(--safe-area-bottom));
    right: calc(24px + var(--safe-area-right));
    font-size: var(--mobile-font-xl);
    -webkit-tap-highlight-color: rgba(37, 211, 102, 0.2);
  }
  
  .back-to-top {
    width: 48px !important;
    height: 48px !important;
    bottom: calc(90px + var(--safe-area-bottom)) !important;
    right: calc(24px + var(--safe-area-right)) !important;
    font-size: 16px !important;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
  }
}

/* ==========================================================================
   MOBILE ULTRA-COMPACTO (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  :root {
    --mobile-font-4xl: 1.75rem;
    --mobile-font-3xl: 1.375rem;
    --mobile-font-2xl: 1.125rem;
  }
  
  .container {
    padding: 0 12px;
  }
  
  /* Hero ultra-compacto */
  .hero {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: var(--mobile-font-4xl);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--mobile-gap-sm);
    padding: var(--mobile-gap-md);
  }
  
  .stat-item {
    padding: var(--mobile-gap-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .profile-image {
    width: 140px;
    height: 140px;
  }
  
  /* ==========================================================================
     TECHNOLOGIES MOBILE - SLIDER
     ========================================================================== */
  
  /* Esconder grid e slider desktop no mobile */
  .tech-grid,
  .tech-slider-desktop {
    display: none;
  }
  
  /* Caso o slider desktop seja mostrado no mobile, manter largura total */
  .tech-slider-desktop {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: var(--mobile-gap-lg) 0;
  }
  
  /* Criar slider de tecnologias */
  .tech-slider-mobile {
    display: block;
    overflow: hidden;
    margin: var(--mobile-gap-lg) 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .tech-slider-track {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-gap-sm);
  }
  
  .tech-slider-row {
    display: flex;
    animation: slideRight 25s linear infinite;
    gap: var(--mobile-gap-md);
    white-space: nowrap;
    width: max-content;
  }
  
  .tech-slider-row:nth-child(2) {
    animation: slideLeft 30s linear infinite;
    animation-delay: -8s;
  }
  
  .tech-slider-row:nth-child(3) {
    animation: slideRight 35s linear infinite;
    animation-delay: -15s;
  }
  
  .tech-item-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: var(--mobile-font-xs);
    color: var(--text-secondary);
    min-width: 100px;
    justify-content: center;
  }
  
  .tech-item-mobile i {
    font-size: 14px;
    color: var(--accent-orange);
  }
  
  @keyframes slideRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes slideLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  
  /* Cards ainda mais compactos */
  .benefit-card,
  .workflow-step,
  .tech-item {
    padding: var(--mobile-gap-md) var(--mobile-gap-sm);
  }
  
  .cta-card {
    padding: var(--mobile-gap-lg) var(--mobile-gap-sm);
    margin: 0 var(--mobile-gap-sm);
  }
  
  /* Botões floating menores */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: calc(20px + var(--safe-area-bottom));
    right: calc(20px + var(--safe-area-right));
    font-size: var(--mobile-font-lg);
  }
}

/* ==========================================================================
   MOBILE LANDSCAPE OPTIMIZATION
   ========================================================================== */

@media (max-width: 926px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding: calc(60px + var(--safe-area-top)) 0 40px;
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr 250px;
    gap: var(--mobile-gap-xl);
    text-align: left;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .profile-image {
    width: 140px;
    height: 140px;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .stat-divider {
    display: block;
    width: 1px;
    height: 32px;
  }
  
  section {
    padding: 40px 0;
  }
}

/* ==========================================================================
   HIGH DPI DISPLAYS
   ========================================================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .profile-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Focus indicators maiores em mobile */
@media (max-width: 768px) {
  *:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
  }
  
  /* Contraste melhorado */
  .card-description,
  .testimonial-text,
  .section-subtitle {
    color: #B8B8D1;
  }
  
  /* Área de toque visual */
  .btn-primary:active,
  .btn-secondary:active,
  .nav-link:active,
  .whatsapp-float:active {
    transform: scale(0.95);
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 768px) {
  /* Redução de animações pesadas */
  .hero-particles,
  .morphing-shape,
  .lightning-particles {
    display: none;
  }
  
  /* Simplificação de efeitos */
  .benefit-card:hover,
  .tech-item:hover,
  .workflow-step:hover {
    transform: translateY(-2px);
  }
  
  /* GPU acceleration otimizada */
  .profile-image,
  .btn-primary,
  .whatsapp-float {
    will-change: transform;
  }
}

/* ==========================================================================
   MODO SIMPLIFICADO (Double Tap para ativar)
   ========================================================================== */

.simplified-mode {
  /* Remove decorações */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
}

.simplified-mode .hero-particles,
.simplified-mode .lightning-bolt,
.simplified-mode .floating-badge,
.simplified-mode .morphing-shape {
  display: none !important;
}

.simplified-mode .benefit-card,
.simplified-mode .workflow-step,
.simplified-mode .tech-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .nav-premium,
  .whatsapp-float,
  .hero-particles,
  .lightning-bolt {
    display: none !important;
  }
  
  .hero,
  section {
    page-break-inside: avoid;
  }
}
