/* ==========================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE SERVIÇOS
   ========================================== */

/* Controle de quebra de linha para tablets */
.tablet-break {
  display: none; /* Oculta por padrão (desktop e mobile) */
}

/* Hero Section - Serviços */
.hero-servicos {
  background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  padding: 8rem 0 6rem;
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  color: #111;
  overflow: hidden;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-servicos__content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-servicos__title {
  display: block;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #111;
  position: relative;
  overflow: hidden;
}

.hero-servicos__subtitle {
  max-width: 56ch;
  margin: 0 auto 1.25rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #111;
  opacity: 1; /* Alterado para visível por padrão */
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

/* Cursor do typewriter */
.hero-servicos__title .typer::after {
  content: "|";
  animation: caretBlink 1s infinite;
  color: #111;
  font-weight: 300;
}

/* Remover qualquer ::before que possa vir do styles.css */
.hero-servicos__title .typer::before {
  content: none !important;
  display: none !important;
}

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

/* Serviços Gerais */
.servicos-gerais {
  padding: 5rem 0;
  background: var(--bg);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Layout 2x2 fixo */
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
  }
}

.servico-card {
  background: #000;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Aplicando mesmas cores e fontes do index */
  font-family: "Montserrat", sans-serif;
}

.servico-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--fg);
}

.servico-card .servico-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}

.servico-card .servico-icon i {
  font-size: 1.5rem;
  color: var(--fg);
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  /* Aplicando mesma fonte do título do banner */
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.servico-card p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  /* Aplicando estilo similar ao index */
  font-weight: 300;
  opacity: 0.9;
}

.servico-inclui,
.servico-exemplos,
.servico-opcoes,
.servico-funcionalidades,
.servico-beneficios {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.servico-inclui h4,
.servico-exemplos h4,
.servico-opcoes h4,
.servico-funcionalidades h4,
.servico-beneficios h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #000;
}

.servico-inclui ul,
.servico-exemplos ul,
.servico-opcoes ul,
.servico-funcionalidades ul,
.servico-beneficios ul {
  list-style: none;
  padding-left: 0;
}

