* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #000;
  border-bottom: 1px solid #1f2937;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  width: 150px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

/* COMPANY */
.company {
  padding: 80px 0;
  background: #f9fafb;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.company h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.company-features {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.company-features div {
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.company-features i {
  color: #2563eb;
  margin-right: 8px;
}

.company-card {
  background: #2563eb;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
}

/* PRODUCT */
.product {
  padding: 90px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.product-images img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
}

.badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  display: inline-block;
}

.product h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.product-email {
  font-size: 14px;
  color: #0369a1;
  font-weight: 500;
  margin: 10px 0;
}

.product-points {
  list-style: none;
  margin: 20px 0;
}

.product-points li {
  margin-bottom: 10px;
}

.product-points i {
  color: #16a34a;
  margin-right: 10px;
}

/* BUTTONS */
.btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  margin-left: 10px;
}

/* BRANDS */
.brands {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

.section-title {
  font-size: 34px;
}

.section-subtitle {
  max-width: 700px;
  margin: auto;
  color: #6b7280;
}

.brands-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.brand-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.brand-card i {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 15px;
}

/* WHY US */
.why-us {
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.why-points div {
  margin-bottom: 15px;
}

.why-points i {
  color: #16a34a;
  margin-right: 10px;
}

/* CTA */
.cta {
  background: #2563eb;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 25px 0;
}

.footer-contact {
  margin-top: 10px;
  font-size: 14px;
  color: #9ca3af;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
  }
}
