/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: background-color .28s ease, padding .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(31, 23, 20, 0.09);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: transparent;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand:hover .brand-icon { transform: scale(1.08); }
.brand-icon svg { width: 24px; height: 24px; }
.brand-text { display: grid; gap: 3px; }
.brand-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.32rem;
  line-height: 1;
}
.brand-text small {
  color: var(--muted-foreground);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.desktop-nav a {
  font-size: .96rem;
  font-weight: 700;
  color: rgba(45, 38, 34, .92);
  transition: color .25s ease;
}
.desktop-nav a:hover { color: var(--primary); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(190, 87, 49, 0.23);
}
.header-cta svg { width: 18px; height: 18px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--foreground);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 70;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--background);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .34s ease;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 50px rgba(0,0,0,.18);
}
.mobile-panel.is-open { transform: translateX(0); }
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.mobile-panel-top h2 { font-size: 1.5rem; }
.mobile-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  font-size: 1.6rem;
}
.mobile-nav {
  display: grid;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
}
.mobile-call {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 18px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}
body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 118px 0 160px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.62), rgba(0,0,0,.38));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  color: white;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(190, 87, 49, .2);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  max-width: 660px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-floating {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateY(50%);
}
.floating-card {
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  background: var(--background);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: 28px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.floating-card article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}
.floating-card article + article { border-left: 1px solid var(--border); }
.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(190,87,49,.12);
  color: var(--primary);
  flex: 0 0 auto;
}
.mini-icon svg { width: 32px; height: 32px; }
.floating-card h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.floating-card p { color: var(--muted-foreground); font-size: .95rem; }

/* About */
.about { margin-top: 64px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 74px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-accent {
  position: absolute;
  inset: 0;
  background: rgba(190,87,49,.16);
  border-radius: 40px;
  transform: rotate(-3deg) scale(1.04);
}
.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 38% center;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  right: -24px;
  bottom: -26px;
  z-index: 2;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.about-badge strong {
  display: block;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2px;
}
.about-badge span { color: var(--muted-foreground); font-weight: 700; }
.about-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 24px;
}
.about-copy p {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.feature-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
.feature-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-card {
  background: white;
  border: 1px solid rgba(225, 215, 205, .75);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(34, 25, 20, 0.05);
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product-card h3 {
  font-size: 1.36rem;
  margin-bottom: 12px;
}
.product-card p { color: var(--muted-foreground); }
.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.product-icon svg { width: 28px; height: 28px; }
.orange { background: #fff0e8; color: #de6d33; }
.slate { background: #f0f3f6; color: #64748b; }
.blue { background: #ecf3ff; color: #3b82f6; }
.teal { background: #e8fbf9; color: #0f766e; }
.green { background: #edf9ee; color: #2f855a; }
.last-card { grid-column: auto; }

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
}
.sticky-box {
  position: sticky;
  top: 128px;
}
.advantages-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 24px;
}
.advantages-copy p {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.underline {
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}
.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  align-content: start;
}
.adv-card {
  background: rgba(238, 226, 212, .24);
  border: 1px solid rgba(225, 215, 205, .55);
  border-radius: 24px;
  padding: 28px;
  min-height: 210px;
}
.adv-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(22,15,11,.08);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.adv-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.adv-card p { color: var(--muted-foreground); font-size: .98rem; }

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}
.filter-btn {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  font-weight: 700;
}
.filter-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px rgba(190, 87, 49, .18);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 1 / 1;
  background: var(--muted);
  transition: transform .28s ease, opacity .28s ease;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card.is-hidden {
  opacity: 0;
  transform: scale(.92);
  pointer-events: none;
  display: none;
}
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.08));
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-card:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: 8px;
}
.gallery-caption h3 {
  color: white;
  font-size: 1.28rem;
}

/* CTA */
.cta-inner { position: relative; z-index: 2; max-width: 860px; text-align: center; }
.cta-inner h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 20px;
}
.cta-inner p {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  margin-bottom: 34px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .55;
}
.orb-right {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -120px;
  background: rgba(190, 87, 49, .26);
}
.orb-left {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -100px;
  background: rgba(190, 87, 49, .18);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.contact-info,
.contact-form-wrap { min-width: 0; }
.info-card,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(34, 25, 20, 0.05);
}
.info-card {
  padding: 34px;
  margin-bottom: 24px;
}
.info-card h3,
.contact-form h3 { font-size: 1.45rem; margin-bottom: 8px; }
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 24px;
}
.info-card li strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.info-card li span,
.info-card li a { color: var(--muted-foreground); }
.map-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  height: 280px;
  box-shadow: 0 10px 28px rgba(34, 25, 20, 0.05);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-form {
  height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.contact-form > p {
  color: var(--muted-foreground);
  margin-bottom: 24px;
  font-size: .98rem;
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-form label span { font-weight: 700; font-size: .95rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(190, 87, 49, 0.12);
}
.form-note {
  min-height: 22px;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34, 25, 20, 0.04);
}
.faq-question {
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: white;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
}
.faq-question span {
  color: var(--primary);
  font-size: 1.35rem;
  transition: transform .25s ease;
}
.faq-item.open .faq-question span { transform: rotate(180deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-answer p {
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted-foreground);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  border-top: 1px solid rgba(225,215,205,.7);
}
.faq-item.open .faq-answer p { padding: 18px 26px 24px; }

/* Footer */
.site-footer {
  background: var(--anthracite);
  color: #d6d1cb;
  padding: 74px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 48px;
  margin-bottom: 54px;
}
.site-footer p,
.site-footer li,
.site-footer a { color: #aba39b; }
.site-footer h3 {
  color: white;
  font-size: .9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-brand { margin-bottom: 22px; }
.footer-brand .brand-text strong { color: white; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Floating */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.back-top,
.wa-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.back-top {
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wa-btn {
  background: #25D366;
  color: white;
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-block; }
  .about-grid,
  .advantages-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid,
  .gallery-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sticky-box { position: static; }
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding: 128px 0 120px; }
  .hero-content { text-align: left; }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .floating-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
  .floating-card article { padding: 0; }
  .floating-card article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 18px;
  }
  .about { margin-top: 120px; }
  .about-image img { height: 420px; }
  .about-badge {
    right: 20px;
    bottom: 20px;
  }
  .feature-list,
  .advantages-list,
  .products-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .faq-question { font-size: .96rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 82px 0; }
  .site-header { padding: 12px 0; }
  .brand-icon { width: 44px; height: 44px; }
  .brand-text strong { font-size: 1.15rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1rem; }
  .hero-floating { transform: translateY(58%); }
  .about { margin-top: 160px; }
  .about-image img {
    height: 340px;
    object-position: 42% center;
  }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .product-card,
  .info-card,
  .contact-form,
  .adv-card { padding: 24px; }
  .floating-actions { right: 16px; bottom: 16px; }
}

.site-header:not(.scrolled) .brand-text strong,
.site-header:not(.scrolled) .brand-text small,
.site-header:not(.scrolled) .desktop-nav a {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #ffffff;
}

.site-header:not(.scrolled) .desktop-nav a:hover {
  color: #ffffff;
}