/* ==========================================================================
   CONFIGURAÇÕES GLOBAIS E VARIÁVEIS OTIMIZADAS
   ========================================================================== */
:root {
  /* Cores Principais */
  --primary-color: #0973bd;
  --primary-color-hover: #075d97;
  --accent-color: #f0c040;
  --background-color: #ecf4f8;
  --stars-color: #f5b50a;
  --white-color: #fff;

  /* Cores de Texto */
  --text-primary: #333;
  --text-secondary: #666;
  --text-medium: #555;
  --text-light: #f5f5f5;
  --text-inverted: var(--white-color);
  --text-muted: #888;
  --text-dark: #444;

  /* Cores de Feedback e Marca */
  --whatsapp-color: #25d366;
  --whatsapp-color-hover: #1a8140;

  /* Cores de Fundo e Sobreposição */
  --footer-bg: #1e1e1e;
  --border-color: #ccc;
  --light-overlay-color: #ffffff1a;
  --primary-overlay: hsla(205, 91%, 39%, 0.75);
  --primary-overlay-hover: #075d98cc;

  /* Fontes */
  --font-body: "Inter", sans-serif;
  --font-headings: "Raleway", sans-serif;
  --font-emphasis: "Merriweather", serif;

  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 900;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.25rem;
  --font-size-lg: 1.875rem;

  /* Espaçamento */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Estilos de UI (Interface de Usuário) */
  --border-radius-sm: 8px;
  --border-radius-md: 10px;
  --border-radius-pill: 50px;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.5);
  --transition-speed: 0.5s;
  --transition-timing: ease-in-out;
}

* {
  font-family: var(--font-body);
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--background-color);
  color: var(--text-primary);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--primary-color);
}

.subtitulo {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--font-size-md);
  max-width: 90vw;
}

section,
main {
  padding: var(--space-md);
}

a {
  color: var(--primary-color);
  transition: color var(--transition-speed) var(--transition-timing);
}

i {
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  line-height: 1.6;
}

strong {
  font-weight: var(--font-weight-bold);
}

strong.primary {
  color: var(--primary-color);
}

.item-mobile {
  display: none !important;
}

/* ==========================================================================
   TELA DE LOADING
   ========================================================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-screen img {
  max-width: 150px;
  animation: blinkAnimation 1.5s var(--transition-timing) infinite;
}

@keyframes blinkAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================================
   LAYOUT PRINCIPAL (HEADER E FOOTER)
   ========================================================================== */
header {
  background-color: var(--primary-color);
  color: var(--text-inverted);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#logo-header-link {
  text-decoration: none;
  color: var(--text-inverted);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

#logo-header-link.active {
  pointer-events: none;
}

header h1 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
}

header .logo-header-desktop {
  max-height: 100px;
  margin-right: var(--space-md);
}

header .logo-header-mobile {
  display: none;
  margin: 0 auto;
  max-height: 100px;
}

nav {
  display: flex;
  align-items: center;
  transition: right var(--transition-speed) var(--transition-timing);
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.nav-lista {
  display: flex;
  gap: var(--space-sm);
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-lista li a {
  color: var(--text-inverted);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  font-family: var(--font-headings);
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: color var(--transition-speed) var(--transition-timing);
  border-radius: var(--border-radius-sm);
  padding: 5px;
}

.nav-lista li a.active {
  color: var(--accent-color);
  opacity: 0.8;
  pointer-events: none;
}

/* ==========================================================================
   MENU DROPDOWN RESPONSIVO ('MAIS')
   ========================================================================== */
.nav-more-container {
  position: relative;
}

#nav-more-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

#nav-more-btn .fa-chevron-down {
  transition: transform var(--transition-speed) var(--transition-timing);
}

#nav-more-btn.open .fa-chevron-down {
  transform: rotate(180deg);
}

.nav-more-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-hover);
  list-style: none;
  margin: 8px 0 0 0;
  z-index: 1000;
  border: 1px solid #ddd;
  overflow: hidden;
}

.nav-more-dropdown.show {
  display: block;
}

.nav-more-dropdown li a {
  display: flex !important;
  text-decoration: none;
  justify-content: flex-start !important;
  align-items: center;
  width: 100%;
  padding: var(--space-sm);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  gap: var(--space-sm);
  transition: background-color var(--transition-speed) var(--transition-timing);
}

