:root {
  --primary: #c5a059;
  --secondary: #0c1630;
  --surface: rgba(10, 18, 40, 0.92);
  --surface-strong: rgba(10, 18, 40, 1);
  --text: #f9f9f9;
  --muted: rgba(249, 249, 249, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --success: #25d366;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(197, 160, 89, 0.15), transparent 35%), #07111f;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

.site-menu a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--text);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: #07111f;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.primary-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}

.hero h1 strong {
  color: var(--primary);
}

.hero p {
  max-width: 44rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-group .button,
.button-group a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button-group .button.primary,
.button-group a.button.primary {
  background: var(--primary);
  color: #07111f;
  font-weight: 700;
}

.button-group .button.secondary,
.button-group a.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.button-group .button:hover,
.button-group a.button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-card {
  width: 100%;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.hero-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.section {
  padding: 3rem 1.5rem;
}

.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 0;
}

.section-title p {
  color: var(--muted);
  max-width: 58rem;
  line-height: 1.8;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.process-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.process-item strong {
  display: inline-block;
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial p {
  margin: 0;
  color: var(--muted);
}

.testimonial small {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.14);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  padding: 2rem 1.5rem 3rem;
  background: rgba(7, 17, 31, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-float,
.phone-float {
  position: fixed;
  right: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  background: var(--success);
  color: #07111f;
  border-radius: 50%;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-weight: 700;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.whatsapp-float {
  bottom: 1.5rem;
}

.phone-float {
  bottom: 6.2rem;
  background: #0078d4;
  color: #ffffff;
}

.whatsapp-float::before,
.phone-float::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-image,
.card-image {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-grid img {
  aspect-ratio: 16 / 10;
}

.whatsapp-float::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.472-.148-.672.149-.198.297-.767.967-.941 1.165-.173.198-.347.223-.644.075-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.173.198-.297.297-.496.099-.198.05-.372-.025-.521-.075-.149-.672-1.611-.921-2.206-.242-.579-.487-.5-.672-.51l-.573-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.077 4.487.709.306 1.26.489 1.69.626.71.227 1.355.195 1.866.118.569-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.414-.074-.124-.272-.198-.57-.347zM12.008 2C6.475 2 2 6.474 2 12c0 2.116.738 4.066 1.97 5.627L2 22l4.699-1.254A9.94 9.94 0 0012.008 22C17.533 22 22 17.526 22 12S17.533 2 12.008 2z'/%3E%3C/svg%3E");
}

.phone-float::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.06-.27c1.12.37 2.33.57 3.56.57a1 1 0 011 1v3.5a1 1 0 01-1 1C10.8 21.5 2.5 13.2 2.5 3.5A1 1 0 013.5 2.5H7a1 1 0 011 1c0 1.23.2 2.44.57 3.56a1 1 0 01-.27 1.06l-2.2 2.2z'/%3E%3C/svg%3E");
}

.whatsapp-float:hover,
.phone-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 3rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .grid-3,
  .grid-2,
  .grid-4,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-menu {
    justify-content: center;
  }
}
