/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0f1013;
  --surface: #16191d;
  --surface-strong: #1f2429;
  --accent: #d9a14c;
  --accent-soft: rgba(217, 161, 76, 0.16);
  --text: #f5f5f5;
  --muted: #c3c6cc;
  --border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(217, 161, 76, 0.12), transparent 26%),
    linear-gradient(180deg, #0d0f12 0%, #101316 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  padding: 0.8rem 0;
  position: static;
  background: rgba(15, 16, 19, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand img {
  height: 180px;
  width: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.hero {
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 0.8rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy small {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-copy p {
  margin: 0 auto;
}

.hero-copy p {
  max-width: 590px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.social-links {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-link img {
  width: 28px;
  height: 28px;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0c47f);
  color: #111;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
}

.meta-value {
  font-weight: 700;
}

.section {
  padding: 2.5rem 0;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.section p {
  max-width: 720px;
  color: var(--muted);
}

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

.card h3 {
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.services-header h2 {
  margin-bottom: 0.8rem;
}

.services-header p {
  padding: 2px 8px;
  margin: 0 auto;
  color: var(--muted);
}

.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.gallery-header h2 {
  margin-bottom: 0.8rem;
}

.container-servicos {
  width: 100%;
  overflow: hidden;
}

.services-scroll {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.2rem;
  margin-top: 1.5rem;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.services-scroll::before,
.services-scroll::after {
  content: '';
  flex: 0 0 0.5rem;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.services-scroll.grabbing {
  cursor: grabbing;
}

.services-scroll .card {
  width: 280px;
  padding: 1.8rem;
  flex: 0 0 280px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  user-select: none;
  -webkit-user-select: none;
  height: fit-content;
}

.card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 161, 76, 0.3);
}

.gallery-wrap {
  margin-top: 1.5rem;
  display: grid;
  gap: 2rem;
}

.gallery-group {
  padding: 1.2rem 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gallery-group h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
  padding: 0 1.2rem;
}

.gallery-grid {
  position: relative;
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.2rem;
  height: 240px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.gallery-grid::before,
.gallery-grid::after {
  content: '';
  flex: 0 0 0.5rem;
}

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

.gallery-grid.grabbing {
  cursor: grabbing;
}

.gallery-grid img {
  width: 280px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.25s ease;
  flex: 0 0 280px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.gallery-prev,
.gallery-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.gallery-grid button.gallery-prev:hover,
.gallery-grid button.gallery-next:hover {
  background: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .gallery-group {
    padding: 1.8rem;
  }

  .gallery-group h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 1.4rem;
    padding: 0;
  }

  .gallery-grid {
    padding: 0;
    height: 300px;
    gap: 1rem;
  }

  .gallery-grid::before,
  .gallery-grid::after {
    flex: 0 0 0.75rem;
  }

  .gallery-grid img {
    width: 320px;
    height: 300px;
    flex: 0 0 320px;
    border-radius: 22px;
  }

  .services-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .services-scroll::before,
  .services-scroll::after {
    display: none;
  }

  .services-scroll .card {
    width: auto;
    flex: 1;
    scroll-snap-align: unset;
    scroll-snap-stop: unset;
  }
}

.map-frame {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#localizacao h2 {
  text-align: center;
}

.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.reviews-header p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(217, 161, 76, 0.25);
}

.review-card-header strong {
  display: block;
  font-size: 1rem;
}

.review-card-header span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.review-stars strong {
  color: var(--text);
}

.review-card p {
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}

.contact-list span strong {
  min-width: 120px;
  text-align: left;
}

.contact-list span em {
  display: block;
  text-align: right;
}

.footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--muted);
}

@media (min-width: 900px) {

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .hero-grid {
    width: 100%;
    max-width: 720px;
    display: grid;
    place-items: center;
    gap: 2rem;
  }

  .hero-meta {
    padding: 2rem;
  }

  .gallery-grid {
    padding: 0 0.8rem;
    gap: 1rem;
  }

  .gallery-grid::before,
  .gallery-grid::after {
    display: none;
  }

  .gallery-prev,
  .gallery-next {
    display: inline-flex;
    position: absolute;
  }

  .gallery-prev {
    left: 0.1rem;
  }

  .gallery-next {
    right: 0.1rem;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: auto;
    justify-content: center;
    min-width: 200px;
    padding: 0.9rem 12rem;
  }

}

@media (min-width: 720px) {
  .header {
        @media (min-width: 900px) {
      .gallery-group {
        position: relative;
        overflow: visible;
      }
    
      .gallery-prev,
      .gallery-next {
        display: inline-flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
      }
    
      .gallery-prev {
        left: -1.2rem; /* mais para fora à esquerda */
      }
    
      .gallery-next {
        right: -1.2rem; /* mais para fora à direita */
      }
    }padding: 1.5rem 0;
  }

  .hero {
    min-height: calc(100vh - 96px);
    padding: 4rem 0 2rem;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    width: auto;
    justify-content: flex-end;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  }

  .btn-group {
    flex-direction: row;
  }

  .btn {
    width: auto;
    min-width: 170px;
  }
}

.gallery-actions {
  display: none;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gallery-actions button {
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-actions button:hover {
  background: rgba(255,255,255,0.15);
}

@media (min-width: 900px) {
  .gallery-actions {
    display: flex;
  }
}

.gallery-group {
  position: relative;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
