:root {
  --yellow: #ffc107;
  --yellow-dark: #f5a700;
  --ink: #1a1a1a;
  --ink-soft: #444;
  --gray: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --green: #25d366;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

h1, h2, h3, h4, p { margin: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-badge {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.logo-name {
  font-weight: 800;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 1.6rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--ink); }

.nav a.active {
  color: var(--ink);
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-call {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  padding: 0.65rem 1.1rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.45);
}

.btn-primary:hover { background: var(--yellow-dark); }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1rem 2rem;
}

.btn-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.section-more {
  margin-top: 2rem;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/2.jpeg") center 65% / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.88) 25%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.hero-content { max-width: 580px; }

.chip {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.hero h1 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero p {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.07rem;
  max-width: 48ch;
}

.hero-buttons {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-features {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
}

.stat span {
  font-size: 0.88rem;
  color: rgba(26, 26, 26, 0.75);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section-tag {
  color: var(--yellow-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.section-title {
  margin-top: 0.4rem;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ---------- Services ---------- */
.services {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 1.9rem;
  background: #fff8e1;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.service h3 {
  margin-top: 1rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.service p {
  margin-top: 0.5rem;
  color: var(--gray);
  font-size: 0.93rem;
}

/* ---------- Gallery ---------- */
.gallery { padding: 4.5rem 0; }

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 4rem 0;
}

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

.cta h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
}

.cta p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.cta .btn { margin-top: 1.5rem; }

/* ---------- FAQ ---------- */
.faq { padding: 4.5rem 0; background: var(--bg-soft); }

.faq details {
  margin-top: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
}

.faq details:first-of-type { margin-top: 2rem; }

.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--yellow-dark);
  font-weight: 800;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  margin-top: 0.7rem;
  color: var(--gray);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 3.4rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.18);
}

.page-hero .chip { position: relative; z-index: 1; }

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.page-hero p {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 62ch;
}

/* ---------- About ---------- */
.about { padding: 4.5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.about-text p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.value-list li {
  background: var(--bg-soft);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-weight: 600;
}

/* ---------- Blog ---------- */
.blog { padding: 4.5rem 0; background: var(--bg-soft); }

.blog-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.post {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.post-body { padding: 1.3rem; }

.post-date {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.post h2, .post h3 {
  margin-top: 0.4rem;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.post p {
  margin-top: 0.6rem;
  color: var(--gray);
  font-size: 0.93rem;
}

/* ---------- Contact ---------- */
.contact { padding: 4.5rem 0; }

.contact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.contact-card .service-icon {
  margin-inline: auto;
  background: #fff;
}

.contact-card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-card p { margin-top: 0.4rem; color: var(--gray); }

.contact-card a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-card a:hover { color: var(--yellow-dark); }

.footer-link {
  color: #d8d8d8 !important;
  font-weight: 500 !important;
}

.footer-link:hover { color: var(--yellow) !important; }

/* ---------- Footer ---------- */
.footer {
  background: #111;
  color: #d8d8d8;
  padding: 3rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer .logo-name { color: #fff; }

.footer h4 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer p { margin-top: 0.3rem; font-size: 0.94rem; }

.footer a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.1rem 0;
  font-size: 0.85rem;
  color: #9a9a9a;
}

/* ---------- Floating call ---------- */
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

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

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

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

  .blog-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { min-height: 520px; }

  .hero-inner { padding: 3.2rem 0; }

  .services-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .btn-call { font-size: 0.84rem; padding: 0.55rem 0.9rem; }

  .logo-name { display: none; }
}
