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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    min-height: 100vh;
}

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

/* Container para seções que ocupam toda a largura */
.section-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Container interno para conteúdo alinhado */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsividade para containers */
@media (max-width: 768px) {
    .container,
    .section-container {
        padding: 0 20px;
    }
    
    .section-spacing {
        padding: 40px 0;
    }
    
    .container > .servicos,
    .container > .produtos-section,
    .container > .assistencias {
        margin: 40px 0;
    }
    
    /* Padding geral melhorado para mobile */
    body {
        padding: 0;
    }
    
    /* Header ocupa toda a largura no mobile */
    .container .topo {
        margin: 0 -20px;
        width: calc(100% + 40px);
        position: relative;
        left: 20px;
        right: 20px;
    }
    
    .topo {
        padding: 15px 20px;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: none;
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin: 0 -20px;
        width: calc(100% + 40px);
        position: relative;
        left: 20px;
    }
    
    /* Ajustes específicos para mobile */
    .topo .logo img {
        height: 35px;
        width: auto;
        object-fit: contain;
        max-width: none;
    }
    
    .topo .icones {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .topo .icone {
        margin-left: 8px;
    }
    
    .topo .icone img {
        width: 32px !important;
        height: 32px !important;
        padding: 4px;
    }
}

/* Espaçamento padrão entre seções */
.section-spacing {
    padding: 60px 0;
}

.section-spacing-sm {
    padding: 40px 0;
}

/* Seções internas do container principal */
.container > .servicos,
.container > .produtos-section,
.container > .assistencias {
    margin: 60px 0;
    padding: 0;
}

/* Espaçamento entre seções full-width */
.section-full-width + .section-full-width {
    margin-top: 0;
}

/* Último elemento do container */
.container > *:last-child {
    margin-bottom: 0;
}

/* Alinhamento dos títulos */
.container h2,
.section-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.topo {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icone {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.icone img {
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 8px;
}

.icone img:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: scale(1.1);
}

.dropdown-info {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.dropdown-info .logo {
    height: 35px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
}

.icone:hover .dropdown-info,
.dropdown-info:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-info .logo {
    width: 150px;
    margin-bottom: 10px;
}

.dropdown-info p {
    margin: 5px 0;
    color: #666;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.blog-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.blog-btn:hover {
    background: #1d4ed8;
}

.dropdown-info iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
}

.icones span img {
    width: 25px;
    height: 25px;
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-mobile.rotate {
    transform: rotate(90deg);
}

.menu {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center; /* Centraliza os itens */
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin: 10px 0;
    flex-wrap: nowrap; /* Evita quebra de linha */
    position: relative;
    z-index: 1000;
}

/* Responsividade para a navegação */
@media (max-width: 1024px) {
    .menu {
        gap: 6px;
        padding: 10px 16px;
    }
    
    .menu a {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
        gap: 30px;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        flex-wrap: wrap; /* Permite quebra no mobile */
    }
    
    .menu a {
        font-size: 1.2rem;
        padding: 15px 25px;
        white-space: normal; /* Permite quebra no mobile */
        min-height: auto;
        text-align: center;
    }

    .menu.active {
        left: 0;
    }

    .menu-mobile {
        display: block;
    }
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
    white-space: nowrap; /* Evita quebra de linha */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* Altura mínima consistente */
    text-align: center;
    position: relative;
    z-index: 1001;
}

.menu a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

/* Estilos específicos para garantir alinhamento consistente */
.menu a[href="/reparos-hidraulicos"] {
    white-space: nowrap !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.icones {
    display: flex;
    align-items: center;
}

.icone {
    margin-left: 15px;
}

/* Garantir que os ícones sejam sempre visíveis */
@media (max-width: 768px) {
    .topo .icones {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .topo .icone {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .topo .icone img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Garantir que o layout flexbox funcione corretamente */
    .topo {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }
    
    .topo .logo {
        flex: 0 0 auto !important;
        order: 2 !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .topo .icones {
        flex: 0 0 auto !important;
        order: 3 !important;
    }
    
    .menu-mobile {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* swiper stories-carousel */

.container-stories {
    margin-block: 30px;
}

.story {
    text-align: center;
    background-color: transparent;
}

.story-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #FFC107;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    padding: 2px;
    /* micro espaço entre imagem e borda */

    /* degradê personalizado */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    /* ou transparent, dependendo do fundo */
}

.story-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story p {
    font-size: 13px;
    color: rgb(0, 0, 0);
    margin: 8px 0 0 0;
    padding: 0 5px;
    text-align: center;
    min-height: 2.5em; /* Altura mínima para alinhar textos de 1 e 2 linhas */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.swiper {
    padding: 20px 0;
    overflow: hidden !important; /* Remove scroll horizontal */
}

/* Mobile: garante que não apareça scroll e distribui em grid */
@media (max-width: 767px) {
    .container-stories .swiper {
        overflow: hidden !important;
        -webkit-overflow-scrolling: none !important;
    }
    
    .container-stories .swiper-wrapper {
        flex-wrap: wrap !important;
        justify-content: space-between !important; /* Mantém distribuição */
        gap: 5px !important;
    }
    
    .container-stories .swiper-slide {
        flex: 0 0 calc(33.333% - 5px) !important; /* 3 colunas */
        margin-bottom: 10px !important;
    }
}

/* Garante que o wrapper do Swiper mostre todos os slides DISTRIBUÍDOS de canto a canto */
.container-stories .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    justify-content: space-between !important; /* Distribui de canto a canto */
    align-items: center !important;
    width: 100% !important;
}

/* Garante que todos os slides sejam visíveis e distribuídos uniformemente */
.container-stories .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Alinha no topo para manter ícones alinhados */
    flex: 1 1 0 !important; /* Distribui espaço igualmente */
    min-width: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    margin: 0 !important;
}

/* Garante renderização imediata das imagens */
.container-stories .story-icon img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateZ(0) !important; /* Força aceleração GPU */
}

.swiper-button-prev,
.swiper-button-next {
    top: 200px;
    /* leva os botões para o topo do swiper */
    display: none;
}

/* Ajuste a posição esquerda e direita */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Oculta setas no mobile */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* BANNER */
.carrossel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px; /* Altura fixa do container */
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.carrossel-mobile {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%; /* Respeita largura do container pai */
    aspect-ratio: 1/1; /* Formato quadrado */
    margin: 0 auto; /* Centraliza horizontalmente */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

@media (max-width: 767px) {
    .carrossel {
        display: none;
    }

    .carrossel-mobile {
        display: block;
        margin: 0 auto 30px auto; /* Centraliza perfeitamente */
        overflow: hidden; /* Remove scroll */
        width: 100%;
        max-width: 100%; /* Respeita largura do container pai */
    }

    .logo img {
        width: 200px;
        height: 100%;
    }

    .carrossel-mobile .slide img {
    width: 100%;
    height: 100%; /* Ocupa 100% do container quadrado */
    object-fit: cover; /* Mantém proporção e cobre todo o espaço */
    object-position: center; /* Centraliza a imagem */
    border-radius: 0; /* Remove bordas arredondadas da imagem */
}

    .carrossel-mobile .slides {
        overflow-x: hidden; /* Remove qualquer scroll horizontal */
        overflow-y: hidden; /* Remove qualquer scroll vertical */
    }
}

.slides {
    display: flex;
    overflow: hidden; /* Evita scroll horizontal */
}

.slide {
    flex: 0 0 100%;
    /* ← Garante que cada slide ocupa exatamente 100% do carrossel */
    max-width: 100%;
    box-sizing: border-box;
    display: none; /* Esconde todos os slides por padrão */
}

.slide.ativo {
    display: block; /* Mostra apenas o slide ativo */
}

/* Indicadores do carrossel */
.indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* Regras dos indicadores movidas para evitar duplicação */

.slide img {
    width: 100%;
    height: 400px; /* Altura fixa para desktop */
    object-fit: fill; /* Estica para preencher todo o espaço */
    display: block;
}

.seta {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    padding: 2px 16px;
    border-radius: 30px;
    z-index: 10;
    transition: background 0.3s;
}

.seta:hover {
    background: rgba(0, 0, 0, 0.7);
}

.seta.esquerda {
    left: 10px;
}

.seta.direita {
    right: 10px;
}

.indicadores {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.bolinha.ativo {
    background: white;
    transform: scale(1.2);
}

/* BANNER principal*/
.container-card {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.card:hover, .servico-card:hover, .assist-card:hover, .produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card, .servico-card, .assist-card, .produto-card {
    text-decoration: none;
    color: inherit;
}

a.card:hover, a.servico-card:hover, a.assist-card:hover, a.produto-card:hover {
    text-decoration: none;
    color: inherit;
}

.card video,
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* CORREÇÃO DOS VÍDEOS - EVITAR CORTE E PRESERVAR EXTREMIDADES */
.card video {
    object-fit: cover !important; /* Voltar para cover para aproveitar melhor o espaço */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    height: 180px !important; /* Aumentar altura para melhor aproveitamento */
    max-height: 180px !important;
    padding: 4px; /* Reduzir padding */
    box-sizing: border-box;
    object-position: center !important; /* Centralizar o foco */
}

/* Container específico para vídeos */
.card .video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 180px !important; /* Aumentar altura */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
}

/* Indicador de play sutil */
.card .video-container::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #6c757d;
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Esconder indicador quando reproduzindo */
.card .video-container.playing::before {
    opacity: 0;
}

/* Melhorar proporção dos vídeos */
.card .video-container video {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important; /* Usar largura total */
    height: 100% !important; /* Usar altura total */
    object-fit: cover !important; /* Cover para aproveitar espaço */
    object-position: center !important; /* Centralizar foco */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsividade para vídeos */
@media (max-width: 768px) {
    .card video,
    .card .video-container {
        height: 160px !important; /* Altura média no mobile */
        max-height: 160px !important;
    }
    
    .card .video-container::before {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .card video,
    .card .video-container {
        height: 140px !important; /* Altura adequada em telas pequenas */
        max-height: 140px !important;
    }
    
    .card .video-container::before {
        font-size: 1rem;
    }
}

/* EFEITOS PARA PRESERVAR EXTREMIDADES DOS VÍDEOS */
.card .video-container {
    /* Efeito de padding visual */
    padding: 12px !important;
    box-sizing: border-box;
}

/* Efeito de borda interna para preservar extremidades */
.card .video-container::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}

/* Melhorar o fundo dos vídeos */
.card .video-container video {
    /* Efeito de sombra interna para destacar o vídeo */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    /* Garantir que o vídeo não seja cortado */
    object-position: center !important;
}

/* Efeito hover para os vídeos */
.card .video-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Efeito de loading sutil */
.card .video-container.loading {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    animation: pulse 2s infinite;
}

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

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

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

#card3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#card3 p {
    color: rgba(255, 255, 255, 0.9);
}

#card3 h3 {
    color: white;
}

@media (max-width: 767px) {
    #card3 button {
        background: white;
        color: #667eea;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.3s;
    }
}

button {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .card {
        min-width: 200px;
    }

    .card:nth-child(3) {
        order: -1;
    }
}

@media (max-width: 768px) {
    .card {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

.assistencias {
    text-align: center;
    margin: 50px 0;
}

.assistencias h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.cards-marcas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.assist-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.assist-card:hover {
    transform: translateY(-5px);
}

/* Galeria das assistências - CSS limpo */
.galery {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px 0;
    background: #f8fafc;
}

.galery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px;
}

.galery img.active {
    opacity: 1;
}

.logoassistencia {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.assist-card p {
    margin: 15px 0;
    color: #666;
}

.assist-card .btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.assist-card .btn:hover {
    background: #128c7e;
}

@media (max-width: 768px) {
    .cards-marcas {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .assist-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

.especialistas {
    text-align: center;
    padding: 60px 0;
    background: #f8fafc;
}

.especialistas h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.especialistas .col-1 {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
    transition: transform 0.3s;
}

.especialistas .col-1 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #667eea;
}

@media (max-width: 768px) {
    .especialistas .col-1 {
        margin: 20px;
        padding: 25px;
    }

    .especialistas .col-1 img {
        width: 80px;
        height: 80px;
    }
}

/* Seção Nossas Lojas - Totalmente responsiva */
.nossaslojas {
    padding: 60px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.nossaslojas h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #1e293b;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lojas {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.loja {
    flex: 0 0 calc(50% - 20px);
    max-width: 580px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

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

.loja img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.loja:hover img {
    transform: scale(1.05);
}

.loja-content {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.loja h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.loja p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.loja-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.loja-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

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

.loja-action {
    margin-top: auto;
    padding-top: 20px;
}

.loja button {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.loja button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.loja button i {
    font-size: 1.2rem;
}

/* Media Queries para Mobile - Corrigidas */
@media (max-width: 768px) {
    .nossaslojas {
        padding: 40px 20px !important;
        width: 100% !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .nossaslojas h2 {
        font-size: 2.2rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
        text-align: center !important;
    }
    
    .lojas {
        flex-direction: column !important;
        align-items: center !important;
        max-width: 100% !important;
        gap: 30px !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    .loja {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
        border-radius: 15px !important;
    }
    
    .loja-content {
        padding: 25px 20px !important;
    }
    
    .loja h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }
    
    .loja img {
        height: 180px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .loja button {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        width: 100% !important;
        justify-content: center !important;
        border-radius: 25px !important;
    }
    
    .loja p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .loja-info-item {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .nossaslojas {
        padding: 30px 15px !important;
    }
    
    .nossaslojas h2 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
    
    .loja {
        border-radius: 12px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .loja-content {
        padding: 20px 15px !important;
    }
    
    .loja img {
        height: 160px !important;
    }
    
    .loja button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
    }
    
    .loja h2 {
        font-size: 1.4rem !important;
    }
    
    .loja p {
        font-size: 0.85rem !important;
    }
    
    .loja-info-item {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    .nossaslojas {
        padding: 25px 10px !important;
    }
    
    .nossaslojas h2 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .loja {
        border-radius: 10px !important;
    }
    
    .loja-content {
        padding: 15px 10px !important;
    }
    
    .loja img {
        height: 240px !important;
    }
    
    .loja button {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 18px !important;
    }
    
    .loja-info-item {
        font-size: 0.75rem !important;
    }
}

.footer {
    background: #333;
    color: white;
    padding: 60px 0 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-logo p {
    color: #ccc;
    font-size: 16px;
    margin: 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-social a {
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
    font-size: 14px;
}

/* Responsividade do footer */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        text-align: left;
        align-items: start;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-copy {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* SEÇÃO PARCEIROS - VERSÃO SIMPLIFICADA */
.parceiros {
    text-align: center;
    padding: 60px 0;
    background: white;
}

.parceiros h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.carrossel-parceiros-simples {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.parceiros-grid {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    max-width: max-content;
    margin: 0 auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Garantir que tenha scroll horizontal */
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Esconder scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.parceiros-grid::-webkit-scrollbar {
    display: none;
}

.parceiro-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    flex-shrink: 0;
    width: 140px;
    height: 140px;
}

.parceiro-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.parceiro-item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    filter: grayscale(1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    object-fit: contain;
}

.parceiro-item:hover img {
    filter: grayscale(0);
    transform: scale(1.03);
}

/* Indicadores de progresso */
.indicadores-parceiros {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0 15px;
}

.indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicador.active {
    background: #2563eb;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.indicador:hover {
    background: rgba(37, 99, 235, 0.6);
    transform: scale(1.1);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .parceiros {
        padding: 40px 20px;
    }
    
    .parceiros h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .parceiros-grid {
        gap: 20px;
        padding: 15px 0;
    }
    
    .parceiro-item {
        padding: 12px;
        width: 120px;
        height: 120px;
    }
    
    .indicadores-parceiros {
        gap: 10px;
        margin-top: 25px;
    }
    
    .indicador {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .parceiros h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .parceiros-grid {
        gap: 15px;
    }
    
    .parceiro-item {
        padding: 10px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 360px) {
    .parceiros {
        padding: 30px 15px;
    }
    
    .parceiros h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .parceiros-grid {
        gap: 12px;
    }
    
    .parceiro-item {
        width: 90px;
        height: 90px;
    }
}

/* SERVIÇOS */
.servico-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e5e7eb;
    padding: 18px 16px 20px 16px;
    min-width: 180px;
    max-width: 220px;
    margin: 0 8px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}

.servico-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px rgba(37,99,235,0.13);
}

.servico-card img {
    width: 180px;
    height: 180px;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    border-radius: 10px;
    background: #f3f4f6;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.servico-card span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 8px;
    word-break: break-word;
    letter-spacing: 0.01em;
}

.servico-card .servico-desc {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 12px;
    min-height: 48px;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.servico-card .servico-btn {
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px 10px 18px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    display: flex;
    align-items: center;
    gap: 8px;
}

.servico-card .servico-btn svg {
    margin-right: 6px;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    fill: #fff;
}

.servico-card .servico-btn:hover {
    background: linear-gradient(90deg, #1e40af 60%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(37,99,235,0.18);
}

@media (max-width: 600px) {
    .servico-card {
        min-width: 140px;
        max-width: 160px;
        padding: 12px 6px 14px 6px;
    }
    .servico-card img {
        width: 110px;
        height: 110px;
        max-width: 100%;
        max-height: 110px;
    }
    .servico-card .servico-btn {
        font-size: 0.95rem;
        padding: 8px 10px 8px 10px;
    }
}

.only-mobile {
    display: none !important;
}

/* Menu Mobile */
.menu-mobile {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    display: none;
}

.menu-mobile:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .only-mobile {
        display: block !important;
    }
    
    .menu-mobile {
        display: block !important;
    }
    
    .icone img {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Ajustes específicos do header no mobile */
    .topo {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: none;
        box-shadow: none;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin: 0 -20px;
        width: calc(100% + 40px);
        position: relative;
        left: 20px;
        right: 20px;
    }
    
    .topo .logo {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .topo .logo img {
        height: 32px;
        width: auto;
        max-width: none;
        object-fit: contain;
        object-position: center;
    }
    
    .topo .icones {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .topo .icone {
        margin-left: 0;
    }
    
    .topo .icone img {
        width: 28px !important;
        height: 28px !important;
        padding: 3px;
        border-radius: 6px;
    }
    
    .menu-mobile {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: #333;
        cursor: pointer;
        padding: 6px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-mobile:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
}

/* Ajustes para smartphones muito pequenos */
@media (max-width: 480px) {
    .topo {
        padding: 12px 15px;
        margin: 0 -15px;
        width: calc(100% + 30px);
        left: 15px;
    }
    
    .topo .logo img {
        height: 28px;
        width: auto;
        max-width: none;
        object-fit: contain;
        object-position: center;
    }
    
    .topo .icone img {
        width: 24px !important;
        height: 24px !important;
        padding: 2px;
    }
    
    .menu-mobile {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .topo .icones {
        gap: 4px;
    }
}

/* Regras de fallback para garantir funcionamento */
@media (max-width: 768px) {
    .topo * {
        box-sizing: border-box !important;
    }
    
    .topo .icones,
    .topo .icone,
    .topo .icone img {
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
        clip: auto !important;
    }
    
    /* Garantir que o header ocupe toda a largura */
    .topo {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }
} 

/* Correções para problemas de sobreposição e z-index */
.menu {
    position: relative;
    z-index: 1000;
}

.menu a {
    position: relative;
    z-index: 1001;
}

/* Garantir que não haja sobreposições indesejadas */
.topo {
    position: relative;
    z-index: 1002;
}

/* Correções para elementos de acessibilidade */
[role="image"],
[aria-label*="teste"],
[data-accessibility] {
    position: relative !important;
    z-index: 999 !important;
    pointer-events: none !important;
    opacity: 0.1 !important;
} 
