
:root {
  --bg: #f6f0e5;
  --bg-2: #efe6d6;
  --cream: #fffaf1;
  --cream-2: #f7f0e4;
  --panel: rgba(255,255,255,.82);
  --panel-strong: rgba(255,255,255,.92);
  --dark: #181513;
  --dark-2: #2c2520;
  --text: #2c241f;
  --muted: #6c5e52;
  --gold: #b98c3f;
  --gold-bright: #d4ae68;
  --gold-soft: rgba(185,140,63,.16);
  --line: rgba(44,36,31,.10);
  --shadow: 0 22px 58px rgba(37,28,18,.13);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-h: 88px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 7% 0%, rgba(212,174,104,.16), transparent 24%),
    radial-gradient(circle at 100% 8%, rgba(185,140,63,.12), transparent 20%),
    linear-gradient(180deg, #fbf8f1 0%, #f5efe3 58%, #eee4d3 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: white; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; border-radius: 99px; background: linear-gradient(90deg,var(--gold-bright),var(--gold)); }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.03em; line-height: 1.05; color: #211912;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); margin-bottom: 10px; }
.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 720px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow); border-radius: var(--radius); padding: 28px;
}
.accent { color: var(--gold); }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h);
  border-bottom: 1px solid transparent; transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-header.scrolled {
  background: rgba(255,248,238,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: rgba(44,36,31,.08); box-shadow: 0 10px 35px rgba(30,20,10,.07);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #201914, #0f0b09); color: var(--gold-bright); box-shadow: 0 15px 28px rgba(185,140,63,.20);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-copy { line-height: .96; }
.brand-copy strong { display: block; font-size: 1.18rem; color: #201811; }
.brand-copy span { display: block; font-size: .86rem; color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.brand-copy small { display: block; margin-top: 4px; font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: #816f5b; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .nav-button {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 13px; border-radius: 12px;
  color: #433327; font-weight: 700; background: transparent; border: 0;
}
.nav-link:hover, .nav-link.active, .nav-button:hover, .nav-button.active { background: rgba(185,140,63,.10); color: #9c712f; }
.nav-item { position: relative; }
.nav-button svg { width: 15px; height: 15px; transition: transform .2s ease; }
.dropdown-menu {
  position: absolute; left: 0; top: calc(100% + 10px); min-width: 250px; z-index: 1005;
  background: rgba(255,251,245,.98); border: 1px solid rgba(44,36,31,.08); border-radius: 18px; padding: 10px;
  box-shadow: 0 24px 60px rgba(35,25,15,.12); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dropdown-link { display: block; padding: 11px 12px; border-radius: 12px; color: #49372a; font-weight: 650; transition: .18s ease; }
.dropdown-link small { display: block; color: #857465; font-size: .74rem; font-weight: 500; margin-top: 3px; }
.dropdown-link:hover { background: rgba(185,140,63,.10); color: #9c712f; }
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.has-dropdown:hover .nav-button svg,
.nav-item.has-dropdown.open .nav-button svg,
.nav-item.has-dropdown:focus-within .nav-button svg { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid rgba(44,36,31,.10);
  background: rgba(255,255,255,.76); color: var(--text); align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px;
  border-radius: 14px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #c79a4a, #dfbb78); color: #271b11; box-shadow: 0 18px 32px rgba(185,140,63,.20); }
.btn-dark { background: linear-gradient(135deg, #231812, #0f0b09); color: #fff7ea; box-shadow: 0 18px 32px rgba(35,23,15,.16); }
.btn-outline { background: rgba(255,255,255,.72); border-color: rgba(185,140,63,.24); color: #8a642a; }
.btn-whatsapp { background: #25d366; color: #062a0f; }
.btn-sm { min-height: 44px; padding-inline: 16px; }
.btn svg { width: 18px; height: 18px; }
.hero { padding: 150px 0 84px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 0% 32%, rgba(185,140,63,.09), transparent 22%),
    radial-gradient(circle at 92% 8%, rgba(44,36,31,.05), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.45), transparent 56%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 span { color: var(--gold); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(44,36,31,.07); box-shadow: var(--shadow); color: #443325; font-weight: 700;
}
.hero-pill svg { width: 17px; height: 17px; color: var(--gold); }
.hero-visual { position: relative; min-height: 620px; }
.hero-main {
  position: absolute; inset: 70px 0 0 40px; border-radius: 38px; overflow: hidden;
  background: #fff; border: 1px solid rgba(255,255,255,.86); box-shadow: 0 28px 68px rgba(25,18,10,.12);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 0; top: 8px; z-index: 3; max-width: 250px;
  background: linear-gradient(145deg, #221812, #120c08); color: white; border-radius: 26px;
  padding: 22px; border: 1px solid rgba(185,140,63,.22); box-shadow: 0 24px 50px rgba(25,18,10,.26);
}
.hero-badge strong { display: block; font-size: 1.36rem; color: var(--gold-bright); margin-bottom: 8px; font-family: Georgia, serif; }
.hero-badge span { color: rgba(255,245,232,.74); font-size: .92rem; }
.floating-card {
  position: absolute; right: 0; bottom: 34px; z-index: 4; max-width: 260px;
  background: rgba(255,252,247,.92); border: 1px solid rgba(185,140,63,.16); box-shadow: var(--shadow); border-radius: 24px; padding: 18px;
}
.icon-box {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #fbf3e4, #fffefb); color: var(--gold); border: 1px solid rgba(185,140,63,.16);
}
.icon-box svg { width: 28px; height: 28px; }
.promo-strip {
  background: linear-gradient(135deg, #1d1511, #34251c); color: white; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.promo-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.promo-item { display: flex; align-items: center; gap: 14px; padding: 10px 8px; }
.promo-item strong { display: block; font-size: .98rem; }
.promo-item span { display: block; color: rgba(255,247,235,.72); font-size: .86rem; line-height: 1.35; }
.promo-item .icon-box { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); color: #ffd89a; }
.service-card {
  background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.82); box-shadow: var(--shadow); border-radius: 26px; overflow: hidden;
}
.service-card img { width: 100%; height: 230px; object-fit: cover; }
.service-card .copy { padding: 22px; }
.service-card .copy p { color: var(--muted); margin-bottom: 0; }
.service-top { display: flex; gap: 16px; align-items: center; }
.service-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.meta-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(185,140,63,.10); border: 1px solid rgba(185,140,63,.14); color: #8a642a; font-weight: 700; font-size: .82rem; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-list svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.gallery-card {
  background: white; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow);
}
.gallery-card img { width: 100%; height: 260px; object-fit: cover; }
.gallery-card .copy { padding: 18px; }
.gallery-card .copy strong { display: block; margin-bottom: 6px; font-family: Georgia, serif; font-size: 1.15rem; }
.gallery-card .copy p { color: var(--muted); margin-bottom: 0; }
.info-band {
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,250,242,.94)); border: 1px solid rgba(255,255,255,.84); border-radius: 30px; padding: 30px; box-shadow: var(--shadow);
}
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.metric { background: rgba(255,255,255,.82); border: 1px solid rgba(44,36,31,.06); border-radius: 22px; padding: 22px 20px; }
.metric strong { display: block; font-family: Georgia, serif; font-size: 1.95rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.metric span { color: var(--muted); font-size: .9rem; }
.page-hero { padding: 154px 0 80px; position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0)); }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 18%, rgba(185,140,63,.09), transparent 18%), radial-gradient(circle at 14% 28%, rgba(119,86,41,.06), transparent 16%); }
.breadcrumbs { display: flex; align-items: center; gap: 10px; color: #867461; font-size: .86rem; margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--gold); }
.banner-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: center; }
.banner-split .visual { background: #fff; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.88); overflow: hidden; }
.banner-split .visual img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.banner-split .copy { background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow); border-radius: 28px; padding: 30px; }
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item { background: rgba(255,255,255,.84); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.90); box-shadow: var(--shadow); }
.faq-question {
  width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 16px; align-items: center; text-align: left;
  padding: 22px 24px; font-weight: 800; color: #2d2117;
}
.faq-question svg { width: 20px; height: 20px; color: var(--gold); transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { color: var(--muted); padding: 0 24px 22px; margin: 0; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-card { background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow); border-radius: 28px; padding: 30px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(44,36,31,.08); }
.contact-method:last-child { border-bottom: 0; }
.contact-method strong { display: block; }
.contact-method span, .contact-method a { color: var(--muted); }
.contact-method a:hover { color: var(--gold); }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .9rem; font-weight: 700; color: #3f301f; }
.form-control {
  min-height: 52px; width: 100%; border-radius: 14px; border: 1px solid rgba(44,36,31,.12); background: rgba(255,255,255,.95); color: var(--text); padding: 0 15px; outline: none;
}
textarea.form-control { min-height: 130px; resize: vertical; padding-top: 14px; }
.form-control:focus { border-color: rgba(185,140,63,.48); box-shadow: 0 0 0 4px rgba(185,140,63,.10); }
.form-note { font-size: .82rem; color: var(--muted); }
.cta-banner {
  position: relative; overflow: hidden; background: linear-gradient(135deg, #20150e, #3b2919); color: white; border-radius: 34px; padding: 46px; box-shadow: 0 26px 64px rgba(25,18,10,.18);
}
.cta-banner::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -90px; top: -120px; border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 60px rgba(255,255,255,.06); }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-banner h2 { color: #fffaf0; }
.cta-banner p { color: rgba(255,247,235,.76); margin-bottom: 0; }
.cta-banner .eyebrow { color: var(--gold-bright); }
.cta-banner .eyebrow::before { background: linear-gradient(90deg,var(--gold-bright),var(--gold)); }
.offer-card {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,250,242,.94)); border: 1px solid rgba(255,255,255,.84); border-radius: 30px; box-shadow: var(--shadow); padding: 28px;
}
.offer-badge { background: linear-gradient(145deg, #201711, #0f0b09); color: #fff7ea; border-radius: 28px; padding: 28px; text-align: center; }
.offer-badge strong { display: block; font-family: Georgia, serif; font-size: 3rem; line-height: .9; color: var(--gold-bright); }
.offer-badge span { display: block; font-size: .88rem; color: rgba(255,247,235,.76); margin-top: 8px; text-transform: uppercase; letter-spacing: .14em; }
.site-footer { background: linear-gradient(180deg, #1b120c, #0f0a07); color: white; padding: 72px 0 24px; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .85fr .9fr 1fr; gap: 34px; }
.footer-title { font-size: .88rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 18px; color: rgba(255,248,237,.92); }
.footer-links, .footer-contact { display: grid; gap: 10px; color: rgba(255,247,235,.72); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-brand p { color: rgba(255,247,235,.74); max-width: 330px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,247,235,.60); display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }
.footer-brand .brand-copy strong { color: #fff7eb; }
.footer-brand .brand-copy span { color: var(--gold-bright); }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 16px 35px rgba(16,24,40,.18); }
.whatsapp-float svg { width: 30px; height: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .68s ease, transform .68s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(390px, 92vw); height: 100dvh; padding: 104px 20px 28px; display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    background: #fffaf3; border-left: 1px solid rgba(44,36,31,.08); box-shadow: -24px 0 60px rgba(25,18,10,.12); transition: right .28s ease;
  }
  .menu-open .main-nav { right: 0; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .nav-item { width: 100%; }
  .nav-button, .nav-link { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; min-width: 0; margin-top: 8px; padding: 8px; border-radius: 16px; transform: none; background: rgba(185,140,63,.06);
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible; box-shadow: none; transition: max-height .25s ease, padding .25s ease, margin .25s ease;
  }
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu { max-height: 0; }
  .nav-item.has-dropdown.open .dropdown-menu { max-height: 420px; }
  .nav-item.has-dropdown.open .nav-button svg { transform: rotate(180deg); }
  .promo-grid, .metric-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .section { padding: 82px 0; }
  .hero { padding: 130px 0 72px; }
  .hero-grid, .grid-2, .banner-split, .contact-grid, .cta-inner, .offer-card { grid-template-columns: 1fr; display: grid; }
  .hero-copy { text-align: center; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .hero-main { inset: 88px 0 0; }
  .hero-badge { left: 12px; top: 0; }
  .floating-card { right: 12px; bottom: 18px; }
  .gallery-grid, .grid-3, .grid-4, .footer-grid, .promo-grid, .metric-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .brand-copy small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-visual { min-height: 430px; }
  .hero-main { inset: 106px 0 0; }
  .hero-badge { max-width: 190px; padding: 16px; }
  .hero-badge strong { font-size: 1.15rem; }
  .floating-card { max-width: 190px; padding: 15px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .cta-banner { padding: 34px 24px; }
  .page-hero { padding: 136px 0 64px; }
  .footer-bottom { flex-direction: column; }
}
