/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 200px;  /* AQUI QUE EU POSSO AUMENTAR O ESPAÇO LATERAL ENTRE AS SEÇÕES*/
}

/* Header */
.header {
    background: transparent;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Header sobre seção escura (hero) */
.header.dark-section {
    background: transparent;
    backdrop-filter: blur(8px);
}

/* Header sobre seção clara */
.header.light-section {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 200px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.header.light-section .company-name {
    color: #333333;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb;
}

.header.light-section .nav-menu a {
    color: #333333;
}

.header.light-section .nav-menu a:hover {
    color: #1a1a1a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.header.light-section .nav-menu a::after {
    background: #1a1a1a;
}

.nav-menu a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.header.light-section .mobile-menu-toggle span {
    background: #333333;
}

/* Hero Section */
.hero {
    padding: 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%),
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100vw;
    box-sizing: border-box;
}

/* Elementos decorativos do hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(147, 51, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    animation: backgroundShift 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%),
        linear-gradient(90deg, transparent 40%, rgba(59, 130, 246, 0.02) 50%, transparent 60%);
    animation: shimmer 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Efeito de gradiente móvel adicional */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(59, 130, 246, 0.03) 90deg, 
            transparent 180deg, 
            rgba(147, 51, 234, 0.03) 270deg, 
            transparent 360deg);
    animation: rotateGradient 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Efeito de grade AutoCAD */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Grade horizontal - linhas finas */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 39px,
            rgba(255, 255, 255, 0.03) 39px,
            rgba(255, 255, 255, 0.03) 40px
        ),
        /* Grade vertical - linhas finas */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 39px,
            rgba(255, 255, 255, 0.03) 39px,
            rgba(255, 255, 255, 0.03) 40px
        ),
        /* Linhas principais horizontais - a cada 10 quadrados (40px * 10 = 400px) */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 399px,
            rgba(255, 255, 255, 0.05) 399px,
            rgba(255, 255, 255, 0.05) 400px
        ),
        /* Linhas principais verticais - a cada 10 quadrados (40px * 10 = 400px) */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 399px,
            rgba(255, 255, 255, 0.05) 399px,
            rgba(255, 255, 255, 0.05) 400px
        );
    pointer-events: none;
    z-index: 1;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.2; 
        transform: translateX(-10px);
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(10px);
    }
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.02) rotate(-1deg);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.08) rotate(0.5deg);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Elementos flutuantes decorativos - REMOVIDOS */
.floating-elements {
    display: none;
}

/* Elementos flutuantes removidos */

/* Todas as classes de elementos flutuantes foram removidas */




/* Animações de elementos flutuantes removidas */



.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 4;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.typing-text {
    color: #2563eb;
    font-weight: 800;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    max-width: none;
    box-sizing: border-box;
    z-index: 0;
}

.typing-wrap {
    display: inline-block;
    width: 350px; /* Largura aumentada para acomodar "LUCRATIVIDADE" */
    text-align: left;
    overflow: visible;
    white-space: nowrap;
    margin-top: 10px;
    vertical-align: top;
    position: relative;
}

.cursor {
    color: #2563eb;
    font-weight: bold;
    display: inline-block;
    margin-left: 2px;
    opacity: 1;
    transition: opacity 0.1s ease;
    animation: blink 1s infinite;
    position: relative;
    z-index: 1;
}



.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap; /* Não quebrar linha */
    justify-content: flex-start; /* Alinhado à esquerda no desktop */
    align-items: center;
}

.hero-buttons-secondary {
    display: flex;
    gap: 20px; /* Mesmo gap dos botões principais */
    margin-top: 15px; /* Espaçamento menor entre as linhas */
    flex-wrap: nowrap; /* Não quebrar linha */
    justify-content: flex-start; /* Alinhado à esquerda no desktop */
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    padding: 15px 30px;
    box-sizing: border-box;
}

.btn-outline:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
    border-color: white;
}

/* Botões do hero com tamanho fixo e simétrico */
.hero-buttons .btn,
.hero-buttons-secondary .btn {
    width: 200px;
    height: 50px;
    padding: 15px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0; /* Não permitir que encolham */
}

/* Slider no hero */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fixa para evitar mudanças de layout */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
}

.hero-slider img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 15px;
    opacity: 1;
    transition: all 0.6s ease;
    transform: scale(1);
    object-fit: contain;
    object-position: center;
}

