/* =====================================================
   STUDIO F. BORGES — CSS
   Reescrito do zero. Zero animações de entrada.
   ===================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #5C4A1E;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography helpers ---- */
.tag {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #8B6914;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #2C1810;
  line-height: 1.1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn--solid {
  background-color: #8B6914;
  color: #FAF8F5;
  border: 1px solid #8B6914;
}

.btn--solid:hover {
  background-color: #6e5310;
  border-color: #6e5310;
}

.btn--outline {
  background-color: transparent;
  color: #8B6914;
  border: 1px solid #8B6914;
}

.btn--outline:hover {
  background-color: #8B6914;
  color: #FAF8F5;
}

.btn--large {
  width: 100%;
  text-align: center;
  padding: 18px 32px;
  font-size: 13px;
  margin-top: 32px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FAF8F5;
  height: 70px;
  border-bottom: 1px solid rgba(139, 105, 20, 0.12);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.navbar__links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #5C4A1E;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: #8B6914;
}

.navbar__cta {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B6914;
  border: 1px solid #8B6914;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background-color 0.2s, color 0.2s;
}

.navbar__cta:hover {
  background-color: #8B6914;
  color: #FAF8F5;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2C1810;
  transition: transform 0.2s, opacity 0.2s;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #FAF8F5;
  border-top: 1px solid rgba(139, 105, 20, 0.12);
  padding: 24px 40px;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #5C4A1E;
  text-transform: uppercase;
}

.mobile-link--cta {
  color: #8B6914;
  border: 1px solid #8B6914;
  padding: 12px 20px;
  text-align: center;
  border-radius: 2px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: 70px; /* compensa navbar fixa */
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
}

/* Esquerda */
.hero__text {
  background-color: #FAF8F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px 64px 80px;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 400;
  color: #2C1810;
  line-height: 1.05;
  margin-bottom: 0;
}

.hero__headline em {
  font-style: italic;
  color: #8B6914;
  display: block;
}

.hero__services {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #5C4A1E;
  margin-top: 24px;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(92, 74, 30, 0.15);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C1810;
}

.stat__label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #5C4A1E;
}

.hero__divider {
  width: 1px;
  height: 40px;
  background-color: rgba(92, 74, 30, 0.25);
  flex-shrink: 0;
}

/* Direita: imagem */
.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
   SOBRE
   ===================================================== */
.sobre {
  padding: 96px 80px;
  background-color: #FAF8F5;
}

.sobre__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sobre__images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre__images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.sobre__text {
  position: sticky;
  top: 100px;
  padding-top: 8px;
}

.sobre__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: #2C1810;
  line-height: 1.1;
  margin-bottom: 32px;
}

.sobre__paragraph {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #5C4A1E;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sobre__bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sobre__bullets li {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5C4A1E;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  color: #8B6914;
  font-size: 10px;
  flex-shrink: 0;
}

/* =====================================================
   SERVIÇOS
   ===================================================== */
.servicos {
  padding: 80px 0;
  background-color: #F5F1EA;
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.servico-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.servico-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.servico-card:hover .servico-card__bg {
  transform: scale(1.04);
}

.servico-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.85) 0%, transparent 60%);
}

.servico-card__content {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.servico-card__number {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #8B6914;
  display: block;
  margin-bottom: 6px;
}

.servico-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #FAF8F5;
  margin-bottom: 10px;
  line-height: 1.1;
}

.servico-card__link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #FAF8F5;
  text-decoration: none;
  display: inline-block;
  transition: letter-spacing 0.2s;
}

.servico-card__link:hover {
  letter-spacing: 0.18em;
}

/* =====================================================
   GALERIA
   ===================================================== */
.galeria {
  padding: 96px 80px;
  background-color: #FAF8F5;
}

.galeria__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.galeria__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.galeria__footer {
  text-align: center;
  margin-top: 48px;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contato {
  padding: 96px 80px;
  background-color: #F5F1EA;
}

.contato__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contato__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contato__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #8B6914;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contato__value {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #2C1810;
  line-height: 1.6;
}

a.contato__value:hover {
  color: #8B6914;
}

.contato__map {
  margin-top: 32px;
  border-radius: 4px;
  overflow: hidden;
}

/* Horários */
.contato__horarios {
  padding: 40px;
  background-color: #FAF8F5;
  border-radius: 4px;
}

.contato__horarios-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #2C1810;
  margin-bottom: 32px;
}

.horarios__table {
  width: 100%;
  border-collapse: collapse;
}

.horarios__table td {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5C4A1E;
  padding: 12px 0;
  border-bottom: 1px solid rgba(92, 74, 30, 0.1);
}

.horarios__table td:last-child {
  text-align: right;
  font-weight: 400;
  color: #2C1810;
}

.horarios__table .fechado {
  color: #999;
  font-style: italic;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: #2C1810;
  padding: 56px 80px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer__nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(250, 248, 245, 0.7);
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #FAF8F5;
}

.footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.45);
  letter-spacing: 0.05em;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1024px) {
  .hero__text {
    padding: 48px 48px 48px 56px;
  }

  .hero__headline {
    font-size: 52px;
  }

  .sobre {
    padding: 72px 56px;
  }

  .sobre__grid {
    gap: 56px;
  }

  .servicos,
  .galeria,
  .contato {
    padding: 72px 56px;
  }

  .footer {
    padding: 48px 56px;
  }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__inner {
    padding: 0 24px;
  }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }

  .hero__text {
    padding: 48px 24px;
    order: 1;
  }

  .hero__headline {
    font-size: 44px;
  }

  .hero__image {
    order: 0;
    height: 360px;
  }

  .hero__image img {
    height: 100%;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__divider {
    display: none;
  }

  /* Sobre */
  .sobre {
    padding: 64px 24px;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__headline {
    font-size: 40px;
  }

  /* Serviços */
  .servicos {
    padding: 64px 0;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .servico-card {
    height: 360px;
  }

  /* Galeria */
  .galeria {
    padding: 64px 24px;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contato */
  .contato {
    padding: 64px 24px;
  }

  .contato__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer {
    padding: 48px 24px;
  }

  .footer__nav {
    gap: 24px;
  }

  .section__headline {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 36px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    text-align: center;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
  }

  .sobre__headline {
    font-size: 34px;
  }
}

/* =====================================================
   WHATSAPP FLUTUANTE
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* =====================================================
   LOGO NO CONTATO
   ===================================================== */
.contato__logo {
  margin-bottom: 28px;
}
