#header.scrolled,
#menu.scrolled {
  background: #0e7490;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.logo,
.menu-icon {
  font-size: 1.5rem;
}
nav,
nav ul {
  gap: 2rem;
}
.hero,
nav ul a {
  position: relative;
}
.btn-order,
.btn-primary,
nav ul a {
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0e7490;
  --color-secondary: #f97316;
  --color-text: #0f172a;
  --color-text-light: #64748b;
  --color-background: #ffffff;
  --color-background-alt: #f1f5f9;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}
#header.scrolled nav a,
.btn-primary,
.menu-icon,
nav ul a {
  color: #fff;
}
#header,
.btn-order,
.btn-primary,
.feature-card,
.logo,
.logo img,
.menu-icon,
.product-card,
.product-image img,
.whatsapp-button,
nav a::after,
nav ul a {
  transition: var(--transition);
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
}
#header.scrolled {
  padding: 1rem 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  height: 50px;
}
#header.scrolled .logo {
  color: var(--color-primary);
}
.logo img {
  max-width: 250px;
  height: auto;
}
.menu-icon {
  display: none;
  cursor: pointer;
}
.hero,
nav,
nav ul {
  display: flex;
}
nav ul {
  list-style: none;
}
nav ul a {
  font-weight: 500;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: var(--color-secondary);
}
.hero {
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0,
    var(--color-primary-dark) 100%
  );
  background-image: url(/img/empresaR.webp);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 167, 207, 0.7);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-secondary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  background: #ea580c;
}
.about,
.contact {
  padding: 6rem 0;
  background: var(--color-background);
}
.about h2,
.catalog-container h2,
.products h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.about-intro,
.catalog-container p,
.products-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
}
.about-content {
  display: grid;
  gap: 4rem;
}
.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-background-alt);
  border-radius: 16px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  display: inline-flex;
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.feature-card p {
  color: var(--color-text-light);
}
.products {
  padding: 6rem 0;
  background: var(--color-background-alt);
}
.catalog-container {
  padding: 2rem 0;
  background: var(--color-background);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card,
.feature-card,
.contact-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
  will-change: opacity, transform;
}

.product-card.show,
.feature-card.show,
.contact-item.show {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.product-image {
  height: 500px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 1.5rem;
}
.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.product-info p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact h2,
.contact-item h3,
.contact-item svg {
  color: var(--color-primary);
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.btn-order {
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}
.btn-order:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
.contact h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-item svg {
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.contact-item p {
  color: var(--color-text-light);
  line-height: 1.8;
}
#status-loja {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 700;
}
#status-circulo {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.aberto-cor {
  background-color: green;
}
.fechado-cor {
  background-color: red;
}
.elfsight-app-7735f6f6-a444-4fcf-a169-56b39a62a069 {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.footer {
  padding: 2rem 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  cursor: pointer;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
  .menu,
  .menu-icon {
    position: absolute;
  }
  .menu-icon,
  .menu.active {
    display: block;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.125rem;
  }
  .about h2,
  .contact h2,
  .products h2 {
    font-size: 2rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-button {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
  .menu-icon {
    top: 2rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .menu {
    display: none;
    width: 100%;
    text-align: center;
    top: 100%;
    left: 0;
    background: 0 0;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .menu a {
    padding: 10px;
  }
  .menu ul {
    margin-bottom: 0.5rem;
  }
}