.servico-inclui li,
.servico-exemplos li,
.servico-opcoes li,
.servico-funcionalidades li,
.servico-beneficios li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.servico-inclui li::before,
.servico-exemplos li::before,
.servico-opcoes li::before,
.servico-funcionalidades li::before,
.servico-beneficios li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.servico-ideal {
  background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.servico-ideal p {
  color: #fff;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

/* CTA Principal */
.cta-principal {
  text-align: center;
  background: var(--muted);
  padding: 3rem 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.cta-principal h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.cta-principal .btn {
  margin-bottom: 1rem;
}

.cta-principal p {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Soluções para Restaurantes */
.solucoes-restaurantes {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
  margin-top: 3rem;
}

.solucoes-restaurantes__header {
  text-align: center;
  margin-bottom: 3rem;
}

.solucoes-restaurantes__header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.solucoes-restaurantes__header p {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

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

.servico-restaurante-card {
  background: #000;
  color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.servico-restaurante-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-header-restaurante {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.servico-restaurante-card .servico-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.servico-restaurante-card .servico-icon i {
  font-size: 1.25rem;
  color: #000;
}

.servico-restaurante-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servico-restaurante-card p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.servico-restaurante-card h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servico-restaurante-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-restaurante-card li {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.servico-restaurante-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.servico-restaurante-card strong {
  color: #fff;
  font-weight: 500;
}

.servico-inclui strong,
.servico-exemplos strong,
.servico-opcoes strong,
.servico-funcionalidades strong,
.servico-beneficios strong {
  color: #000;
  font-weight: 600;
}

/* Estilos específicos para containers dentro de restaurantes */
.servico-restaurante-card .servico-opcoes,
.servico-restaurante-card .servico-beneficios,
.servico-restaurante-card .servico-funcionalidades {
  background: #fff;
  color: #000;
}

.servico-restaurante-card .servico-opcoes h4,
.servico-restaurante-card .servico-beneficios h4,
.servico-restaurante-card .servico-funcionalidades h4 {
  color: #000;
}

.servico-restaurante-card .servico-opcoes li,
.servico-restaurante-card .servico-beneficios li,
.servico-restaurante-card .servico-funcionalidades li {
  color: #000;
}

.servico-restaurante-card .servico-opcoes li::before,
.servico-restaurante-card .servico-beneficios li::before,
.servico-restaurante-card .servico-funcionalidades li::before {
  color: #000;
}

.servico-restaurante-card .servico-opcoes strong,
.servico-restaurante-card .servico-beneficios strong,
.servico-restaurante-card .servico-funcionalidades strong {
  color: #000;
}

/* Estilos para Lojas Online - Idênticos aos de Restaurantes */
.solucoes-lojas {
  padding: 2rem 0 5rem 0;
  background: var(--bg);
  position: relative;
}

.solucoes-lojas__header {
  text-align: center;
  margin-bottom: 3rem;
}

.solucoes-lojas__header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.solucoes-lojas__header p {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

.lojas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lojas-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.lojas-subtitle {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

.lojas-desc {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards de Lojas Online - Idênticos aos de Restaurantes */
.solucoes-lojas .servico-loja-card {
  flex: 0 0 calc(33.333% - 0.333rem); /* Alinhado com 3 cards por view */
  min-height: 100%;
  box-sizing: border-box;
  padding: 2.5rem 1.8rem;
  background: #000;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0 0.2rem;

  /* Garante que os cards fiquem visíveis */
  opacity: 1;
  visibility: visible;
}

.solucoes-lojas .servico-loja-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.servico-header-loja {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.servico-loja-card .servico-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.servico-loja-card .servico-icon i {
  font-size: 1.25rem;
  color: #000;
}

.servico-loja-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servico-loja-card p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.servico-loja-card h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servico-loja-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-loja-card li {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.servico-loja-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.servico-loja-card strong {
  color: #fff;
  font-weight: 500;
}

/* Estilos específicos para containers dentro de lojas */
.servico-loja-card .servico-opcoes,
.servico-loja-card .servico-beneficios,
.servico-loja-card .servico-funcionalidades,
.servico-loja-card .servico-inclui {
  background: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.servico-loja-card .servico-opcoes h4,
.servico-loja-card .servico-beneficios h4,
.servico-loja-card .servico-funcionalidades h4,
.servico-loja-card .servico-inclui h4 {
  color: #000;
}

.servico-loja-card .servico-opcoes li,
.servico-loja-card .servico-beneficios li,
.servico-loja-card .servico-funcionalidades li,
.servico-loja-card .servico-inclui li {
  color: #000;
}

.servico-loja-card .servico-opcoes li::before,
.servico-loja-card .servico-beneficios li::before,
.servico-loja-card .servico-funcionalidades li::before,
.servico-loja-card .servico-inclui li::before {
  color: #000;
}

.servico-loja-card .servico-opcoes strong,
.servico-loja-card .servico-beneficios strong,
.servico-loja-card .servico-funcionalidades strong,
.servico-loja-card .servico-inclui strong {
  color: #000;
  font-weight: 600;
}

/* Estilos do Carrossel de Lojas Online - Idênticos aos de Restaurantes */
.solucoes-lojas .services-lojas-wrapper {
  position: relative;
  margin: 1rem auto;
  width: calc(100% + 6rem);
  max-width: calc(100% + 6rem);
  padding: 0.5rem 1rem 0.1rem 1rem;
  background-color: #fff;
  transition: transform 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

.solucoes-lojas .services-lojas-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
  padding-bottom: 0.2rem;
  padding-top: 0.5rem;
  margin: 0 auto;
}

.solucoes-lojas .services-lojas-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  gap: 0.5rem;
  will-change: transform;

  /* Força todos os cards a ficarem em uma linha */
  flex-wrap: nowrap;

  /* Garante que os cards fiquem lado a lado */
  justify-content: flex-start;
}

/* Desktop: 3 slides por view */
@media (min-width: 1024px) {
  .solucoes-lojas .servico-loja-card {
    flex: 0 0 calc(33.333% - 0.333rem);
  }
}

/* Tablet: usar comportamento padrão igual aos restaurantes (100% da largura) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Quebra de linha visível apenas em tablets */
  .tablet-break {
    display: inline; /* Mostra a quebra de linha em tablets */
  }

  /* Seções devem ocupar 100% da largura sem limitações */
  .solucoes-lojas,
  .solucoes-restaurantes {
    width: 100vw;
    max-width: 100vw;
    min-height: 80vh; /* Altura mínima para ocupar mais da tela */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centralização vertical da seção */
  }

  /* Container deve ocupar 100% da largura para carrosseis */
  .solucoes-lojas .container,
  .solucoes-restaurantes .container {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  /* Wrappers de lojas e restaurantes têm a mesma configuração */
  .solucoes-lojas .services-lojas-wrapper,
  .solucoes-restaurantes .services-restaurantes-wrapper {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  /* Containers de lojas e restaurantes têm a mesma configuração */
  .solucoes-lojas .services-lojas-container,
  .solucoes-restaurantes .services-restaurantes-container {
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }

  /* Sliders de lojas e restaurantes têm a mesma configuração */
  .solucoes-lojas .services-lojas-slider,
  .solucoes-restaurantes .services-restaurantes-slider {
    gap: 0;
    width: 100vw;
    box-sizing: border-box;
  }

  /* Cards de lojas e restaurantes têm a mesma configuração em tablets */
  .solucoes-lojas .servico-loja-card,
  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 calc(50% - 0.25rem);
  }

  .solucoes-lojas .services-lojas-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-lojas .indicator-loja {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .solucoes-lojas .indicator-loja.active {
    background-color: #000000;
    transform: scale(1.2);
  }

  .solucoes-lojas .indicator-loja:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }

  /* Estilos para o container das bolinhas fora do carrossel */
  .carousel-controls-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0 3rem;
  }


  }

  .solucoes-lojas .indicator-loja.active {
    background-color: #000000;
    transform: scale(1.2);
  }


/* Mobile: 1 slide por view */
@media (max-width: 767px) {
  .solucoes-lojas .servico-loja-card {
    flex: 0 0 calc(100% - 2rem);
    margin: 0 1rem;
  }

  /* Bolinhas indicativas para mobile */
  .solucoes-lojas .services-lojas-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-lojas .indicator-loja {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .solucoes-lojas .indicator-loja.active {
    background-color: #000000;
    transform: scale(1.2);
  }

  .solucoes-lojas .indicator-loja:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }
}

/* Mobile-only overrides to ensure 1 centered slide without peeking */
@media (max-width: 767px) {
  .solucoes-lojas .services-lojas-wrapper {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 0;
  }

  .solucoes-lojas .services-lojas-container {
    padding: 0;
  }

  .solucoes-lojas .services-lojas-slider {
    gap: 0; /* avoid showing adjacent slides */
  }

  .solucoes-lojas .servico-loja-card {
    flex: 0 0 100%;
    margin: 0; /* full-bleed within hidden overflow container */
  }



  /* Estilos para o container das bolinhas fora do carrossel */
  .carousel-controls-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0 3rem;
  }


  }

  /* Adiciona espaço entre o carrossel e a seção de restaurantes */
  .solucoes-restaurantes {
    margin-top: 2rem;
  }


/* Mobile-only overrides to ensure 1 centered slide without peeking - RESTAURANTES */
@media (max-width: 767px) {
  /* Remove padding lateral da seção principal */
  .solucoes-restaurantes {
    padding-left: 0;
    padding-right: 0;
  }

  .solucoes-restaurantes .services-restaurantes-wrapper {
    width: 100vw; /* Largura exata da viewport */
    max-width: 100vw;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .services-restaurantes-container {
    padding: 0;
    width: 100vw; /* Largura exata da viewport */
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .services-restaurantes-slider {
    gap: 0; /* avoid showing adjacent slides */
    width: 100vw; /* Largura exata da viewport */
    box-sizing: border-box;
  }

  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 100vw; /* Largura exata da viewport */
    width: 100vw;
    max-width: 100vw;
    margin: 0; /* full-bleed within hidden overflow container */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .services-restaurantes-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-restaurantes .indicator-restaurante {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .solucoes-restaurantes .indicator-restaurante.active {
    background-color: #000000;
    transform: scale(1.2);
  }

  .solucoes-restaurantes .indicator-restaurante:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }

  /* Estilos para o container das bolinhas fora do carrossel */
  .carousel-controls-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0 3rem;
  }

  .solucoes-restaurantes .services-restaurantes-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-restaurantes .indicator-restaurante {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .solucoes-restaurantes .indicator-restaurante.active {
    background-color: #000000;
    transform: scale(1.2);
  }

  .solucoes-restaurantes .indicator-restaurante:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }

  /* Adiciona espaço entre o carrossel e a próxima seção */
  .solucoes-lojas {
    margin-top: 2rem;
  }
}

/* Carrossel de Lojas Online - Mesmo estilo dos restaurantes */
.solucoes-lojas .services-lojas {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.solucoes-lojas .services-lojas::-webkit-scrollbar {
  display: none;
}

.solucoes-lojas .service-loja-item {
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
}

/* Controles do Carrossel de Lojas */
.solucoes-lojas .carousel-controls-lojas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.solucoes-lojas .carousel-control-lojas {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.solucoes-lojas .carousel-control-lojas:hover {
  background: #fff;
  color: #000;
}

/* Removido: Setas de navegação - apenas indicadores serão usados */



/* Estilos do Carrossel de Restaurantes - Adaptado da estrutura da index */
.solucoes-restaurantes .services-restaurantes-wrapper {
  position: relative;
  margin: 1rem auto;
  width: calc(100% + 6rem);
  max-width: calc(100% + 6rem);
  padding: 0.5rem 1rem 0.1rem 1rem;
  background-color: #fff;
  transition: transform 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

/* Ícone personalizado para o título de restaurantes - Garfo e Faca Cruzados */
.icon-restaurantes-title {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--fg), #333);
  border-radius: 50%;
  position: relative;
  margin-right: 0.8rem;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* Garfo */
.icon-restaurantes-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 0.15rem;
  height: 1.2rem;
  background: white;
  border-radius: 0.1rem;
}

/* Cabeça do garfo */
.icon-restaurantes-title::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 35%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 0.4rem;
  height: 0.3rem;
  background: white;
  border-radius: 0.1rem 0.1rem 0 0;
  box-shadow:
    0 0.1rem 0 white,
    0 0.2rem 0 white;
}

/* Faca */
.icon-restaurantes-title .knife {
  position: absolute;
  top: 50%;
  right: 35%;
  transform: translate(50%, -50%) rotate(15deg);
  width: 0.15rem;
  height: 1.2rem;
  background: white;
  border-radius: 0.1rem;
}

/* Cabeça da faca */
.icon-restaurantes-title .knife::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.2rem;
  background: white;
  border-radius: 0.1rem;
}

.restaurantes-title:hover .icon-restaurantes-title {
  transform: scale(1.1) rotate(10deg);
}

.solucoes-restaurantes .services-restaurantes-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
  padding-bottom: 0.2rem;
  padding-top: 0.5rem;
  margin: 0 auto;
}

.solucoes-restaurantes .services-restaurantes-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  gap: 0.5rem;
  will-change: transform;

  /* Força todos os cards a ficarem em uma linha */
  flex-wrap: nowrap;

  /* Garante que os cards fiquem lado a lado */
  justify-content: flex-start;
}

/* Desktop: 3 slides por view */
@media (min-width: 1024px) {
  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 calc(33.333% - 0.333rem);
  }
}

/* Tablet: 2 slides por view */
@media (min-width: 768px) and (max-width: 1023px) {
  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 calc(50% - 0.25rem);
  }
}

/* Mobile: 1 slide por view */
@media (max-width: 767px) {
  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 100%; /* Ocupando 100% da largura */
    margin: 0; /* Remove margens laterais */
    width: 100%; /* Largura total da tela */
    max-width: 100vw; /* Máximo da viewport */
  }
}

.solucoes-restaurantes .service-restaurante-slide {
  flex: 0 0 12.5%; /* Cada slide ocupa 1/8 da largura total */
  min-height: 100%;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
}

/* Setas de navegação - com gradiente igual da index */
.solucoes-restaurantes .slider-arrow {
  background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Remover setas no desktop (mantém mobile oculto até ficar visível via JS, se necessário) */
@media (min-width: 1024px) {
  .solucoes-restaurantes .slider-arrow {
    display: none;
  }
}

/* Estilo para os cards de restaurante no carrossel - 3 por visualização */
.solucoes-restaurantes .servico-restaurante-card {
  flex: 0 0 calc(32% - 0.5rem); /* Reduzido para caber no container expandido */
  min-height: 100%;
  box-sizing: border-box;
  padding: 2.5rem 1.8rem;
  background: #000;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0 0.2rem;

  /* Garante que os cards fiquem visíveis */
  opacity: 1;
  visibility: visible;
}

.solucoes-restaurantes .servico-restaurante-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.solucoes-restaurantes .slider-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.solucoes-restaurantes .slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.solucoes-restaurantes .slider-arrow-left {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.solucoes-restaurantes .slider-arrow-right {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.solucoes-restaurantes .slider-arrow.visible {
  opacity: 1;
  visibility: visible;
}

.solucoes-restaurantes .slider-arrow i {
  font-size: 1.2rem;
}

/* Indicadores de navegação */
.solucoes-restaurantes .services-restaurantes-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem auto 3rem;
  width: 100%;
}

.solucoes-restaurantes .indicator-restaurante {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.solucoes-restaurantes .indicator-restaurante.active {
  background-color: #000000;
  transform: scale(1.2);
}

.solucoes-restaurantes .indicator-restaurante:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

.restaurantes-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.restaurantes-carousel-wrapper {
  overflow-x: hidden;
  position: relative;
}

.restaurantes-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
  padding: 20px 0;
}

.carousel-item {
  flex: 0 0 350px;
  min-width: 350px;
  max-width: 350px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #000;
  font-size: 18px;
}

.carousel-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translateY(-50%);
}

/* Responsividade do Carrossel - SOMENTE TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Diminui espaçamento da seção de restaurantes */
  .solucoes-restaurantes {
    padding-top: 2.5rem;
    margin-top: 1.5rem;
  }

  .solucoes-restaurantes .services-restaurantes-wrapper {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    left: 0;
    transform: none;
  }

  .solucoes-restaurantes .services-restaurantes-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .services-restaurantes-slider {
    width: 100vw;
    gap: 1.5rem;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 por linha em tablets */
    padding: 1.5rem;
    box-sizing: border-box;
  }

  /* Indicadores para os 8 cards de restaurantes - SOMENTE TABLET */
  .solucoes-restaurantes .services-restaurantes-indicators {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-restaurantes .indicator-restaurante {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .solucoes-restaurantes .indicator-restaurante.active {
    background-color: #000000;
    transform: scale(1.3);
  }

  .solucoes-restaurantes .indicator-restaurante:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
  }

  /* Responsividade para Lojas Online - Mesma configuração dos restaurantes */
  .solucoes-lojas .services-lojas-wrapper {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    left: 0;
    transform: none;
  }

  .solucoes-lojas .services-lojas-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .solucoes-lojas .services-lojas-slider {
    width: 100vw;
    gap: 1.5rem;
    box-sizing: border-box;
  }

  .solucoes-lojas .servico-loja-card {
    flex: 0 0 calc(50% - 0.75rem);
    padding: 1.5rem;
    box-sizing: border-box;
  }
}

/* Media query específico para resolução 390x844 (modo responsivo de celular) */
@media (max-width: 768px) {
  /* Remove padding lateral da seção principal e diminui espaçamento */
  .solucoes-restaurantes {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2rem;
    margin-top: 1rem;
  }

  .solucoes-restaurantes .services-restaurantes-wrapper {
    padding: 0; /* Remove padding lateral para ocupar 100% da largura */
    width: 100vw; /* Largura exata da viewport */
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .servico-restaurante-card {
    flex: 0 0 100vw; /* Largura exata da viewport */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin: 0; /* Remove margens laterais */
    width: 100vw; /* Largura exata da viewport */
    max-width: 100vw; /* Máximo da viewport */
    box-sizing: border-box;
  }

  .solucoes-restaurantes .services-restaurantes-slider {
    gap: 0; /* Remove gap entre containers */
    width: 100vw; /* Largura exata da viewport */
    box-sizing: border-box;
    /* Garantir que cada slide ocupe exatamente a largura da tela em mobile */
    scroll-snap-type: x mandatory;
  }
  
  .solucoes-restaurantes .services-restaurantes-container {
    /* Centralizar o container em mobile e tablet */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100vw; /* Largura exata da viewport */
    max-width: 100vw;
    box-sizing: border-box;
  }

  .solucoes-restaurantes .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .solucoes-restaurantes .services-restaurantes-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 3rem;
    width: 100%;
  }

  .solucoes-restaurantes .indicator-restaurante {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  /* Responsividade para Lojas Online - Outros dispositivos móveis */
  .solucoes-lojas .services-lojas-wrapper {
    padding: 0; /* Remove padding lateral para ocupar 100% da largura */
  }

  .solucoes-lojas .servico-loja-card {
    flex: 0 0 100%; /* 1 por linha em mobile, ocupando 100% da largura */
    padding: 1.5rem;
    margin: 0; /* Remove margens laterais */
    width: 100%; /* Largura total da tela */
    max-width: 100vw; /* Máximo da viewport */
  }

  .solucoes-lojas .services-lojas-slider {
    gap: 0; /* Remove gap entre containers */
    /* Garantir que cada slide ocupe exatamente a largura da tela em mobile */
    scroll-snap-type: x mandatory;
  }
  
  .solucoes-lojas .services-lojas-container {
    /* Centralizar o container em mobile e tablet */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .solucoes-lojas .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }


}

@media (max-width: 480px) {
  .solucoes-restaurantes .servico-restaurante-card {
    padding: 1rem;
  }

  .solucoes-restaurantes .servico-restaurante-card h3 {
    font-size: 1.1rem;
  }

  .solucoes-restaurantes .servico-restaurante-card p {
    font-size: 0.9rem;
  }

  .carousel-item {
    flex: 0 0 250px;
    min-width: 250px;
    max-width: 250px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /* Responsividade para Lojas Online - Idêntica aos Restaurantes */
  .solucoes-lojas .servico-loja-card {
    padding: 1rem;
  }

  .solucoes-lojas .servico-loja-card h3 {
    font-size: 1.1rem;
  }

  .solucoes-lojas .servico-loja-card p {
    font-size: 0.9rem;
  }
}

/* Setas de navegação para carrossel de Tiendas Online - APENAS DESKTOP */
@media (min-width: 1025px) {
  .solucoes-lojas .slider-arrow {
    background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .solucoes-lojas .slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .solucoes-lojas .slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }

  .solucoes-lojas .slider-arrow-left {
    left: 1rem;
  }

  .solucoes-lojas .slider-arrow-right {
    right: 1rem;
  }

  .solucoes-lojas .slider-arrow i {
    font-size: 1.2rem;
  }
}

/* Setas de navegação para carrossel de Restaurantes - APENAS DESKTOP */
@media (min-width: 1025px) {
  .solucoes-restaurantes .slider-arrow {
    background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .solucoes-restaurantes .slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .solucoes-restaurantes .slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }

  .solucoes-restaurantes .slider-arrow-left {
    left: 1rem;
  }

  .solucoes-restaurantes .slider-arrow-right {
    right: 1rem;
  }

  .solucoes-restaurantes .slider-arrow i {
    font-size: 1.2rem;
  }
}

/* Ocultar setas em modos responsivos (tablet e mobile) */
@media (max-width: 1024px) {
  .solucoes-lojas .slider-arrow,
  .solucoes-restaurantes .slider-arrow {
    display: none !important;
  }
}

/* CTA reposicionado após o carrossel */
.cta-pos-carrossel {
  background: linear-gradient(-45deg, #0d0d0d, #5e5d5d, #b6b3b3, #111);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: white;
  padding: 4rem 0;
  margin-top: 0;
}

.cta-pos-carrossel .container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-pos-carrossel h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.cta-pos-carrossel .btn {
  background: white;
  color: #111;
  margin-bottom: 1rem;
  border: 2px solid white;
}

.cta-pos-carrossel .btn:hover {
  background: transparent;
  color: white;
}

.cta-pos-carrossel p {
  color: white;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer Simplificado */
.footer-simple {
  background: var(--bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-simple .footer__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-simple .footer__logo {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-simple .footer__logo img {
  width: 120px;
  height: auto;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.footer-simple .footer__logo img:hover {
  filter: brightness(1);
}

.footer-simple .footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-simple .footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-simple .footer__social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-simple .footer__copyright {
  margin-top: 1rem;
}

.footer-simple .footer__copyright p {
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-servicos {
    padding: 6rem 0 4rem;
    min-height: 50vh;
  }

  .hero-servicos__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    white-space: normal;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .restaurantes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .servico-card,
  .servico-restaurante-card {
    padding: 1.5rem;
  }

  .cta-principal,
  .cta-restaurantes {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-servicos__content {
    padding: 0 1rem;
  }

  .hero-servicos__title {
    font-size: clamp(1.25rem, 7vw, 2rem);
  }

  .hero-servicos__subtitle {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
}