.nav-more-dropdown li a i {
  width: var(--font-size-md);
  height: var(--font-size-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   RODAPE
   ========================================================================== */
.rodape {
  background: var(--footer-bg);
  color: var(--text-inverted);
  padding: 20px;
}

.container-rodape {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  gap: 20px;
}

.container-rodape .descricao {
  font-family: var(--font-emphasis);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.rodape .logo-footer {
  max-width: 100px;
  margin: -20px 0 -10px;
}

.rodape .coluna.logo {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: center;
}

.rodape .rodape-descricao {
  font-size: 0.9rem;
}

.rodape .contato-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 50px;
}

.rodape .coluna.navegacao {
  margin-top: 20px;
  width: 100%;
  border-top: 1px solid var(--light-overlay-color);
  border-bottom: 1px solid var(--light-overlay-color);
}

.rodape .coluna.navegacao ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rodape .coluna.navegacao ul li {
  text-align: center;
  display: flex;
  padding: 5px 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.rodape .coluna.navegacao ul li a {
  border-radius: var(--border-radius-sm);
  padding: 5px 10px;
  transition: background-color var(--transition-speed) var(--transition-timing);
}

.rodape .coluna.navegacao ul li a.active {
  color: var(--accent-color);
  opacity: 0.5;
  pointer-events: none;
}

.rodape h3,
.rodape h4 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.rodape ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape ul li {
  margin: 5px 0;
}

.rodape a {
  color: var(--text-inverted);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-timing);
}

.redes-sociais a i {
  transition: all var(--transition-speed) var(--transition-timing);
}

.rodape #link-dev {
  color: var(--text-muted);
  text-decoration: underline;
}

.rodape .redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 110px;
}

.rodape .redes-sociais {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.rodape .redes-sociais a {
  font-size: 20px;
}

.rodape .copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   AVALIAÇÕES DO GOOGLE
   ========================================================================== */
.avaliacoes-google {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) 0 var(--space-xl);
  gap: var(--space-xl);
}

.avaliacoes-google h2 {
  margin-bottom: 0;
}

#reviews-container {
  max-width: 1200px;
  width: 100%;
}

.grid-avaliacoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  width: 100%;
  margin: 0 auto;
}

.card-avaliacao {
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  width: 100%;
  max-width: 350px;
  min-height: 235px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition: all var(--transition-speed) var(--transition-timing);
}

.avaliacao-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-inverted);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  border: none;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.nome-cliente {
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  transition: color var(--transition-speed) var(--transition-timing);
}

.stars {
  color: var(--stars-color);
}

.stars i {
  margin-right: 2px;
}

.avaliacao-body {
  border-top: 1px solid #eee;
  padding-top: var(--space-md);
  height: 50%;
}

.texto-avaliacao {
  color: var(--text-secondary);
  text-align: left;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition-speed) var(--transition-timing);
}

/* ==========================================================================
   DESTAQUE E CARDS
   ========================================================================== */
.destaque {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  height: auto;
  min-height: calc(100vh - 116px);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.destaque-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.destaque-slide.active {
  opacity: 1;
}

.destaque-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-overlay-hover);
  z-index: 2;
}

.destaque .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.destaque h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--space-xxl);
  line-height: normal;
}

.destaque p,
.destaque li {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

.destaque p {
  margin-bottom: var(--space-md);
}

.destaque li {
  text-align: justify;
}

.destaque strong {
  font-style: italic;
}

.destaque ul {
  list-style: none;
  padding: 0;
  line-height: 2;
  width: fit-content;
  margin: var(--space-xl) auto 0;
}

.destaque .whatsapp-link {
  color: var(--text-inverted);
  text-decoration: none;
}

.servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.servicos h2 {
  margin-bottom: 0;
}

.ver-todos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: var(--primary-color);
  color: var(--text-inverted);
  border-radius: var(--border-radius-md);
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: background-color var(--transition-speed) var(--transition-timing),
    transform var(--transition-speed) var(--transition-timing);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.card-link {
  text-decoration: none;
}

.card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
  transition: transform var(--transition-speed) var(--transition-timing),
    box-shadow var(--transition-speed) var(--transition-timing);
  width: 400px;
  height: 400px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--text-primary);
}

