/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
.section {
  padding: 5rem 0;
}

.section__title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1f2937;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #d97706;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section__title--light {
  color: #f9fafb;
}

.section__title--light::after {
  background: #f59e0b;
}

.section__subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.section--dark {
  background: #111827;
  color: #f3f4f6;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn--primary {
  background: #d97706;
  color: #fff;
}

.btn--primary:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn--full {
  width: 100%;
}

/* ========================================
   HEADER / NAVEGAÇÃO
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: #1f2937;
}

.header__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d97706;
  padding: 2px;
}

.header__logo-text {
  color: #d97706;
  font-size: 1.5rem;
}

.header__logo-full {
  display: none;
  font-weight: 500;
  font-size: 0.78rem;
  color: #6b7280;
  max-width: 140px;
  line-height: 1.3;
  border-left: 1px solid #e5e7eb;
  padding-left: 0.75rem;
}

@media (min-width: 768px) {
  .header__inner {
    height: 90px;
  }

  .header__logo-img {
    width: 62px;
    height: 62px;
  }

  .header__logo-text {
    font-size: 1.75rem;
  }

  .header__logo-full {
    display: block;
    font-size: 0.85rem;
    max-width: 160px;
  }

  .header__nav-link {
    font-size: 1rem;
  }
}

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1f2937;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.35s ease;
  z-index: 999;
}

.header__nav.open {
  right: 0;
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.header__nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d97706;
  transition: width 0.25s;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #d97706;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }

  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .header__nav-list {
    flex-direction: row;
    gap: 2rem;
  }

  .header__nav-link {
    font-size: 0.95rem;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.70) 100%),
    url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1400&q=85') center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 119, 6, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  padding: 2rem 1.25rem;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero__title-highlight {
  color: #f59e0b;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 90px;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

/* ========================================
   SOBRE
   ======================================== */
.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.about__text p {
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 1.05rem;
}

.about__text strong {
  color: #1f2937;
}

.about__carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #f3f4f6;
}

.about__carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  aspect-ratio: 4 / 3;
}

.about__carousel-track img {
  min-width: 100%;
  object-fit: cover;
}

.about__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.04);
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #374151;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #d97706;
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #d97706;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   SERVIÇOS
   ======================================== */
.services__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-4px);
  border-color: #d97706;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 12px;
  font-size: 1.4rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.service-card__desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services__banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(217, 119, 6, 0.12);
  border-left: 4px solid #d97706;
  border-radius: 8px;
  color: #fde68a;
  font-size: 0.95rem;
}

.services__banner i {
  font-size: 1.3rem;
  color: #f59e0b;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   GALERIA
   ======================================== */
.gallery__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

/* ========================================
   CONTATO
   ======================================== */
.contact__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact__map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact__map iframe {
  display: block;
}

.contact__map-actions {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.contact__map-actions-title {
  color: #f3f4f6;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__map-actions-title i {
  color: #f59e0b;
}

.contact__map-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn--map {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn--gmaps {
  background: rgba(66, 133, 244, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(66, 133, 244, 0.3);
}

.btn--gmaps:hover {
  background: #4285f4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.35);
}

.btn--waze {
  background: rgba(51, 204, 255, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(51, 204, 255, 0.3);
}

.btn--waze:hover {
  background: #0099ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 153, 255, 0.35);
}

@media (max-width: 480px) {
  .contact__map-buttons {
    grid-template-columns: 1fr;
  }
}

.contact__info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.contact__info > p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #374151;
  border-radius: 8px;
  background: #1f2937;
  color: #f3f4f6;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: transparent;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

.footer__inner a {
  color: #d97706;
  font-weight: 600;
  transition: color 0.2s;
}

.footer__inner a:hover {
  color: #b45309;
  text-decoration: underline;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}
