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

:root {
  --gold: #c9a84c;
  --gold-dark: #a8893a;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-lg { padding: 16px 48px; font-size: 1.05rem; }
.btn-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn-link:hover { text-decoration: underline; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  padding: 8px 24px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--gold); }
.topbar-link img { width: 20px; height: 20px; object-fit: contain; }

/* ---- HEADER ---- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 48px; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 100;
  padding: 8px 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--light-gray); color: var(--gold); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
}

/* ---- HERO ENTRANCE ANIMATION ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-hero {
  opacity: 0;
  animation: heroFadeUp 0.75s cubic-bezier(.22,1,.36,1) forwards;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-up   { transform: scale(0.94); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 680px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- ABOUT ---- */
.about { padding: 100px 24px; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-btns { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ---- SERVICES ---- */
.services { padding: 100px 24px; background: var(--light-gray); }
.section-label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-text {
  color: var(--gray);
  font-size: 1rem;
  max-width: 840px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.cta-banner-stat {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 32px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- SCHEDULE ---- */
.schedule-section {
  background: var(--gold);
  padding: 60px 24px;
}
.schedule-inner {
  text-align: center;
}
.schedule-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.schedule-inner .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
}
.schedule-inner .btn-primary:hover { background: var(--dark2); border-color: var(--dark2); }

/* ---- QUEM SOMOS ---- */
.quem-somos { padding: 100px 24px; background: var(--white); }
.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quem-somos-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.quem-somos-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.quem-somos-text .btn { margin-top: 16px; }
.quem-somos-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.quem-somos-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

/* ---- BENEFITS ---- */
.benefits { padding: 100px 24px; background: var(--light-gray); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.benefit-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.benefit-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.benefits-cta { text-align: center; }

/* ---- BLOG ---- */
.blog { padding: 100px 24px; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
}
.blog-img-fallback { background-color: #c9a84c22; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { color: var(--gray); font-size: 0.87rem; line-height: 1.7; }
.blog-cta { text-align: center; }

/* ---- FAQ ---- */
.faq { padding: 100px 24px; background: var(--light-gray); }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: var(--font-sans);
}
.faq-num {
  color: var(--gold);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  min-width: 32px;
}
.faq-arrow { margin-left: auto; font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 24px 48px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--gray); line-height: 1.8; }

/* ---- PORTFOLIO ---- */
.portfolio { padding: 100px 24px; background: var(--white); }
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.portfolio-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.portfolio-gallery img:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ---- INSTAGRAM ---- */
.instagram { padding: 48px 24px; background: var(--dark); text-align: center; }
.insta-handle {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.insta-handle:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.footer { background: var(--dark2); padding: 60px 24px 32px; color: #aaa; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-logo img { height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.footer-social a img { width: 28px; height: 28px; filter: brightness(0) invert(0.7); transition: filter 0.2s; }
.footer-social a:hover img { filter: brightness(0) invert(1); }
.footer-copy { font-size: 0.8rem; color: #666; text-align: center; }
.footer-admin-link {
  background: none; border: none; cursor: pointer;
  color: #555; font-size: 0.78rem; font-family: inherit;
  opacity: 0.4; transition: opacity 0.2s; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-admin-link:hover { opacity: 1; color: #c9a84c; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-gallery { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { max-width: 420px; }
  .quem-somos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .services-grid, .benefits-grid, .blog-grid { grid-template-columns: 1fr; }
  .portfolio-gallery { grid-template-columns: repeat(2, 1fr); }
  .quem-somos-gallery { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 60px 24px; }
  .hero-title { font-size: 1.8rem; }
  .topbar-links { gap: 8px; }
  .topbar-link span { display: none; }
}

@media (max-width: 480px) {
  .portfolio-gallery { grid-template-columns: 1fr 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .about-btns { flex-direction: column; }
}