.card p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 2;
  background: var(--primary-overlay);
  color: var(--text-inverted);
  font-size: var(--font-size-base);
  font-family: var(--font-headings);
  padding: var(--space-md) var(--space-sm);
  font-weight: var(--font-weight-semibold);
  transition: background-color var(--transition-speed) var(--transition-timing);
}

.card-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image-track {
  display: flex;
  height: 100%;
  transition: transform 1s var(--transition-timing);
}

.card-image-track img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WIDGET BEHOLD
   ========================================================================== */
.instagram-feed {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.instagram-feed h2 {
  margin-bottom: 0;
}

.instagram-feed .instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  line-height: 2;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-inverted);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.instagram-feed .instagram-link i {
  font-size: var(--font-size-md);
  width: var(--space-lg);
  height: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-feed .instagram-link span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CARDS DE PRODUTOS
   ========================================================================== */
.produtos {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.produtos h2 {
  margin-bottom: 0;
}

.produtos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  align-items: stretch;
}

.produto-track {
  position: relative;
  background: var(--text-inverted);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
  width: 400px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition-speed) var(--transition-timing),
    transform var(--transition-speed) var(--transition-timing);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  cursor: pointer;
}

.produto-track img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.produto-track h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-body);
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--text-primary);
}

.produto-track .linha {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  margin: 0 0 var(--space-md);
}

.produto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-overlay-hover);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-speed) var(--transition-timing);
}

.produto-overlay .ver-mais {
  color: var(--text-inverted);
  background-color: transparent;
  padding: 12px 24px;
  border: 2px solid var(--text-inverted);
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-timing);
}

/* ==========================================================================
   PÁGINAS DE DETALHE
   ========================================================================== */
.bloco {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
  margin: var(--space-xxl) auto;
  align-items: flex-start;
  justify-content: space-between;
  width: 90vw;
  max-width: 900px;
}

.bloco.invertido {
  flex-direction: row-reverse;
}

.bloco .texto {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bloco .texto h2,
.bloco .texto h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
  text-align: center;
}

.bloco .texto p {
  text-align: justify;
}

.bloco .imagem {
  flex: 1;
  text-align: center;
  max-width: 400px;
}

.bloco.principal .titulo-produto {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-headings);
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.bloco.principal .imagem {
  height: auto;
  width: auto;
}

.bloco.principal .imagem img {
  aspect-ratio: 1 / 1;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.bloco.principal .preco-produto {
  margin: var(--space-lg) 0 0;
}

.bloco.principal .preco-destaque {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.bloco .imagem img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.bloco ul {
  padding-left: 1.25rem;
}

.bloco ul li {
  list-style: disc;
}

.bloco li::marker {
  color: var(--primary-color);
}

.servicos-detalhe .bloco .imagem {
  height: 400px;
  background-color: #333;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.servicos-detalhe .bloco .imagem .card-image-slider {
  height: 100%;
}

.ver-mais-produtos {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-inverted);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: var(--font-weight-bold);
  transition: background-color var(--transition-speed) var(--transition-timing);
  text-decoration: none;
  text-align: center;
  margin-top: var(--space-xl);
}

/* ==========================================================================
   MODAL (SWEETALERT)
   ========================================================================== */
.swal2-title {
  color: var(--primary-color);
  font-family: var(--font-body);
}

.swal2-confirm {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.swal2-confirm:active {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(2px);
}

.swal2-deny {
  background-color: var(--text-inverted);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
}

.swal2-deny:active {
  background-color: var(--text-inverted);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transform: translateY(2px);
}

.swal2-cancel {
  background-color: red;
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
}

.swal2-cancel:active {
  background-color: red;
  color: var(--primary-color);
  transform: translateY(2px);
}

.swal2-timer-progress-bar {
  background-color: var(--primary-color);
}

.swal2-icon {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.swal2-icon-success {
  border-color: var(--primary-color) !important;
}

.swal2-icon-success .swal2-success-line-tip,
.swal2-icon-success .swal2-success-line-long {
  background-color: var(--primary-color) !important;
}

.swal2-icon-success .swal2-success-ring {
  border-color: var(--primary-color) !important;
}

.swal2-icon-error {
  border-color: var(--primary-color) !important;
}

.swal2-icon-error .swal2-x-mark-line-left,
.swal2-icon-error .swal2-x-mark-line-right {
  background-color: var(--primary-color) !important;
}

.swal2-icon-warning {
  border-color: var(--primary-color) !important;
}

.swal2-icon-warning .swal2-warning-body,
.swal2-icon-warning .swal2-warning-dot {
  background-color: var(--primary-color) !important;
}

.swal-icon--warning__dot {
  background-color: var(--primary-color) !important;
}

.swal2-loader {
  border-color: var(--primary-color) transparent var(--primary-color)
    transparent;
}

.swal2-close {
  transition: color var(--transition-speed) var(--transition-timing);
}

.swal2-close:focus,
.swal2-close:focus-visible {
  box-shadow: none;
}

.swal-carrossel {
  position: relative;
  margin-bottom: var(--space-md);
}

#swal-imagem {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
}

.swal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-inverted);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color var(--transition-speed);
  z-index: 10;
}

