:root {
  --gold: #c9a96a;
  --gold-dark: #b38f4e;
  --gold-light: #e7d6b3;
  --white: #ffffff;
  --offwhite: #fcfaf7;
  --text: #2a2a2a;
  --muted: #6f6f6f;
  --line: #ece7de;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Manrope', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
.logo,
.btn,
.btn-outline {
  font-family: 'Manrope', 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 106, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: grid;
  place-items: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.logo-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.25s ease;
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--gold-dark);
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 12px 24px rgba(201, 169, 106, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-outline {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 106, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(201, 169, 106, 0.22);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(201, 169, 106, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold-dark);
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-card {
  background: white;
  border: 1px solid rgba(201, 169, 106, 0.16);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image {
  border-radius: 22px;
  min-height: 560px;
  background:
    linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.06)),
    url('/assets/Hero.png')
    center/cover no-repeat;
}

.hero-floating {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 240px;
}

.hero-floating strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.hero-floating p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 500px;
  background:
    url('/assets/sobre.png')
    center/cover no-repeat;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.about-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.about-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.service-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 22px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.before-after {
  background: var(--offwhite);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}

.ba-side {
  position: relative;
  background-size: cover;
  background-position: center;
}

.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.ba-content {
  padding: 22px;
}

.ba-content h3 {
  margin-bottom: 8px;
}

.ba-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feedback-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.stars {
  color: #d4a94f;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.feedback-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feedback-card strong {
  display: block;
  color: var(--text);
}

.feedback-card span {
  font-size: 0.92rem;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.location-card,
.map-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.location-list {
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.location-list div {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--offwhite);
  color: var(--text);
  border: 1px solid #f0eadf;
}

.real-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  display: block;
}

.cta-final {
  padding: 88px 0 96px;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f8f3ea 100%);
}

.cta-box {
  background: white;
  border: 1px solid rgba(201, 169, 106, 0.18);
  border-radius: 30px;
  padding: 46px 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--muted);
}

footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32d96b, #1ebe5d);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.32);
  z-index: 1001;
  transition: 0.25s ease;
  border: 4px solid white;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .btn-header {
    width: 100%;
    max-width: 320px;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .services-grid,
  .feedbacks-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 480px;
  }

  .about-photo {
    min-height: 420px;
  }

  /* NOVA: Inverte hero no mobile/tablet */
  .hero-grid {
    display: grid !important; /* Força grid para order funcionar */
  }

  .hero-grid > *:first-child { /* Texto (primeiro no HTML) */
    order: 2;
  }

  .hero-grid .hero-card { /* Foto (segundo no HTML) */
    order: 1;
    margin-bottom: 32px; /* Espaço entre foto e texto */
  }
}

@media (max-width: 768px) {
  /* ... outros estilos existentes ... */
  
  
  } 
   
  .ba-image-single {
  height: 300px; /* Altura fixa responsiva */
  background-size: cover;
  background-position: center;
  border-radius: 22px 22px 0 0; /* Arredonda topo */
}
  
 
@media (max-width: 768px) {
  /* ... outros estilos existentes ... */
  
  .ba-images {
    grid-template-columns: 1fr; /* Já existe, mantenha */
    min-height: auto; /* Remove altura fixa */
    height: 300px; /* Altura responsiva maior */
  }
  
  .ba-image-single {
  height: 250px; /* Menor no mobile */
}
  
  .ba-side {
    height: 50%; /* Divide igualmente: antes 50%, depois 50% */
    min-height: unset;
  }
  
  .ba-label {
    top: 12px;
    left: 12px;
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}