/* ===== Galeria/Carrossel Estilo Banner ===== */
.gallery-carousel {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

/* Track ocupa 100% da largura */
.carousel-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  /* Aspect Ratio ajustado para 16:9 (Padrão) para mostrar mais da imagem */
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* Slides: 100% width/height, cobrindo o container */
.gallery-slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Garante que a imagem inteira apareça */
  background: hsl(var(--card));
  /* Fundo caso a imagem não preencha tudo */
  object-position: center;
  /* Centraliza o corte */
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

/* Botões de Navegação (Estilo Glassmodern) */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: hsl(var(--card) / 0.7);
  backdrop-filter: blur(8px);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Posicionamento */
.gallery-prev {
  left: 2rem;
}

.gallery-next {
  right: 2rem;
}

/* Hover effects */
.gallery-prev:hover,
.gallery-next:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 20px hsl(var(--primary) / 0.5);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev svg,
.gallery-next svg {
  width: 28px;
  height: 28px;
}

/* Dots centralizados na parte inferior do banner */
.gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: hsl(var(--card) / 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-dots button.active {
  width: 32px;
  /* Estilo pílula como no Hero */
  background: hsl(var(--primary));
  border-radius: 999px;
  box-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .carousel-track {
    aspect-ratio: auto;
    height: 300px;
    /* Altura fixa decente para mobile */
  }

  .gallery-prev {
    left: 1rem;
    width: 44px;
    height: 44px;
  }

  .gallery-next {
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .gallery-prev svg,
  .gallery-next svg {
    width: 24px;
    height: 24px;
  }

  .gallery-dots {
    bottom: 1rem;
  }
}


/* ===========================
   MODO ESCURO
   =========================== */
body.dark-mode {
  --background: 220 30% 8%;
  --foreground: 0 0% 98%;
  --card: 220 25% 12%;
  --card-foreground: 0 0% 98%;
  --primary: 210 100% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 20% 15%;
  --muted: 220 15% 20%;
  --muted-foreground: 220 10% 70%;
  --accent: 210 100% 70%;
  --border: 220 20% 25%;
}

/* ===========================
     BOTÃO DE TEMA (☀️ / 🌙)
     =========================== */
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px hsl(var(--primary) / 0.4);
  transition: all 0.3s ease;
  z-index: 50;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px hsl(var(--primary) / 0.6);
}

.theme-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* Theme toggle placed in header (styled to match site) */
.header .theme-toggle,
.theme-toggle.header-toggle {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  padding: 6px;
  margin-right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--primary) / 0.18);
  box-shadow: 0 6px 18px hsl(var(--primary) / 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.header .theme-toggle:hover,
.theme-toggle.header-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsl(var(--primary) / 0.22);
}

.header .theme-toggle svg,
.theme-toggle.header-toggle svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary-foreground));
  fill: currentColor;
}

.theme-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.12);
}

/* pressed state (when dark mode is active) */
.theme-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--card)));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border) / 0.8);
}

/* Fade animation for icon change */
.theme-toggle i {
  animation: fadeInIcon 0.3s ease-in-out;
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

:root {
  --background: 220 20% 97%;
  --foreground: 220 50% 10%;
  --card: 0 0% 100%;
  --card-foreground: 220 50% 10%;
  --primary: 210 100% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 20% 92%;
  --muted: 220 15% 90%;
  --muted-foreground: 220 10% 40%;
  --accent: 210 100% 60%;
  --border: 220 20% 88%;
  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  width: 56px;
  /* ícone maior para melhorar visibilidade */
  height: 56px;
  border-radius: 50%;
  /* circular */
  object-fit: contain;
  /* garante a imagem inteira visível */
  background: white;
  /* evita áreas vazias transparentes */
  padding: 6px;
  /* espaço interno para a imagem não tocar as bordas */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}


body {
  font-family: 'Rajdhani', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* Mobile menu theme toggle button */
.mobile-menu .theme-toggle,
.theme-toggle.mobile-toggle {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--primary) / 0.18);
  box-shadow: 0 6px 18px hsl(var(--primary) / 0.18);
  margin: 0.75rem 0;
}

.mobile-menu .theme-toggle i {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 1024px) {
  .mobile-menu .theme-toggle {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Orbitron', sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 10px 40px hsl(var(--foreground) / 0.1);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px hsl(var(--primary) / 0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsl(var(--primary) / 0.4);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px hsl(var(--foreground) / 0.1);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: hsl(var(--foreground) / 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: hsl(var(--primary));
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground) / 0.8);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Hero Carousel */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--muted) / 0.3), hsl(var(--background)));
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: hsl(var(--primary) / 0.05);
}

.hero-orb-2 {
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: hsl(var(--accent) / 0.05);
  animation-delay: 1s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(hsl(var(--primary)) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--primary)) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-slides {
  position: relative;
  height: 100%;
}

/* Hero slides - entra pela direita e sai pela esquerda */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Slide que está saindo vai para a esquerda */
.hero-slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}



.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.hero-subtitle {
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-nav,
.hero-nav-prev,
.hero-nav-next {
  display: none !important;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: hsl(var(--muted-foreground) / 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  background: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.3));
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.5), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
}