#swal-prev {
  left: 10px;
}

#swal-next {
  right: 10px;
}

.swal-produto-info {
  text-align: center;
  padding: var(--space-md) var(--space-sm) 0;
}

.swal-produto-info .linha {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.swal-produto-info .descricao {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.swal-produto-info .garantia {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: var(--text-dark);
}

.swal-produto-info .preco.preco-avista {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  font-size: 1em;
  margin: 30px 0 0;
}

.swal-produto-info .preco.preco-parcelado {
  margin-top: 5px;
  font-size: var(--font-size-sm);
}

.swal2-custom-footer {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-sm) 0 !important;
  border-top: 1px solid var(--border-color) !important;
  margin-top: var(--space-md);
}

.swal-button-custom {
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--text-inverted);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: transform var(--transition-speed) var(--transition-timing);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 45%;
}

.swal-button-custom {
  background-color: var(--primary-color);
}

.swal-button-custom.whatsapp {
  background-color: var(--whatsapp-color);
}

/* ==========================================================================
   PÁGINA DE CONTATO
   ========================================================================== */
.form-contato-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) auto 0;
  width: 90vw;
  max-width: 600px;
  background-color: var(--white-color);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius-md);
  padding: 1.25rem var(--space-lg) var(--space-xl);
}

.form-contato-container .btn-whatsapp-contato,
.form-contato-container #form-contato .btn-enviar-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-inverted);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  border: none;
  cursor: pointer;
}

.form-contato-container .btn-whatsapp-contato {
  background-color: var(--whatsapp-color);
}

.form-contato-container .btn-whatsapp-contato i {
  font-size: var(--font-size-md);
}

.form-contato-container p {
  text-align: center;
  color: var(--text-medium);
}

.form-contato-container #form-contato .form-group {
  margin-bottom: 20px;
}

.form-contato-container #form-contato .form-group label {
  margin-bottom: 5px;
  color: var(--text-dark);
}

.form-contato-container #form-contato .form-group input,
.form-contato-container #form-contato .form-group textarea {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  color: var(--text-medium);
  width: 100%;
  transition: border-color 0.2s var(--transition-timing);
}

.form-contato-container #form-contato .form-group input:focus,
.form-contato-container #form-contato .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-contato-container #form-contato .form-group:focus-within label {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

.form-contato-container #form-contato .btn-enviar-contato {
  background-color: var(--primary-color);
  width: 100%;
}

.form-contato-container #form-contato .info-contato {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.grecaptcha-badge {
  z-index: 1;
  bottom: 120px !important;
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.btn-float {
  position: fixed;
  right: 10px;
  z-index: 99;
  border: none;
  color: var(--text-inverted);
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: var(--shadow);
  width: 50px;
  max-width: 50px;
  height: 50px;
  max-height: 50px;
  transition: background-color var(--transition-speed),
    transform var(--transition-speed), width var(--transition-speed);
  opacity: 0.5;
}

a.btn-float {
  color: var(--text-inverted);
  text-decoration: none;
}

