:root {
  --brand-red: #cf2e2e;
  --brand-dark: #0f1720;
  --brand-deep: #111827;
  --brand-cream: #f8f4ed;
  --text-light: #ffffff;
  --wa: #25d366;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--brand-deep);
  background: linear-gradient(160deg, #fefaf3 0%, #f9efe4 45%, #fff 100%);
}

.hero {
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image-link {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-image: url("hero-custom.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  z-index: 6;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 12px 18px;
  backdrop-filter: blur(3px);
}

.hero-logo h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 6.5vw, 4rem);
  letter-spacing: 1px;
}

.hero-logo p {
  margin: 6px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: clamp(0.82rem, 2.2vw, 1rem);
}

.hero-whatsapp {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  text-decoration: none;
  background: var(--wa);
  color: #063b1b;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-red);
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(207, 46, 46, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

main {
  margin: 0 auto;
  max-width: 1100px;
  padding: 32px 18px 110px;
}

.about-business {
  margin-top: 8px;
  padding: 22px 0 8px;
}

.about-business h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  margin: 0 0 14px;
}

.about-business p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
}

.about-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.business-highlights {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.highlight-box {
  background: #fff7e8;
  border: 1px solid #efd7b4;
  border-radius: 14px;
  padding: 14px;
}

.highlight-box h3 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
}

.highlight-box p {
  margin: 0;
  line-height: 1.6;
}

.about-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f0dfcb;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.06);
}

.about-item h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
}

.process-section {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #f0dfcb;
  border-radius: 16px;
  padding: 16px 18px;
}

.process-section h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
}

.process-section ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.contact-strip {
  margin-top: 14px;
  border-radius: 14px;
  padding: 14px 16px;
  background: #111827;
  color: #fff;
}

.contact-strip p {
  margin: 0 0 6px;
}

.contact-strip p:last-child {
  margin-bottom: 0;
}

.services {
  margin-top: 34px;
}

.services h2,
.cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  margin: 0 0 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f0dfcb;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.06);
}

.card h3 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
}

.cta {
  margin-top: 34px;
  padding: 28px 20px;
  border-radius: 20px;
  background: linear-gradient(120deg, #111827 0%, #cf2e2e 95%);
  color: var(--text-light);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  text-decoration: none;
  background: var(--wa);
  color: #063b1b;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (height: 100dvh) {
  .hero,
  .hero-image-link {
    height: 100dvh;
    min-height: 100dvh;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
  }

  .hero-image-link {
    min-height: 100dvh;
  }

  .hero-logo {
    top: 14%;
    width: calc(100% - 30px);
    max-width: 360px;
    padding: 10px 14px;
  }

  .hero-whatsapp,
  .floating-whatsapp {
    padding: 11px 14px;
    font-size: 0.9rem;
  }
}
