:root {
  --blue: #232b95;
  --white: #fefefe;
  --yellow: #fcf23f;
  --cyan: #21d7ee;
  --pink: #f5197d;
  --green: #19b95f;
  --text: #10194f;
  --soft-bg: #f3f6ff;
  --border: #dfe4f5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 220px;
}

.nav {
  display: flex;
  gap: 60px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    max-width: 520px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    color: var(--blue);
    margin-bottom: 32px;
}

.hero-content p {
    max-width: 420px;
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

.products {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 40px 60px;
  text-align: center;
}

.products h2 {
  font-size: 34px;
  color: var(--blue);
  margin-bottom: 44px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 0 22px;
  border-right: 1px solid var(--border);
}

.product-card:last-child {
  border-right: none;
}

.product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 16px;
  line-height: 1.35;
}

.instagram-box {
  max-width: 1060px;
  margin: 20px auto 40px;
  padding: 34px 48px;
  background: var(--soft-bg);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  align-items: center;
  gap: 28px;
}

.instagram-info {
  display: flex;
  align-items: center;
  gap: 28px;
}

.instagram-info img {
  width: 86px;
}

.instagram-info h2 {
  color: var(--blue);
  margin-bottom: 12px;
}

.instagram-info h2 span {
  color: var(--pink);
}

.instagram-info p {
  line-height: 1.4;
  margin-bottom: 12px;
}

.instagram-info strong {
  font-size: 24px;
  color: var(--blue);
}
.instagram-info a {
  text-decoration: none;
  font-weight: 700;
}

.instagram-qr {
  border-left: 1px solid #b8c1e2;
  padding-left: 20px;
}

.instagram-qr img {
  width: 200px;
}

.instagram-text {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  text-align: left;
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 20px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .hero-visual img {
        max-width: 420px;
    }



  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    border-right: none;
  }

  .instagram-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instagram-info {
    justify-content: center;
    flex-direction: column;
  }

  .instagram-qr {
    border-left: none;
    padding-left: 0;
  }
  .instagram-text {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .products {
    padding-left: 22px;
    padding-right: 22px;
  }

  .logo {
    width: 180px;
  }

  .nav {
    gap: 28px;
  }

  .btn {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .instagram-box {
    margin-left: 20px;
    margin-right: 20px;
    padding: 28px 22px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}