@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  color-scheme: light;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5f5;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-100: #dcfce7;
  --purple-600: #7c3aed;
  --purple-100: #ede9fe;
  --teal-600: #0f766e;
  --teal-100: #ccfbf1;
  --rose-600: #e11d48;
  --rose-100: #ffe4e6;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--slate-600);
}

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

.narrow {
  width: min(900px, 92%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 54px;
  height: 54px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-title {
  font-size: 1.5rem;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 6px;
}

.site-subtitle {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.site-nav .btn-primary {
  white-space: nowrap;
  line-height: 1;
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--slate-900);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--slate-700);
  stroke-width: 2;
  fill: none;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-open {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 0 16px;
  gap: 12px;
}

.mobile-nav .nav-link {
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--slate-100);
}

main {
  padding-top: 110px;
}

.hero {
  padding: 90px 0 80px;
}

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

.hero h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-900);
}

.hero p {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--slate-900);
}

.section-head p {
  font-size: 1.05rem;
}

.section-dark {
  background: #0b1220;
  color: #f8fafc;
}

.section-dark p {
  color: #cbd5f5;
}

.section-dark h2,
.section-dark h3 {
  color: #f8fafc;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.4rem;
}

.card--blue {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-color: #bfdbfe;
}

.card--purple {
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  border-color: #ddd6fe;
}

.card--teal {
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
  border-color: #99f6e4;
}

.card--rose {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
  border-color: #fecdd3;
}

.card--dark {
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: none;
}

.card--dark p {
  color: #d1d5db;
}

.card--plain {
  background: #ffffff;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

.icon-box--blue {
  background: var(--blue-600);
}

.icon-box--purple {
  background: var(--purple-600);
}

.icon-box--teal {
  background: var(--teal-600);
}

.icon-box--rose {
  background: var(--rose-600);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-600);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M20 6 9 17l-5-5 2-2 3 3 9-9z"/></svg>') center / contain no-repeat;
}

.card--purple .checklist li::before {
  background: var(--purple-600);
}

.card--teal .checklist li::before {
  background: var(--teal-600);
}

.card--rose .checklist li::before {
  background: var(--rose-600);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 12px;
}

.badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-700);
  stroke-width: 2;
  fill: none;
}

.highlight {
  background: var(--slate-100);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--slate-200);
  display: grid;
  gap: 6px;
}

.highlight p {
  margin: 0;
  color: var(--slate-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn .icon {
  display: grid;
  place-items: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-primary {
  background: var(--blue-600);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--green-600);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.btn-outline {
  background: #ffffff;
  color: var(--slate-900);
  border: 2px solid var(--slate-200);
}

.btn-outline:hover {
  background: var(--slate-100);
}

.stack {
  display: grid;
  gap: 20px;
}

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

.form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--slate-700);
}

.form input,
.form textarea {
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  padding: 12px 14px;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.25);
  border-color: var(--blue-600);
}

.info-card {
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid transparent;
  background: #ffffff;
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.info-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.info-card--blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--blue-700);
}

.info-card--green {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: var(--green-700);
}

.info-card--purple {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: var(--purple-600);
}

.info-card--slate {
  background: var(--slate-100);
  border-color: var(--slate-200);
  color: var(--slate-700);
}

.info-card p {
  margin-bottom: 6px;
}

.info-card .info-title {
  font-weight: 700;
  color: inherit;
}

.info-card .info-label {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.info-card .info-link {
  font-weight: 700;
  color: inherit;
}

.info-grid {
  display: grid;
  gap: 12px;
  color: var(--slate-700);
}

.info-card--green .info-grid,
.info-card--blue .info-grid,
.info-card--purple .info-grid {
  color: var(--slate-700);
}

.muted {
  color: var(--slate-500);
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  stroke: #e2e8f0;
  stroke-width: 2;
  fill: none;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5f5;
}

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
  }

  .header-inner {
    align-items: flex-start;
  }
}
