﻿:root {
  --bg: #0a0a0a;
  --surface: #131313;
  --surface-2: #1b1b1b;
  --line: #2a2a2a;
  --text: #f2f2f2;
  --muted: #aeaeae;
  --accent: #e3b35f;
  --accent-2: #ff8c2f;
  --radius: 16px;
  --shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Arial Narrow", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -20%, rgba(255, 140, 47, 0.12), transparent 35%),
    radial-gradient(circle at -10% 30%, rgba(227, 179, 95, 0.1), transparent 35%),
    linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
  line-height: 1.6;
  min-height: 100vh;
  opacity: 0;
  animation: page-in 0.75s ease forwards;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.08);
}

.brand span {
  font-size: 0.96rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #ececec;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.menu a.active::after,
.menu a:hover::after {
  transform: scaleX(1);
}

.menu a.active,
.menu a:hover {
  color: #fff;
}

.hero {
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.kicker {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5.1vw, 4rem);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 16ch;
}

.hero p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 58ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #161616;
  box-shadow: 0 8px 26px rgba(227, 179, 95, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 179, 95, 0.34);
}

.btn-ghost {
  border-color: var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-whatsapp {
  background: #25d366;
  color: #0f0f0f;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}

.hero-image,
.page-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image::after,
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 180, 92, 0.16) 50%, transparent 78%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0%, 18% { transform: translateX(-120%); }
  45% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.hero-image img,
.page-banner img,
.gallery img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image {
  min-height: 360px;
  animation: floaty 6s ease-in-out infinite;
}

.hero-image.hero-home-image img {
  object-fit: cover;
  object-position: center 42%;
}

.hero-image.hero-home-image {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 10;
}

.hero-image.hero-home-image img {
  width: 100%;
  height: 100%;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}

.section p.lead {
  color: var(--muted);
  max-width: 72ch;
}

.grid-2,
.grid-3,
.grid-4,
.gallery {
  display: grid;
  gap: 18px;
}

.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: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 179, 95, 0.4);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin-left: 18px;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-card p:first-child {
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-meta {
  color: #b8b8b8;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.card-image {
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery figure {
  margin: 0;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.gallery img {
  transition: transform .8s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-list strong {
  color: #fff;
}

.contact-quick-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: #f1f1f1;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(227, 179, 95, 0.65);
  box-shadow: 0 0 0 3px rgba(227, 179, 95, 0.14);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-section {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.72);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f0f0f0;
  text-align: left;
  font: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 18px 16px;
}

.faq-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-cta p {
  margin: 0;
  color: #e3e3e3;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col li {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
  color: #d6d6d6;
  text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 8px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dcdcdc;
  background: rgba(255, 255, 255, 0.03);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link:hover {
  color: #fff;
  border-color: rgba(227, 179, 95, 0.6);
  background: rgba(227, 179, 95, 0.16);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #9b9b9b;
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav {
    min-height: 46px;
    position: relative;
    padding: 3px 0;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 4px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .menu li a:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    min-height: 38px;
  }

  .brand {
    justify-content: flex-start;
    gap: 8px;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .brand span {
    font-size: 0.82rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 64px 0 44px;
  }

  h1 {
    max-width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .faq-question {
    padding: 14px 14px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 14px 14px;
    font-size: 0.93rem;
  }

  .faq-cta {
    padding: 14px;
  }

}
