:root {
  --primary: #1463ff;
  --primary-dark: #0f4fcc;
  --text: #1b1f24;
  --muted: #5d6673;
  --bg: #ffffff;
  --bg-soft: #f4f7ff;
  --border: #dbe2f0;
  --success: #1ea55b;
  --shadow: 0 12px 28px rgba(20, 99, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  font-weight: 500;
  color: var(--muted);
}

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

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 5.2rem 0 4rem;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 64ch;
}

.mini-trust {
  margin: -0.2rem 0 1rem;
  font-size: 0.92rem;
  color: #2d5f2d;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn-glow {
  box-shadow: 0 0 0 0 rgba(20, 99, 255, 0.45);
  animation: pulse 2s infinite;
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  background: #eff4ff;
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
  margin-top: 0.5rem;
}

.stats {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  min-width: 140px;
}

.stats strong {
  display: block;
  font-size: 1.06rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

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

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

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

.lead {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-top: 0.4rem;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.price-card .price {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0.4rem 0 0.7rem;
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  min-height: 116px;
}

.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e9f0ff;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-line {
  margin: 0.4rem 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e8;
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 99, 255, 0.18);
  border-color: var(--primary);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.93rem;
  color: var(--success);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

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

.footer-wrap a {
  color: var(--primary);
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 22;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.floating-cta:hover {
  background: var(--primary-dark);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 99, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(20, 99, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 99, 255, 0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 4%;
    display: grid;
    gap: 0.55rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    text-align: center;
    border-radius: 12px;
  }
}
