/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* ===== COMPONENTES UTILITÁRIOS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* ===== HEADER TOP REMOVIDO ===== */
.header-top {
    display: none;
}

/* ===== NAVBAR PRINCIPAL ===== */
.navbar {
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Logo original PNG - Desktop */
.logo-pixcel {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-pixcel:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Fallback se logo não carregar */
.logo-pixcel:not([src]),
.logo-pixcel[src=""],
.logo-pixcel[alt]:not([src]) {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50"><rect x="5" y="10" width="25" height="35" rx="4" fill="%23000"/><rect x="8" y="15" width="19" height="22" rx="2" fill="%23fff"/><circle cx="17.5" cy="42" r="2" fill="%23fff"/><text x="40" y="25" font-family="Inter" font-size="12" font-weight="900" fill="%23007bff" letter-spacing="1px">PIXCEL</text><text x="40" y="40" font-family="Inter" font-size="12" font-weight="900" fill="%23007bff" letter-spacing="1px">CELULAR</text></svg>') no-repeat left center;
    background-size: contain;
    width: 140px;
    height: 40px;
    display: inline-block;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Ações da navbar alinhadas */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links-navbar {
    display: flex;
    gap: 0.5rem;
}

.social-link-small {
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link-small:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Informações na navbar */
.navbar-info {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #6c757d;
    margin-right: 1rem;
}

.navbar-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.navbar-info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .navbar-info {
        display: flex;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-info {
        display: none;
    }
    
    .navbar-actions {
        gap: 0.75rem;
    }
    
    .social-links-navbar {
        gap: 0.375rem;
    }
    
    .social-link-small {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ===== BOTÕES ===== */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION MINIMALISTA ===== */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Elementos removidos para minimalismo */

/* ===== HERO CONTENT PREMIUM ===== */
.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

/* Badge minimalista */
.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine-wave 3s infinite;
}

.hero-badge i {
    color: #FFD700;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: icon-pulse 2s ease-in-out infinite;
}

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

@keyframes shine-wave {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Título elegante */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1); }
}

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

/* Subtítulo limpo */
.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Serviços minimalistas */
.hero-services {
    margin: 2rem 0;
}

.service-simple {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
}

.service-simple:last-child {
    border-bottom: none;
}

.service-simple strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Benefits limpos */
.hero-benefits {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid #f1f3f4;
}

.benefit {
    color: #28a745;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.benefit::before {
    content: '✓';
    color: #28a745;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Banner de urgência */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: urgency-pulse 3s ease-in-out infinite;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: icon-shake 2s ease-in-out infinite;
}

.urgency-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.urgency-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5); }
}

@keyframes icon-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Benefits limpos */
.hero-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #495057;
    line-height: 1.5;
}

.benefit-item strong {
    color: #1a1a2e;
}

/* Ações limpas */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    color: var(--white);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.4),
        0 4px 15px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btn-shine 2s infinite;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.5),
        0 8px 25px rgba(37, 211, 102, 0.3);
}

