.chamada-centralizada {
    text-align: center; /* Centraliza todo o conteúdo */
    padding: 40px 20px;
    width: 100%;
}

.chamada-centralizada h2 {
    color: #f80303 !important; /* Força a cor branca */
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.item-estatico {
    background: #fff;
    border-radius: 23px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%; /* Isso faz todos os cards da linha terem a mesma altura */
}

.item-estatico h4 {
    font-size: 18px;
    color: #fd0005; /* Cor do seu logo */
    margin-bottom: 15px;
    font-weight: 700;
}

.item-estatico ul {
    padding: 0;
    margin: 0;
}

.item-estatico ul li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.item-estatico ul li i {
    margin-right: 10px;
    color: #fd0005;
}

.chamada-centralizada p {
    color: #f70404 !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9; /* Deixa o subtítulo levemente mais suave */
}

.chamada-centralizada span {
    color: #080808 !important;
    font-size: 16px;
    display: block;
    max-width: 800px; /* Evita que o texto fique muito largo em telas grandes */
    margin: 0 auto;  /* Centraliza o bloco do span */
    line-height: 1.6;
}

.chamada-centralizada strong {
    color: #080808 !important;
    text-decoration: underline;
}

/* ESTILO BARRA DE PESQUISA GUIAMIX */
.search-bar-guiamix {
    background-color: #fff;
    padding: 10px;
    border-radius: 50px; /* Estilo arredondado do logo */
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    border: 2px solid #fd0005; /* Cor vermelha do seu logo */
}

.search-bar-guiamix input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 25px;
    font-size: 15px;
    color: #2a2a2a;
    background-color: transparent;
}

.search-bar-guiamix button {
    width: 100%;
    height: 50px;
    background-color: #fd0005;
    border: none;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s;
    font-size: 20px;
}

.search-bar-guiamix button:hover {
    background-color: #2a2a2a; /* Cor de contraste no hover */
}

@media (max-width: 767px) {
    .search-bar-guiamix {
        border-radius: 20px;
    }
    .search-bar-guiamix button {
        margin-top: 10px;
    }
}

/* ESTILO ENQUETE GUIAMIX */
.enquete-guiamix {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #eee;
}

.enquete-header h3 {
    color: #fd0005;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.enquete-header p {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* Opções da Enquete */
.enquete-opcao {
    display: block;
    position: relative;
    padding: 12px 12px 12px 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.enquete-opcao:hover {
    background: #fff1f1;
    border-color: #fd0005;
}

/* Esconder o rádio padrão */
.enquete-opcao input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Criar o rádio personalizado */
.checkmark {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #ddd;
    border-radius: 50%;
}

.enquete-opcao:hover input ~ .checkmark {
    background-color: #ccc;
}

.enquete-opcao input:checked ~ .checkmark {
    background-color: #fd0005;
}

/* Botão de Votar */
.btn-votar {
    width: 100%;
    background: #fd0005;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-votar:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}
/* --- ESTILO EXCLUSIVO: GUIA COMERCIAL --- */
.guiacomercial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.guiacomercial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Imagem Padronizada */
.guiacomercial-card .thumb-guia img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.guiacomercial-card .info-guia {
    padding: 15px;
    flex-grow: 1;
}

.guiacomercial-card h4 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* Lista de Ícones */
.guiacomercial-contatos {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.guiacomercial-contatos li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.guiacomercial-contatos li i {
    color: #fd0005; /* Cor Vermelha do GuiaMix */
    width: 28px;
    text-align: center;
    font-size: 16px;
}

.guiacomercial-contatos li a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}
.guiacomercial-contatos li i.fab {
    color: #fd0005; /* Força a cor vermelha no ícone do whats */
    width: 28px;
    text-align: center;
    font-size: 18px;
}

/* Botão WhatsApp */
.btn-whats-guia {
    display: block;
    background: #25d366;
    color: #fff !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

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

/* ==========================================================================
   ESTILO GUIA CARDS - ESTILO MODERNO
   ========================================================================== */

.guia-cards {
    padding: 30px 0 60px 0; /* Espaço reduzido no topo como você pediu */
    background-color: #f9f9f9;
}

.guia-cards .cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.guia-cards .card {
    background: #fff;
    width: 320px;
    padding: 40px 25px 50px; /* Padding extra embaixo para o botão */
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* Efeito de destaque ao passar o mouse */
.guia-cards .card:hover {
    transform: translateY(-10px);
    border-color: #fd0005;
    box-shadow: 0 15px 35px rgba(253, 0, 5, 0.1);
}

/* ÍCONE GRANDE E CENTRALIZADO */
.guia-cards .icon {
    width: 100px;         /* Círculo maior */
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;      /* Ícone interno maior */
    color: #fff;
    background: #fd0005;  /* Cor padrão vermelha do site */
    transition: 0.3s;
}

.guia-cards .card:hover .icon {
    transform: scale(1.1);
    background: #2a2a2a; /* Muda de cor no hover para dar contraste */
}

/* TEXTOS */
.guia-cards h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 700;
}

.guia-cards p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BOTÃO REDONDO NA PARTE INFERIOR */
.guia-cards .btn {
    position: absolute;
    bottom: -22px; /* Deixa o botão "pendurado" na borda inferior */
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fd0005;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(253, 0, 5, 0.3);
    transition: 0.3s;
}

.guia-cards .card:hover .btn {
    background: #2a2a2a;
    width: 50px;
    height: 50px;
    bottom: -25px;
}
/* ---------------------------------------------
   GUIA COMERCIAL - CARROSSEL EM LINHA ÚNICA
------------------------------------------------ */

.guiacomercial {
  padding: 40px 0;
  background-color: #fff;
}

/* Container que segura a lista e as setas */
.guiacomercial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* A lista que contém os 10 itens em linha */
.guiacomercial-list {
    display: flex;
    overflow-x: auto; /* Permite o scroll */
    scroll-behavior: smooth; /* ESSENCIAL: Faz o deslize ser suave */
    scrollbar-width: none; /* Esconde barra no Firefox */
    -ms-overflow-style: none; /* Esconde barra no IE */
}

.guiacomercial-list::-webkit-scrollbar {
    display: none; /* Esconde barra no Chrome/Safari */
}

/* Estilo de cada Item Individual */
.comercial-item {
  flex: 0 0 140px; /* Largura fixa para cada item */
  text-align: center;
  text-decoration: none !important;
  transition: 0.3s;
}

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

/* Círculo dos Ícones */
.comercial-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.comercial-item h4 {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* Estilo das Setas de Navegação */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: 0.3s;
}

.scroll-arrow:hover {
  opacity: 1;
  background: #ff1a1f; /* Cor de destaque */
}



.scroll-arrow.left { left: -20px; }
.scroll-arrow.right { right: -20px; }

/* Cores dos Ícones (Reutilizando suas cores) */
.icon.azul { background: #007bff; }
.icon.laranja { background: #ff8c00; }
.icon.vermelho { background: #e74c3c; }
.icon.verde { background: #27ae60; }
.icon.roxo { background: #9b59b6; }
.icon.azul-claro { background: #3498db; }
.icon.cinza { background: #7f8c8d; }
.icon.rosa { background: #e91e63; }
.icon.amarelo { background: #f1c40f; }
.icon.roxo-escuro { background: #6f42c1; } /* Ícone 10: Serviços */