.hero-slider img.is-fading {
    opacity: 0;
    transform: scale(0.95);
}

/* Controles do slider */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 14px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Responsividade do slider */
@media (max-width: 768px) {
    .slider-controls {
        bottom: 10px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    /* Responsividade dos botões do hero */
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-buttons-secondary {
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-buttons .btn,
    .hero-buttons-secondary .btn {
        width: 220px;
        height: 55px;
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .hero-buttons {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .hero-buttons-secondary {
        gap: 25px;
        margin-top: 25px;
    }
    
    /* Responsividade do layout do hero */
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-slider {
        order: -1; /* Coloca o slider primeiro */
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        height: 300px; /* Altura fixa para mobile */
        min-height: 300px;
    }
    
    .hero-content {
        order: 1; /* Coloca o conteúdo depois */
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Ajustar imagem do slider para mobile */
    .hero-slider img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    
    /* Garantir que os botões sejam visíveis */
    .hero-buttons,
    .hero-buttons-secondary {
        opacity: 1;
        visibility: visible;
        display: flex;
    }
}

@media (max-width: 480px) {
    .slider-controls {
        bottom: 5px;
        gap: 10px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
    
    .slider-btn i {
        font-size: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots {
        gap: 4px;
    }
    
    /* Responsividade dos botões do hero para mobile pequeno */
    .hero-buttons {
        flex-direction: column; /* Coluna para telas pequenas */
        align-items: center;
        gap: 12px; /* Gap vertical entre botões */
        justify-content: center;
    }
    
    .hero-buttons-secondary {
        flex-direction: column; /* Coluna para telas pequenas */
        align-items: center;
        gap: 12px; /* Gap vertical entre botões */
        margin-top: 10px;
        justify-content: center;
    }
    
    .hero-buttons .btn,
    .hero-buttons-secondary .btn {
        width: 200px; /* Largura padrão para coluna */
        height: 50px;
        font-size: 0.95rem;
        padding: 12px 18px;
        flex-shrink: 0; /* Não permitir que encolham */
    }
    
    .hero-buttons {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .hero-buttons-secondary {
        gap: 20px;
        margin-top: 20px;
    }
    
    /* Ajustes adicionais para mobile pequeno */
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .typing-wrap {
        width: 280px; /* Largura menor para mobile */
        overflow: visible;
        white-space: nowrap;
        margin-top: 15px;
        display: inline-block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Produtos Section */
.produtos {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.produto-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.produto-image {
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-content {
    padding: 40px;
}

.produto-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.produto-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.produto-content ul {
    list-style: none;
}

.produto-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #4b5563;
}

.produto-content li i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Serviços Section */
.servicos {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.servico-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servico-card:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.servico-icon i {
    font-size: 2rem;
    color: white;
}

.servico-card h3 {
    font-size: 1.2rem;
  font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.servico-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Reposição Section */
.reposicao {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f3f4 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
    position: relative !important;
}

.reposicao .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

.reposicao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

.reposicao-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reposicao-card:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.reposicao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.reposicao-card:hover .reposicao-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.reposicao-icon i {
    font-size: 2rem;
    color: white;
}

.reposicao-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.reposicao-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f3f4 0%, #f8f9fa 50%, #ffffff 100%);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
}

.sobre-text {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sobre-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}


.sobre-image img {
    max-width: 100%;
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Quem Somos Content dentro da seção Sobre */
.quem-somos-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.fundador-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fundador-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fundador-foto {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.fundador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fundador-foto::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fundador-card:hover .fundador-foto::before {
    opacity: 0.2;
    transform: scale(1.05);
}

.fundador-card:hover .fundador-foto img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.fundador-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.fundador-info .cargo {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: bold;
    position: relative;
}

.fundador-info .cargo::after {
    content: 'In Memoriam';
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
    font-style: normal;
    margin-top: 5px;
}

.fundador-info .descricao {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.fundador-destaques {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.destaque-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    transform: translateX(10px);
}

.destaque-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.destaque-item span {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

.empresa-valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.valor-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.valor-item:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.valor-icon i {
    font-size: 2rem;
    color: white;
}

.valor-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.valor-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: #e5e7eb;
    transform: translateX(10px);
}

.contato-item i {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
}

.contato-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.contato-item a,
.contato-item span {
    color: #6b7280;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contato-item a:hover {
    color: #1a1a1a;
}

.contato-form {
    background: #f9fafb;
    padding: 60px;
    border-radius: 15px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #1a1a1a;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #333333 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        width: 100vw;
    }
    
    .header-container {
        padding: 15px 25px;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    /* Reduzir tamanho da logo no mobile */
    .logo {
        height: 30px;
        width: auto;
    }
    
    /* Reduzir tamanho do subtítulo no mobile */
    .company-name {
        font-size: 0.55rem;
        max-width: 130px;
        line-height: 1.1;
    }
    
    /* Ocultar botão WhatsApp do header no mobile */
    .contact-info {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        width: 100vw;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 0 25px;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px; /* Gap menor no mobile */
        flex-wrap: wrap; /* Permitir quebra de linha no mobile */
    }
    
    .hero-buttons-secondary {
        justify-content: center;
        gap: 15px; /* Gap menor no mobile */
        margin-top: 12px; /* Espaçamento menor no mobile */
        flex-wrap: wrap; /* Permitir quebra de linha no mobile */
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quem-somos-content {
        gap: 60px;
        margin-top: 40px;
    }
    
    .fundador-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px;
    }
    
    .fundador-foto {
        width: 250px;
        height: 250px;
    }
    
    .empresa-valores {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .produtos-grid,
    .servicos-grid,
    .reposicao-grid {
        grid-template-columns: 1fr;
    }
    
    .reposicao {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        display: block !important;
        position: relative !important;
    }
    
    .reposicao .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .reposicao-grid {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-btn span {
  display: none;
    }
    
    /* Reduzir padding das seções em mobile */
    .produtos,
    .servicos,
    .reposicao,
    .sobre,
    .contato {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero {
        width: 100vw;
    }
    
    .hero-container {
        padding: 0 18px;
        min-width: 0;
    }
    
    .header {
        width: 100vw;
    }
    
    .header-container {
        padding: 12px 18px;
        min-width: 0;
    }
    
    .typing-wrap {
        width: 280px; /* Largura menor para mobile pequeno */
        overflow: visible;
        white-space: nowrap;
        margin-top: 20px;
        display: inline-block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contato-form {
        padding: 20px;
    }
    
    /* Ajustes adicionais para dispositivos muito pequenos */
    .produtos,
    .servicos,
    .reposicao,
    .sobre,
    .contato {
        padding: 70px 0;
    }
    
    .fundador-card {
        padding: 30px;
    }
    
    .fundador-foto {
        width: 200px;
        height: 200px;
    }
    
    .fundador-info h3 {
        font-size: 1.5rem;
    }
    
    .valor-item {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .produto-content,
    .servico-card,
    .reposicao-card {
        padding: 35px 25px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produto-card,
.servico-card,
.reposicao-card,
.contato-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Garantir que elementos principais ocupem 100% da largura */
body, html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevenir que elementos filhos causem overflow */
.container, .hero, .header {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Altura fixa do herói */
.hero { 
    min-height: 100vh; 
    height: 100vh;
    display: flex;
    align-items: center;
}
.hero-container { 
    min-height: 100vh; 
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Seta indicativa de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(3px);
}

.scroll-arrow i {
    color: white;
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsividade da seta */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none; /* Oculta completamente no mobile */
    }
}

/* Ajuste do z-index do conteúdo do hero */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Responsividade dos elementos flutuantes */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
    
    .hero::before,
    .hero::after {
        opacity: 0.5;
    }
    
    /* Ajustar altura do hero para mobile */
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 60px 0;
        overflow: visible;
    }
    
    /* Garantir que o container do hero funcione corretamente */
    .hero-container {
        min-height: auto;
        height: auto;
        overflow: visible;
        position: relative;
        z-index: 2;
    }
}

/* ===== ESTILOS DOS SERVIÇOS EXPANSÍVEIS ===== */

/* Botão de expansão */
.btn-expandir {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.btn-expandir:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-expandir i {
    transition: transform 0.3s ease;
}

.btn-expandir:hover i {
    animation: setaAnimada 0.6s ease-in-out infinite;
}

@keyframes setaAnimada {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-2px) rotate(-5deg);
    }
}

/* Animação específica para seta para cima (estado expandido) */
.btn-expandir.expandido:hover i {
    animation: setaAnimadaCima 0.6s ease-in-out infinite;
}

@keyframes setaAnimadaCima {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(2px) rotate(-5deg);
    }
    50% {
        transform: translateY(4px) rotate(0deg);
    }
    75% {
        transform: translateY(2px) rotate(5deg);
    }
}

/* Detalhes dos serviços */
.servico-detalhes {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.servico-detalhes.expandido {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.servico-lista {
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    border: none;
}

.servico-lista h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.servico-lista ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.servico-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e2e8f0;
}

.servico-lista li:last-child {
    border-bottom: none;
}

.servico-lista li:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    color: #2563eb;
}

.servico-lista i {
    color: #10b981;
    font-size: 0.9rem;
    min-width: 16px;
}

.servico-lista li span {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade dos serviços */
@media (max-width: 768px) {
    .servico-lista li {
        padding: 10px 0;
    }
    
    .btn-expandir {
        max-width: 100%;
        padding: 12px 20px;
    }
}

/* ===== ESTILOS DA LOJA ===== */

/* Header específico para a página da loja */
body.loja-page .header {
    background: #1f2937 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.loja-page .header .company-name,
body.loja-page .header .nav-menu a {
    color: white !important;
}

body.loja-page .header .nav-menu a:hover {
    color: #60a5fa !important;
}

body.loja-page .header .nav-menu a::after {
    background: #60a5fa !important;
}

body.loja-page .header .mobile-menu-toggle span {
    background: white !important;
}

body.loja-page .header .whatsapp-btn {
    background: #10b981;
    color: white;
    border: 2px solid #10b981;
}

body.loja-page .header .whatsapp-btn:hover {
    background: #059669;
    border-color: #059669;
}

/* Header da loja com scroll */
body.loja-page .header.scrolled {
    background: #1f2937 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Responsividade do header da loja */
@media (max-width: 768px) {
    body.loja-page .header .nav-menu.active {
        background: #1f2937;
        border-top: 1px solid #374151;
    }
    
    body.loja-page .header .nav-menu.active a {
        color: white;
        border-bottom: 1px solid #374151;
    }
    
    body.loja-page .header .nav-menu.active a:hover {
        color: #60a5fa;
        background: #374151;
    }
}

/* Botão da loja na seção de reposição */
.loja-btn-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.btn-loja {
    font-size: 1.1rem;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    cursor: pointer;
}

/* Efeito de reflexo metálico */
.btn-loja::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.btn-loja:hover::before {
    left: 100%;
}

/* Efeito de brilho metálico */
.btn-loja::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-loja:hover::after {
    opacity: 1;
    animation: brilhoMetalico 1.5s ease-in-out infinite;
}

@keyframes brilhoMetalico {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.btn-loja:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-loja:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Seta animada abaixo do botão */
.loja-btn-container::after {
    content: '↑';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: bold;
    animation: setaPulsante 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loja-btn-container:hover::after {
    color: #1d4ed8;
    transform: translateX(-50%) scale(1.2);
}

@keyframes setaPulsante {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    margin-top: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.breadcrumb span {
    color: #64748b;
}



/* Seção de Filtros */
.filtros-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.filtros-container {
    max-width: 1000px;
    margin: 0 auto;
}

.busca-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filtros-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filtro-grupo label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.filtro-grupo select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.filtro-grupo select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filtros-acoes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Grid de Produtos */
.produtos-loja {
    padding: 60px 0;
    background: #f8fafc;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.produto-card-loja {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.produto-card-loja:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.produto-imagem {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-imagem img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.produto-card-loja:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-card-loja:hover .produto-overlay {
    opacity: 1;
}

.produto-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-nome {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
    height: 3.6rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.2;
    overflow: hidden;
}

.produto-descricao {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
    height: 2.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.produto-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    height: 2rem;
    align-items: center;
}

.produto-codigo {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.produto-categoria {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.produto-preco-estoque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.produto-preco .preco-valor {
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
}

.produto-estoque {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.produto-estoque.estoque-ok {
    color: #059669;
}

.produto-estoque.estoque-baixo {
    color: #d97706;
}

.produto-estoque.sem-estoque {
    color: #dc2626;
}

.produto-acoes {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    height: 3.5rem;
    align-items: center;
}

.btn-contato {
    width: 100%;
    justify-content: center;
    height: 2.5rem;
    display: flex;
    align-items: center;
}

/* Sem resultados */
.sem-resultados {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.sem-resultados i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #d1d5db;
}

.sem-resultados h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #374151;
}

.sem-resultados p {
    margin-bottom: 30px;
}

/* Paginação */
.paginacao-section {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.paginacao-btn {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 45px;
}

.paginacao-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.paginacao-btn.ativo {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.paginacao-ellipsis {
    padding: 12px 8px;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 0;
}

.modal-produto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-imagem {
    height: 400px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-imagem img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.modal-descricao {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-detalhes {
    margin-bottom: 30px;
}

.detalhe-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detalhe-item:last-child {
    border-bottom: none;
}

.detalhe-item strong {
    color: #374151;
    font-weight: 600;
}

.detalhe-item span {
    color: #6b7280;
}

.preco-destaque {
    color: #059669 !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-acoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    flex: 1;
    min-width: 200px;
}

/* Mensagem de erro */
.erro-mensagem {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsividade da Loja */
@media (max-width: 768px) {
    
    
    .filtros-row {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .produto-card-loja {
        border-radius: 12px;
    }
    
    .produto-imagem {
        height: 180px; /* Altura menor para mobile */
    }
    
    .produto-info {
        padding: 15px; /* Padding menor para mobile */
    }
    
    .produto-nome {
        font-size: 1rem; /* Fonte menor */
        height: 2.4rem; /* Altura menor */
    }
    
    .produto-descricao {
        font-size: 0.8rem; /* Fonte menor */
        height: auto; /* Altura automática para mostrar todo o conteúdo */
        line-height: 1.4; /* Espaçamento entre linhas */
        margin-bottom: 12px; /* Espaçamento inferior */
    }
    
    .produto-meta {
        flex-direction: column; /* Empilhar verticalmente */
        align-items: flex-start; /* Alinhar à esquerda */
        gap: 8px; /* Espaçamento entre código e categoria */
        height: auto; /* Altura automática */
        margin-bottom: 12px;
    }
    
    .produto-codigo {
        order: 1; /* Código primeiro */
    }
    
    .produto-categoria {
        order: 2; /* Categoria depois */
    }
    
    .produto-preco .preco-valor {
        font-size: 1.1rem; /* Fonte menor */
    }
    
    .produto-acoes {
        height: 3rem; /* Altura menor */
        padding-top: 10px;
    }
    
    .btn-contato {
        height: 2.2rem; /* Altura menor */
        font-size: 0.9rem; /* Fonte menor */
    }
    
    .modal-produto {
        grid-template-columns: 1fr;
    }
    
    .modal-imagem {
        height: 250px;
    }
    
    .modal-info {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Responsividade do botão da loja */
    .btn-loja {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .loja-btn-container::after {
        font-size: 1.2rem;
        bottom: -35px;
    }
}

@media (max-width: 480px) {
    
    .filtros-acoes {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    /* Ajustes para mobile muito pequeno */
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .produto-imagem {
        height: 160px; /* Altura ainda menor */
    }
    
    .produto-info {
        padding: 12px; /* Padding ainda menor */
    }
    
    .produto-nome {
        font-size: 0.9rem; /* Fonte ainda menor */
        height: 2.2rem;
    }
    
    .produto-descricao {
        font-size: 0.75rem; /* Fonte ainda menor */
        height: auto; /* Altura automática para mostrar todo o conteúdo */
        line-height: 1.4; /* Espaçamento entre linhas */
        margin-bottom: 10px; /* Espaçamento inferior */
    }
    
    .produto-meta {
        flex-direction: column; /* Empilhar verticalmente */
        align-items: flex-start; /* Alinhar à esquerda */
        gap: 6px; /* Espaçamento menor */
        height: auto; /* Altura automática */
        margin-bottom: 10px;
    }
    
    .produto-codigo {
        order: 1; /* Código primeiro */
    }
    
    .produto-categoria {
        order: 2; /* Categoria depois */
    }
    
    .produto-preco .preco-valor {
        font-size: 1rem; /* Fonte ainda menor */
    }
    
    .btn-contato {
        height: 2rem; /* Altura ainda menor */
        font-size: 0.85rem; /* Fonte ainda menor */
    }
}

/* Loading state para imagens do hero */
.hero-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

