:root {
  --primary: #ff6ea9;
  --primary-dark: #f05290;
  --text-dark: #2d1f25;
  --text-light: #ffffff;
  --bg-light: #fff3f8;
  --shadow: 0 12px 30px rgba(255, 110, 169, 0.25);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

.icon {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm {
  width: 1.05rem;
  height: 1.05rem;
}

.icon-md {
  width: 1.3rem;
  height: 1.3rem;
}

.icon-lg {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-xl {
  width: 2.4rem;
  height: 2.4rem;
}

header {
  background: var(--text-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}

.brand .icon {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.2s ease;
}

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

main {
  flex: 1 0 auto;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--text-light);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.badge .icon {
  color: var(--primary);
}

.badge.whatsapp-badge {
  background: #25d366;
  color: var(--text-light);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  padding: 0.45rem 1.2rem;
  font-weight: 600;
}

.badge.whatsapp-badge .icon {
  color: var(--text-light);
}

.badge.whatsapp-badge:hover {
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.4);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 0.5rem;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 110, 169, 0.3);
}

.hero-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(255, 110, 169, 0.25);
}

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

.masor-hero-section {
  padding: 0;
  margin: 1rem 0 0;
  width: 100%;
  max-width: none;
}

.masor-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.masor-hero picture {
  display: block;
}

.masor-hero img {
  width: 100%;
  aspect-ratio: 6 / 1;
  object-fit: cover;
  display: block;
  min-height: 150px;
}

.masor-hero-section + .section {
  padding-top: 0;
}

.section {
  padding: 3rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2,
.section h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.section p {
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.features {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background: var(--text-light);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(34, 31, 37, 0.06);
  display: grid;
  gap: 0.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 110, 169, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

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

.masor-card {
  background: var(--text-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(255, 110, 169, 0.2);
  display: flex;
  flex-direction: column;
}

.masor-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.masor-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--text-light);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-card {
  background: var(--text-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(34, 31, 37, 0.08);
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-icon .icon {
  width: 2.4rem;
  height: 2.4rem;
}

footer {
  background: var(--text-light);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(45, 31, 37, 0.7);
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .masor-card {
    border-radius: 16px;
  }

  .masor-body {
    padding: 0.85rem;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .masor-body h2 {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .masor-body p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