.btn-float i {
  font-size: 1.5rem;
  color: var(--text-inverted);
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop {
  display: none;
  bottom: 30px;
  background-color: var(--primary-color);
}

#whatsappFloat {
  bottom: 100px;
  background-color: var(--whatsapp-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

#whatsappFloat i {
  font-size: 35px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whatsappFloat span {
  display: none;
  font-size: var(--font-size-base);
  transition: all var(--transition-speed) var(--transition-timing);
  color: var(--text-inverted);
}

/* ==========================================================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE
   ========================================================================== */
.privacy-policy-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
}

.privacy-policy-container h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.privacy-policy-container .last-updated {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.privacy-policy-container h2 {
  font-size: 1.5rem;
  color: var(--primary-color-hover);
  text-align: left;
  border-bottom: 2px solid var(--background-color);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy-container p {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.privacy-policy-container ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy-container li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.privacy-policy-container a {
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
}

.privacy-policy-container hr {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 3rem 0;
}

/* ==========================================================================
   ESTILOS DE SCROLLBAR
   ========================================================================== */
* {
  scrollbar-width: thin;
  scrollbar-color: #0973bd #ecf4f8;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #ecf4f8;
}

*::-webkit-scrollbar-thumb {
  background-color: #0973bd;
  border-radius: 4px;
  border: 1px solid #ecf4f8;
  transition: background-color 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #075d97;
}

/* ==========================================================================
   Estilos para hover (apenas para dispositivos com suporte a hover)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--primary-color-hover);
  }

  .nav-lista li a:hover {
    color: var(--accent-color);
    background-color: var(--light-overlay-color);
  }

  #nav-more-btn:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-more-dropdown li a:hover {
    background-color: var(--background-color);
    color: var(--primary-color-hover);
  }

  .rodape .coluna.navegacao ul li a:hover {
    background-color: var(--light-overlay-color);
  }

  .rodape a:hover {
    color: var(--accent-color);
  }

  .redes-sociais a:hover .whatsapp {
    color: var(--whatsapp-color);
  }

  .redes-sociais a:hover .instagram {
    background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .redes-sociais a:hover i {
    transform: scale(1.2);
  }

  .rodape #link-dev:hover {
    color: var(--text-inverted);
  }

  .destaque .whatsapp-link:hover {
    text-decoration: underline;
  }

  .card.zoom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-heavy);
  }

  .card:hover p {
    background: var(--primary-overlay-hover);
  }

  .ver-todos:hover {
    background-color: var(--primary-color-hover);
    color: var(--text-inverted);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
  }

  .produto-track:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
  }

  .produto-track:hover .produto-overlay {
    opacity: 1;
  }

  .produto-overlay .ver-mais:hover {
    background-color: var(--text-inverted);
    color: var(--primary-color);
  }

  .ver-mais-produtos:hover {
    background-color: var(--primary-color-hover);
    color: var(--text-inverted);
  }

  .instagram-feed .instagram-link:hover {
    text-decoration: underline;
    color: var(--primary-color-hover);
  }

  .swal2-close:hover {
    color: var(--primary-color-hover);
  }

  .swal-nav-btn:hover {
    background-color: var(--primary-color-hover);
  }

  .swal-button-custom:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--text-inverted);
  }

  .swal-button-custom:hover {
    background-color: var(--primary-color-hover);
  }

  .swal-button-custom.whatsapp:hover {
    background-color: var(--whatsapp-color-hover);
  }

  .swal2-confirm:hover {
    background-color: var(--primary-color);
    color: white;
    opacity: 0.9;
  }

  .swal2-deny:hover {
    background-color: var(--text-inverted);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    opacity: 0.9;
  }

  .swal2-cancel:hover {
    background-color: red;
    color: var(--primary-color);
    opacity: 0.9;
  }

  .form-contato-container .btn-whatsapp-contato:hover {
    background-color: var(--whatsapp-color-hover);
  }

  .form-contato-container #form-contato .btn-enviar-contato:hover {
    color: var(--text-inverted);
    background-color: var(--primary-color-hover);
  }

  .btn-float:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  #backToTop:hover {
    background-color: var(--primary-color-hover);
  }

  #whatsappFloat:hover {
    background-color: var(--whatsapp-color-hover);
    border-radius: var(--border-radius-pill);
    width: fit-content;
    max-width: none;
  }

  #whatsappFloat:hover i {
    width: fit-content;
    height: fit-content;
    font-size: var(--font-size-md);
  }

  #whatsappFloat:hover span {
    display: block;
  }

  .card-avaliacao:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background-color: var(--primary-overlay-hover);
  }

  .card-avaliacao:hover .nome-cliente {
    color: var(--text-inverted);
  }

  .card-avaliacao:hover .texto-avaliacao {
    color: var(--text-inverted);
  }
}

/* ==========================================================================
   DESIGN RESPONSIVO
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .bloco.principal .imagem {
    max-width: 350px;
    height: auto !important;
  }

  .bloco.principal .imagem img {
    max-width: 350px;
    height: auto !important;
  }
}

@media (max-width: 1050px) {
  header {
    justify-content: center;
  }

  nav {
    width: 100%;
    margin-top: var(--space-md);
    justify-content: center;
  }

  .nav-container {
    justify-content: center;
  }

  .destaque {
    min-height: calc(100vh - 174px);
  }
}

@media (max-width: 830px) {
  .rodape .contato-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
  }

  .rodape .coluna.logo {
    align-items: center;
    gap: 20px;
  }

  .rodape .contato-container h4 {
    margin-bottom: 0;
  }

  .rodape .coluna.contato {
    text-align: right;
  }

  .rodape .coluna.navegacao {
    margin-top: var(--space-md);
  }
}

@media (max-width: 768px) {
  header {
    align-items: flex-start;
  }

  .destaque h2 {
    margin-bottom: var(--space-md);
  }

  .destaque ul {
    margin: 0 auto;
  }

  .destaque p,
  .destaque li {
    font-size: var(--font-size-md);
  }

  .grid,
  .produtos-lista {
    flex-direction: column;
    align-items: center;
  }

  .produto-track {
    width: 90vw !important;
    max-width: 400px;
    height: auto;
  }

  .card {
    width: 90vw !important;
    max-width: 400px;
    height: 90vw !important;
    max-height: 400px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  section,
  main {
    padding: var(--space-md) 0;
  }

  .item-mobile {
    display: block !important;
  }

  .item-desktop {
    display: none;
  }

  .bloco,
  .bloco.invertido {
    flex-direction: column;
    align-items: center;
  }

  .container-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .rodape .coluna.logo {
    gap: 10px;
  }

  .rodape .logo-footer {
    margin: 0;
  }

  .rodape-descricao {
    font-size: 1.1rem;
  }

  .rodape .contato-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
  }

  .rodape .coluna.contato {
    text-align: left;
  }

  .rodape .coluna {
    margin-bottom: 0;
    flex: auto;
  }

  .rodape .copyright span {
    display: block;
  }
}

@media (max-width: 576px) {
  header .logo-header-desktop,
  header h1 {
    display: none;
  }

  header .logo-header-mobile {
    display: block;
  }

  .nav-lista li a,
  #nav-more-btn {
    font-size: var(--font-size-sm);
  }

  h2 {
    font-size: 1.6rem;
  }

  .destaque {
    min-height: calc(100vh - 164.39px);
  }

  .destaque h2 {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    text-shadow: var(--primary-color-hover) 2px 2px 2px;
  }

  .destaque p,
  .destaque li {
    font-size: var(--font-size-base);
  }

  .produto-track img {
    height: auto;
    max-height: 200px;
  }

  .card p,
  .produto-track p {
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .rodape .contato-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .rodape .coluna.logo {
    gap: 10px;
  }

  .rodape-descricao {
    text-align: right;
    font-size: 0.9rem;
  }

  .rodape .coluna.contato {
    text-align: center;
  }

  .rodape .coluna.navegacao ul {
    gap: var(--space-xs);
  }

  .rodape .coluna.navegacao a {
    font-size: 12px;
  }

  .swal2-custom-footer {
    flex-direction: column !important;
    align-items: center;
    gap: var(--space-sm);
  }

  .swal-button-custom {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 380px) {
  .rodape .coluna.contato #email-contato {
    display: inline-block;
    max-width: 80vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }

  .rodape .coluna.navegacao ul {
    flex-direction: column;
    padding: var(--space-xs) 0;
  }

  .rodape .coluna.navegacao li {
    padding: 0;
    margin: 0;
  }

  .rodape .coluna.navegacao a {
    font-size: var(--font-size-sm);
  }
}
