:root {
  --primary-blue: #003399;
  /* Azul escuro da logo */
  --ice-blue: #e0f7fa;
  /* Azul gelo claro */
  --accent-cyan: #00bcd4;
  /* Ciano vibrante */
  --white: #ffffff;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--ice-blue);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header / Navigation */
header {
  background-color: var(--primary-blue);
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-img {
  height: 70px;
  width: auto;
  margin-right: 12px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-btn {
  background-color: var(--accent-cyan);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-btn:hover {
  background-color: var(--white);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 51, 153, 0.78),
      rgba(0, 51, 153, 0.6)),
    url("img/gelo_fundo_2.png");
  background-size: cover;
  background-position: center;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 6rem 20px 4rem;
  margin-top: 70px;
}

.hero h1 {
  font-size: 3.3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.4rem;
  max-width: 720px;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #25d366;
  /* Verde WhatsApp */
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: #20bd5a;
}

/* Badges do Hero */
.hero-badges {
  margin-top: 2rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.badge i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

/* Produtos */
.products {
  padding: 4rem 5%;
  text-align: center;
  background-color: var(--white);
}

.products h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--ice-blue);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
  text-align: left;
}

.product-info h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* Selo para o produto (Opção A: sem foto extra) */
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 51, 153, 0.08);
  border: 1px solid rgba(0, 51, 153, 0.15);
  color: var(--primary-blue);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.9rem;
}

.product-chip i {
  color: var(--accent-cyan);
}

/* Informações e Mapa */
.info-section {
  padding: 4rem 5%;
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-details h2 {
  font-size: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--accent-cyan);
  margin-top: 2px;
  min-width: 24px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--accent-cyan);
}

/* Footer */
footer {
  background-color: #002266;
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px #666;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
  background-color: #20bd5a;
}

/* Responsividade */
@media (max-width: 768px) {
  header {
    padding: 0.8rem 4%;
  }

  .logo-container {
    font-size: 1.05rem;
  }

  .logo-img {
    height: 55px;
  }

  .nav-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 70vh;
    padding: 5rem 18px 3.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .products h2 {
    font-size: 2.1rem;
  }
}