:root {
  --gold: #C4A33D;
  --gold-dark: #9E8328;
  --gold-light: #D4B351;
  --beige: #F0EADE;
  --beige-light: #F8F4ED;
  --black: #1C1C1C;
  --black-soft: #4A4A4A;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;

  --navbar-height: 70px;
  --whatsapp-green: #25D366;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--black);
  background: var(--beige-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--black);
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 0.8rem 1.5rem;
  background: var(--black);
  color: var(--gold);
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--black-soft);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

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

main {
  min-height: calc(100vh - var(--navbar-height));
  padding-top: var(--navbar-height);
  padding-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.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 4px 15px rgba(196, 163, 61, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* ─── Navbar ─── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--beige-light);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

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

.navbar-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  cursor: pointer;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: 0.3s;
}

.navbar-whatsapp-item a::after {
  display: none !important;
}

/* ─── Hero ─── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--beige) 0%, var(--beige-light) 40%, rgba(196, 163, 61, 0.06) 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C4A33D' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--black-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* ─── Page Header ─── */

.page-header {
  padding: 3rem 0 2rem;
  text-align: center;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--black-soft);
  font-size: 1.1rem;
}

/* ─── Services ─── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(28, 28, 28, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
  border-color: var(--gold);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.service-card-duration {
  font-size: 0.8rem;
  color: var(--black-soft);
  background: var(--beige);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 400;
}

.service-card-title {
  font-size: 1.3rem;
  color: var(--black);
}

.service-card-desc {
  color: var(--black-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

/* ─── Diferenciais ─── */

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

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.diferencial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(28, 28, 28, 0.06);
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
}

.diferencial-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.diferencial-title {
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.diferencial-desc {
  font-size: 0.9rem;
  color: var(--black-soft);
  line-height: 1.6;
}

/* ─── Process Steps ─── */

.section-process {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 3rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.step-title {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--black-soft);
  line-height: 1.5;
}

/* ─── Instagram ─── */

.section-instagram {
  background: var(--white);
}

.instagram-embed {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ─── Depoimentos ─── */

.depoimentos-placeholder {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 2px dashed var(--gold-light);
  border-radius: 16px;
}

.depoimento-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.depoimento-text {
  color: var(--black-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.depoimento-text a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ─── FAQ ─── */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(28, 28, 28, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  gap: 1rem;
}

.faq-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  animation: fadeUp 0.3s ease;
}

.faq-answer p {
  color: var(--black-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── About / Philosophy ─── */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--black-soft);
  line-height: 1.8;
}

.section-philosophy {
  background: var(--white);
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(28, 28, 28, 0.06);
}

.philosophy-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.philosophy-item p {
  color: var(--black-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Contact ─── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.contact-item p {
  color: var(--black-soft);
  margin-bottom: 0.8rem;
}

.address-link {
  color: var(--black-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s;
  display: inline-block;
}

.address-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.contact-phone {
  font-size: 1.1rem;
  font-weight: 400;
}

.contact-whatsapp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-whatsapp-actions .btn {
  width: 100%;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 350px;
}

/* ─── CTA Section ─── */

.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-section .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ─── WhatsApp Floating ─── */

.whatsapp-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* ─── WhatsApp Mobile Bar ─── */

.whatsapp-mobile-bar {
  display: none;
}

/* ─── LGPD Notice ─── */

.lgpd-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--beige);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 998;
  font-size: 0.85rem;
}

.lgpd-notice a {
  color: var(--gold);
  text-decoration: underline;
}

.lgpd-notice .btn {
  flex-shrink: 0;
}

/* ─── Footer ─── */

.footer {
  background: var(--black);
  color: var(--beige);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.footer-brand > p {
  font-size: 0.9rem;
  color: var(--beige);
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whatsapp-green) !important;
  font-size: 0.95rem;
  font-weight: 400;
  transition: opacity 0.2s;
}

.footer-whatsapp:hover {
  opacity: 0.8;
}

.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--black-soft);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-copy {
  border-top: 1px solid rgba(240, 234, 222, 0.15);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--black-soft);
}

/* ─── Section Alternating Backgrounds ─── */

.section:nth-child(even) {
  background: var(--white);
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .navbar-hamburger {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--beige-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  }

  .navbar-links.collapsed {
    display: none;
  }

  .hero { min-height: 90vh; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }

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

  .page-header { padding: 2rem 0 1.5rem; }
  .page-header h1 { font-size: 1.8rem; }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .step-icon {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whatsapp-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .whatsapp-floating {
    bottom: 5rem;
  }

  .lgpd-notice {
    bottom: 56px;
  }

  main {
    padding-bottom: 56px;
  }

  .contact-whatsapp-actions .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