@keyframes btn-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Showcase principal */
.main-showcase {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-showcase:hover .showcase-image {
    transform: scale(1.02);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.8), rgba(220, 53, 69, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-showcase:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Marcas minimalistas */
.brands-simple {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.brands-text {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-location {
    margin-top: 2rem;
}

.location-link {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--primary-color);
    background: rgba(0, 123, 255, 0.08);
    transform: translateX(5px);
}

.location-link i:first-child {
    color: #ff6b6b;
}

.location-link i:last-child {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.7;
}

.address-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.address-link:hover {
    color: var(--primary-color) !important;
}

.address-link i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== HERO VISUAL COM FOTOS REAIS ===== */
.hero-visual {
    position: relative;
}

/* Before/After Showcase */
.before-after-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.showcase-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.showcase-header {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.broken-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.fixed-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.phone-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.broken-phone-img,
.fixed-phone-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .broken-phone-img,
.showcase-item:hover .fixed-phone-img {
    transform: scale(1.05);
}

.problem-overlay,
.success-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.problem-overlay {
    background: linear-gradient(transparent, rgba(220, 53, 69, 0.9));
}

.success-overlay {
    background: linear-gradient(transparent, rgba(40, 167, 69, 0.9));
}

/* Seta de transformação */
.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow-container {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    animation: arrow-pulse 2s ease-in-out infinite;
}

.arrow-container i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.arrow-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
}

@keyframes arrow-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Cards de garantias */
.guarantee-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.highlight-content strong {
    display: block;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.highlight-content span {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.main-image {
    position: relative;
    margin-bottom: 2rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.stats-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    flex: 1;
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.service-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.service-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-badge i {
    font-size: 1rem;
}

/* ===== BRANDS SUPPORTED ===== */
.brands-supported {
    margin-top: 2rem;
}

.brands-title {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.brand-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
}

.brand-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-badge.apple {
    border-left: 3px solid #000;
    color: #333;
}

.brand-badge.apple:hover {
    background: #f8f8f8;
}

.brand-badge.samsung {
    border-left: 3px solid #1f4788;
    color: #1f4788;
}

.brand-badge.samsung:hover {
    background: #f0f4ff;
}

.brand-badge.motorola {
    border-left: 3px solid #e4002b;
    color: #e4002b;
}

.brand-badge.motorola:hover {
    background: #fff0f3;
}

.brand-badge.xiaomi {
    border-left: 3px solid #ff6900;
    color: #ff6900;
}

.brand-badge.xiaomi:hover {
    background: #fff5f0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.brand-logo svg {
    width: 100%;
    height: auto;
    max-height: 24px;
}

.brand-badge.apple .brand-logo svg {
    color: #000;
}

.brand-badge.samsung .brand-logo svg {
    color: #1f4788;
}

.brand-badge.motorola .brand-logo svg {
    color: #e4002b;
}

.brand-badge.xiaomi .brand-logo svg {
    color: #ff6900;
}

/* Elementos problemáticos removidos */

/* Órbitas problemáticas removidas */

/* Elementos flutuantes removidos para limpeza */

/* ===== HERO GALLERY ===== */
.hero-gallery {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-service-image {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-photo:not([src]),
.service-photo[src=""] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-photo:not([src])::before,
.service-photo[src=""]::before {
    content: "📱";
    font-size: 4rem;
    color: white;
}

.main-service-image:hover .service-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.8), rgba(124, 58, 237, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-service-image:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.main-service-image:hover .overlay-badge {
    transform: translateY(0);
}

.service-thumbnails {
    display: flex;
    gap: 1rem;
    height: 120px;
}

.thumb-item {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
}

.thumb-item:nth-child(1) { animation-delay: 0.2s; }
.thumb-item:nth-child(2) { animation-delay: 0.4s; }
.thumb-item:nth-child(3) { animation-delay: 0.6s; }

.thumb-item:hover {
    transform: translateY(-5px);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.thumb-item img:not([src]),
.thumb-item img[src=""] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-item:nth-child(1) img:not([src])::before,
.thumb-item:nth-child(1) img[src=""]::before {
    content: "⚙️";
    font-size: 2rem;
}

.thumb-item:nth-child(2) img:not([src])::before,
.thumb-item:nth-child(2) img[src=""]::before {
    content: "📱";
    font-size: 2rem;
}

.thumb-item:nth-child(3) img:not([src])::before,
.thumb-item:nth-child(3) img[src=""]::before {
    content: "🔋";
    font-size: 2rem;
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.75rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVICES SECTION ULTRA MODERNA ===== */
.services-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('https://images.unsplash.com/photo-1574944985070-8f3ebc6b79d2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(40, 167, 69, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 123, 255, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6, var(--primary-dark));
    background-size: 200% 200%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: icon-gradient 6s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(0, 123, 255, 0.3),
        0 4px 15px rgba(0, 123, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00D4FF, #FF6B6B, #4ECDC4);
    border-radius: 27px;
    z-index: -1;
    animation: border-glow 4s ease-in-out infinite;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: icon-float 3s ease-in-out infinite;
}

/* Ícones Flaticon otimizados */
.service-icon i[class*="fi-br"] {
    font-size: 2.2rem;
    color: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: icon-float 3s ease-in-out infinite;
}

/* Fallback para ícones que não carregam */
.service-icon i.fas,
.service-icon i.fab {
    font-size: 2.2rem;
    color: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: icon-float 3s ease-in-out infinite;
}

/* Todos os ícones brancos e centralizados */
.service-icon i {
    color: #ffffff !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)) !important;
    animation: icon-float 3s ease-in-out infinite;
    font-size: 2.2rem !important;
    text-align: center;
    display: block;
    width: 100%;
}

@keyframes icon-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes border-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
}

.about-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== ABOUT GALLERY LIMPA ===== */
.about-gallery {
    position: relative;
}

.gallery-main {
    margin-bottom: 2rem;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.75rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.google-rating {
    margin: 2rem 0;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1.25rem;
}

.rating-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info strong {
    font-weight: 600;
    color: var(--dark-color);
}

.review-stars {
    margin-top: 0.5rem;
}

.review-stars i {
    font-size: 0.875rem;
}

.review-text {
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ===== CONTACT SECTION PREMIUM ===== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 0.2rem rgba(0, 123, 255, 0.15),
        0 4px 15px rgba(0, 123, 255, 0.1);
    background: var(--white);
    transform: translateY(-2px);
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(0, 123, 255, 0.3);
    background: var(--white);
}

/* Estados de validação */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.02);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.02);
}

/* Ações do formulário alinhadas */
.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.form-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile form actions */
@media (max-width: 768px) {
    .form-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-btn {
        width: 100%;
        padding: 1.25rem;
        font-size: 1rem;
        border-radius: 16px;
    }
}

/* ===== FOOTER CAPRICHADO ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.5), transparent);
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Logo do Footer */
/* Logo footer - Desktop e Mobile */
.footer-logo {
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

/* Garantir visibilidade no desktop */
@media (min-width: 769px) {
    .footer-logo {
        text-align: left;
    }
    
    .footer-logo-img {
        height: 65px;
        max-width: 240px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
        filter: none !important;
        margin: 0 auto;
    }
}

.footer-logo-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Fallback se logo não carregar no footer */
.footer-logo-img:not([src]),
.footer-logo-img[src=""],
.footer-logo-img[alt]:not([src]) {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50"><rect x="5" y="10" width="25" height="35" rx="4" fill="white"/><rect x="8" y="15" width="19" height="22" rx="2" fill="%23333"/><circle cx="17.5" cy="42" r="2" fill="white"/><text x="40" y="25" font-family="Inter" font-size="12" font-weight="900" fill="white" letter-spacing="1px">PIXCEL</text><text x="40" y="40" font-family="Inter" font-size="12" font-weight="900" fill="white" letter-spacing="1px">CELULAR</text></svg>') no-repeat center;
    background-size: contain;
    width: 160px;
    height: 60px;
    display: inline-block;
    filter: none;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.highlight-item i {
    color: #FFD700;
    font-size: 1rem;
    width: 20px;
}

/* Títulos das seções */
.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-title i {
    color: var(--primary-color);
}

/* Contato */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Serviços no Footer */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-category h6 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.service-list a::before {
    content: '▶';
    color: var(--primary-color);
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.service-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.service-list a:hover::before {
    transform: translateX(3px);
}

/* CTA do Footer */
.footer-cta {
    margin-top: 1.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.footer-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright strong {
    color: var(--white);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1.5rem 0;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

/* ===== 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;
    font-size: 1.75rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}

/* ===== MOBILE ULTRA CAPRICHADO ===== */
@media (max-width: 768px) {
    /* Container mobile otimizado */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    /* Header removido em todas as versões */
    .header-top {
        display: none;
    }
    
    /* Navbar mobile clean */
    .navbar {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    }
    
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Logo mobile otimizada */
    .logo-pixcel {
        height: 32px;
        max-width: calc(100vw - 120px);
    }
    
    /* Menu hamburger clean e moderno */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(0, 123, 255, 0.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .hamburger-menu {
        width: 24px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .line {
        width: 100%;
        height: 2px;
        background: #1a1a2e;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Animação X moderna */
    .navbar-toggler[aria-expanded="true"] .line1 {
        transform: translateY(8px) rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .line2 {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .navbar-toggler[aria-expanded="true"] .line3 {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Menu mobile ultra refinado */
    .navbar-nav {
        margin-top: 1.5rem;
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
        border-radius: 20px;
        backdrop-filter: blur(30px);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.06),
            0 4px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
    }
    
    .navbar-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.2), transparent);
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.25rem;
        margin: 0.25rem 0;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        color: #1a1a2e;
        font-size: 1rem;
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-nav .nav-link:hover::before {
        left: 100%;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0.04));
        color: var(--primary-color);
        transform: translateX(8px);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
    }
    
    .navbar .btn {
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 700;
        font-size: 1rem;
        width: 100%;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border: none;
        color: var(--white);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
    }
    
    .navbar .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #128c7e, #25d366);
    }
    
    /* Hero mobile ultra minimalista */
    .hero-section {
        background: #ffffff;
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-badge {
        background: var(--primary-color);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        font-weight: 700;
        color: #1a1a2e;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: #6c757d;
    }
    
    .hero-subtitle strong {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .feature-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.75rem 1rem;
        border-radius: 25px;
        backdrop-filter: blur(10px);
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    /* Hero mobile limpo */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Serviços mobile limpos */
    .hero-services {
        margin: 1.5rem 0;
    }
    
    .service-simple {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid #e9ecef;
        color: #495057;
    }
    
    .service-simple strong {
        color: #1a1a2e;
        font-weight: 600;
    }
    
    /* Benefits mobile limpos */
    .hero-benefits {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 1rem 0;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }
    
    .benefit {
        font-size: 0.85rem;
        color: #28a745;
    }
    
    /* Marcas mobile limpas */
    .brands-simple {
        margin-top: 1.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .brands-text {
        font-size: 0.8rem;
        color: #6c757d;
    }
    
    /* Visual mobile caprichado */
    .hero-visual {
        margin-top: 2.5rem;
    }
    
    .main-showcase {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
    }
    
    .showcase-image {
        height: 280px;
    }
    
    .showcase-overlay {
        background: linear-gradient(45deg, rgba(220, 53, 69, 0.85), rgba(255, 107, 107, 0.75));
    }
    
    .overlay-content h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .overlay-content p {
        font-size: 1rem;
        font-weight: 500;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin: 2rem 0;
    }
    
    .hero-location {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Visual mobile */
    .hero-visual {
        margin-top: 2rem;
    }
    
    .stats-cards {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .service-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .brand-badges {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .brand-badge {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    /* ===== FOOTER MOBILE MINIMALISTA ===== */
    .footer {
        background: #ffffff !important;
        color: #1a1a2e !important;
        border-top: 1px solid #e9ecef;
    }
    
    .footer::before {
        display: none;
    }
    
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    /* Ocultar colunas complexas no mobile */
    .footer .col-lg-4:nth-child(1),
    .footer .col-lg-4:nth-child(3) {
        display: none;
    }
    
    /* Contato mobile minimalista */
    .footer .col-lg-4:nth-child(2) {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .footer-title {
        color: #1a1a2e !important;
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-align: center;
        justify-content: center;
        font-weight: 700;
    }
    
    .footer-title i {
        color: var(--primary-color);
    }
    
    .contact-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-item {
        background: var(--white) !important;
        border: 1px solid rgba(0, 123, 255, 0.1) !important;
        border-radius: 16px;
        padding: 1.5rem 1rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(0, 123, 255, 0.02) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), #0056b3);
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details strong {
        color: #1a1a2e !important;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        display: block;
    }
    
    .contact-details a,
    .contact-details span {
        color: #495057 !important;
        font-size: 0.85rem;
        line-height: 1.4;
        font-weight: 500;
    }
    
    .contact-details a:hover {
        color: var(--primary-color) !important;
        text-decoration: none;
    }
    
    /* Footer bottom refinado */
    .footer-bottom {
        background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 123, 255, 0.1);
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-copyright p {
        color: #495057 !important;
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }
    
    .footer-copyright strong {
        color: #1a1a2e !important;
        font-weight: 700;
    }
    
    .footer-social {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-text {
        color: #6c757d !important;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05)) !important;
        border: 1px solid rgba(0, 123, 255, 0.2) !important;
        color: var(--primary-color) !important;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    }
    
    .footer-links,
    .footer-note,
    .footer-divider {
        display: none;
    }
}

/* ===== FOOTER ULTRA MOBILE CLEAN ===== */
@media (max-width: 576px) {
    .footer-main {
        padding: 1.5rem 0 0.5rem;
    }
    
    /* Simplificar ainda mais */
    .contact-items {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-item {
        padding: 0.75rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        margin: 0;
        font-size: 0.9rem;
    }
    
    .contact-details {
        text-align: left;
        flex: 1;
    }
    
    .contact-details strong {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }
    
    .contact-details a,
    .contact-details span {
        font-size: 0.7rem;
    }
    
    /* Footer bottom ultra clean */
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer .col-lg-4,
    .footer .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .contact-items {
        max-width: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
    }
    
    .divider {
        display: inline;
    }
    
    /* Sections mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Services mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    /* Stats mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Workspace gallery mobile */
    .workspace-gallery {
        height: 350px;
        margin-top: 2rem;
    }
    
    .main-workspace {
        height: 200px;
    }
    
    .workspace-stats {
        top: 10px;
        right: 10px;
        gap: 0.5rem;
    }
    
    .stat-badge {
        padding: 0.5rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .tools-showcase {
        height: 120px;
    }
    
    .tool-overlay {
        font-size: 0.8rem;
        padding: 1rem 0.75rem 0.75rem;
    }
    
    /* Reviews mobile */
    .review-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Contact form mobile premium */
    .contact-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .contact-form {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        padding: 2.5rem 2rem;
        border-radius: 24px;
        margin: 0 0.75rem;
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.08),
            0 6px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .form-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 0.75rem;
    }
    
    .form-control,
    .form-select {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        border-radius: 16px;
        border: 2px solid #e9ecef;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }
    
    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 
            0 0 0 0.2rem rgba(0, 123, 255, 0.15),
            0 6px 20px rgba(0, 123, 255, 0.1);
        background: var(--white);
        transform: translateY(-3px);
    }
    
    .btn-lg {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
    }
    
    .btn-success:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
    }
    
    /* WhatsApp mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== MOBILE EXTRA SMALL ===== */
@media (max-width: 576px) {
    /* Ultra mobile optimizations */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navbar ultra mobile */
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Logo ultra mobile */
    .logo-pixcel {
        height: 28px;
        max-width: calc(100vw - 100px);
    }
    
    .hamburger-menu {
        width: 20px;
        height: 15px;
    }
    
    .line {
        height: 1.5px;
    }
    
    .navbar-toggler {
        width: 35px;
        height: 35px;
    }
    
    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Header ultra mobile */
    .header-top {
        padding: 0.5rem 0;
    }
    
    .contact-link {
        font-size: 1rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .schedule-info {
        font-size: 0.8rem;
    }
    
    .social-links .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Logo ultra mobile */
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-suffix {
        font-size: 0.85rem;
    }
    
    /* Hero ultra mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-gallery {
        height: 300px;
    }
    
    .main-service-image {
        height: 180px;
    }
    
    .service-thumbnails {
        height: 80px;
    }
    
    .thumb-label {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem 0.25rem;
    }
    
    /* Sections ultra mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Services ultra mobile */
    .service-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    /* Stats ultra mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Workspace ultra mobile */
    .workspace-gallery {
        height: 280px;
    }
    
    .main-workspace {
        height: 160px;
    }
    
    .workspace-stats {
        top: 8px;
        right: 8px;
        gap: 0.25rem;
    }
    
    .stat-badge {
        padding: 0.4rem 0.6rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .tools-showcase {
        height: 100px;
    }
    
    .tool-overlay {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    /* Reviews ultra mobile */
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-info strong {
        font-size: 0.95rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    /* Contact form ultra mobile */
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
        border-radius: 16px;
    }
    
    .form-control,
    .form-select {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* WhatsApp ultra mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Footer ultra mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer p,
    .footer li {
        font-size: 0.9rem;
    }
}

/* ===== MOBILE LANDSCAPE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .device-showcase {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* ===== TOUCH OPTIMIZATIONS ===== */
.touch-device .btn,
.touch-device .nav-link,
.touch-device .social-link,
.touch-device .contact-link {
    min-height: 44px;
    min-width: 44px;
}

.touch-device .form-control,
.touch-device .form-select {
    min-height: 50px;
}

/* ===== APP-LIKE INTERACTIONS ===== */
@media (max-width: 768px) {
    .service-card:active,
    .review-card:active,
    .btn:active {
        transform: scale(0.98);
    }
    
    .navbar-nav .nav-link:active {
        background: rgba(0, 123, 255, 0.2);
    }
    
    .whatsapp-float:active {
        transform: scale(0.95);
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animações com Intersection Observer */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE ===== */
.hero-section,
.services-section,
.about-section,
.reviews-section,
.contact-section {
    will-change: transform;
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