.service-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px hsl(var(--primary) / 0.3);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: hsl(var(--primary));
}

.service-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.service-line {
  margin-top: 1.5rem;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
  transition: width 0.5s ease;
}

.service-card:hover .service-line {
  width: 100%;
}

/* Instagram Gallery */
.instagram {
  padding: 6rem 0;
  background: hsl(var(--muted) / 0.3);
  position: relative;
}

.instagram-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
}

.instagram-widget {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.instagram-widget iframe {
  display: block !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 900px !important;
  height: auto !important;
  min-height: 600px;
}

@media (max-width: 768px) {
  .instagram-widget iframe {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .instagram-widget iframe {
    min-height: 400px;
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.8), hsl(var(--primary) / 0.4), transparent);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
  transform: scale(0);
  transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay svg {
  transform: scale(1);
}

.instagram-cta {
  text-align: center;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.3));
  position: relative;
  overflow: hidden;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-orb-1 {
  top: 50%;
  right: 0;
  width: 400px;
  height: 400px;
  transform: translateY(-50%) translateX(50%);
  background: hsl(var(--primary) / 0.05);
}

.about-orb-2 {
  top: 25%;
  left: 0;
  width: 300px;
  height: 300px;
  transform: translateX(-50%);
  background: hsl(var(--accent) / 0.05);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  position: relative;
}

.about-text {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.about-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: hsl(var(--primary));
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}

.stat-card:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(var(--muted) / 0.3), hsl(var(--background)));
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-stars {
  display: flex;
}

.reviews-stars svg {
  width: 24px;
  height: 24px;
}

.star-filled {
  color: #eab308;
  fill: #eab308;
}

.star-empty {
  color: hsl(var(--muted));
}

.reviews-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-form {
  padding: 2rem;
  border-radius: 1rem;
}

.review-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.star-rating {
  display: flex;
  gap: 0.5rem;
}

.star-rating button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}

.star-rating button:hover {
  transform: scale(1.1);
}

.star-rating svg {
  width: 40px;
  height: 40px;
  transition: color 0.3s ease;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.review-header {
  display: flex;
  gap: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.review-status {
  margin-left: 1rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  align-self: center;
}

.review-status.pending {
  background: #f97316;
  /* orange */
  color: white;
}

.review-status.local {
  background: #3b82f6;
  /* blue */
  color: white;
}

.review-status.sent {
  background: #10b981;
  /* green */
  color: white;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin: 0.75rem 0;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-comment {
  color: hsl(var(--muted-foreground));
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: hsl(var(--muted) / 0.3);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: hsl(var(--muted-foreground));
}

.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 200px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: 2rem;
  border-radius: 1rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, hsl(var(--muted)), hsl(var(--background)));
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.5), transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: hsl(var(--muted-foreground));
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: hsl(var(--primary));
  border-radius: 50%;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary));
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-pulse-2 {
  animation-delay: 0.5s;
  opacity: 0.5;
}

.whatsapp-inner {
  position: relative;
  width: 64px;
  height: 64px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-inner {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.6);
}

.whatsapp-inner svg {
  width: 32px;
  height: 32px;
  color: white;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px hsl(var(--foreground) / 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 40px hsl(var(--foreground) / 0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}


/* Instagram widget removed; placeholder styles */
.instagram-placeholder {
  width: 100%;
  padding: 1.25rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: hsl(var(--foreground));
}



/* =======================================
   🔄 Suavização do efeito de transição Hero
   ======================================= */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.prev {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}

.hero-slide.next {
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}

/* ⭐ Avaliações */
.star-rating {
  display: flex;
  gap: 6px;
}

.star-rating button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.star-rating i {
  width: 26px;
  height: 26px;
  stroke: gold;
  fill: none;
  transition: fill 0.2s, transform 0.15s;
}

.star-rating i.filled {
  fill: gold;
}

.star-rating svg.filled {
  fill: gold;
}

.star-rating button:hover i {
  transform: scale(1.1);
}

.review-stars i {
  width: 18px;
  height: 18px;
  stroke: gold;
  fill: gold;
}

/* ===========================
   Mobile Call Button (Conversion Booster)
   =========================== */
.mobile-call-btn {
  display: none;
  /* Hidden by default on desktop */
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 999;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.4);
  font-weight: 700;
  border: 2px solid hsl(var(--background));
  transition: transform 0.3s ease;
}

.mobile-call-btn:active {
  transform: scale(0.95);
}

.call-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-inner svg {
  width: 20px;
  height: 20px;
  animation: shake 2s infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    /* Show only on mobile/tablet */
  }
}

/* ===========================
   FAQ Section (GEO Optimized)
   =========================== */
.faq {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, hsl(var(--muted) / 0.3), hsl(var(--background)));
  /* overflow: hidden; Removed to allow hover effects */
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px hsl(var(--primary) / 0.15);
  border-color: hsl(var(--primary) / 0.3);
}

.faq-question {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
}

.faq-question::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px hsl(var(--primary) / 0.3);
}

.faq-answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 1rem;
  margin-left: 0;
}