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

:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #96754e;
  --cream: #faf8f5;
  --cream-dark: #f0ebe4;
  --charcoal: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.logo-regular {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: var(--transition);
}

.navbar.scrolled .logo-script {
  color: var(--gold);
}

.navbar.scrolled .logo-regular {
  color: var(--charcoal);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-menu a {
  color: var(--gray-700);
}

.navbar.scrolled .nav-menu a:hover {
  color: var(--gold);
  background: rgba(184, 149, 106, 0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('./images/img-75-1920x1280.jpg?w=1920&q=80') right/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s ease-out;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.05;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: var(--gold-light);
  font-size: 0.85em;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.hero-scroll a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 149, 106, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.diferenciais .btn-outline,
.depoimentos .btn-outline,
.area-atuacao .btn-outline {
  color: var(--gold);
  border-color: var(--gold);
}

.diferenciais .btn-outline:hover,
.depoimentos .btn-outline:hover,
.area-atuacao .btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title .script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== VALORES ===== */
.valores {
  padding: 80px 0;
  background: var(--white);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.valor-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  transition: var(--transition);
  background: var(--cream);
}

.valor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.valor-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.4rem;
}

.valor-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.valor-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ===== QUEM SOU ===== */
.quem-sou {
  padding: 100px 0;
  background: var(--cream);
}

.quem-sou-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}

.image-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.quem-sou-content .section-tag {
  margin-bottom: 8px;
}

.quem-sou-content .section-title {
  margin-bottom: 28px;
}

.quem-sou-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.85;
}

.quem-sou-text strong {
  color: var(--charcoal);
}

.quem-sou-content .btn {
  margin-top: 12px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--white);
}

.diferenciais .section-title {
  color: var(--white);
}

.diferenciais .section-desc {
  color: rgba(255,255,255,0.6);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.diferencial-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.diferencial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.2rem;
}

.diferencial-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.diferencial-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.diferenciais-cta {
  text-align: center;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-300);
}

.step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.step-content p {
  font-size: 1rem;
  line-height: 1.85;
}

.step-content strong {
  color: var(--charcoal);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--cream);
}

.depoimentos-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.depoimento-card {
  display: none;
}

.depoimento-card.active {
  display: block;
  animation: fadeUp 0.5s ease-out;
}

.depoimento-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}

.depoimento-text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--gray-700);
  font-style: italic;
}

.depoimento-author {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.depoimento-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream-dark);
}

.author-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-align: left;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: left;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== ÁREA DE ATUAÇÃO ===== */
.area-atuacao {
  padding: 100px 0;
  background: var(--white);
}

.cidades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cidade-tag {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.cidade-tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.area-cta {
  text-align: center;
}

.area-cta p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

/* ===== ACOMPANHE / SOCIAL ===== */
.acompanhe {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2520 100%);
  color: var(--white);
}

.acompanhe .section-title {
  color: var(--white);
}

.acompanhe .section-desc {
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.social-link i {
  font-size: 1.5rem;
  color: var(--gold);
}

.social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 0;
  background: #111;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-logo .logo-script {
  color: var(--gold-light);
  font-size: 1.6rem;
}

.footer-logo .logo-regular {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quem-sou-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    color: var(--charcoal) !important;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: rgba(184, 149, 106, 0.08) !important;
    color: var(--gold) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .quem-sou-image {
    order: -1;
  }

  .image-frame img {
    height: 400px;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step-number {
    min-width: auto;
  }

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

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

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

  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
