:root {
  --cyan: #00d4ff;
  --magenta: #ff006e;
  --yellow: #ffdd00;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #888;
  --cyan-dark: #0099ff;
  --magenta-dark: #cc0057;
  --yellow-dark: #ccaa00;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}
.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0099ff 0%, #0066ff 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0077e6 0%, #004de6 100%);
    transform: scale(1.05);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.logo-accent {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
    position: relative;
    background:  url("imagens/ChatGPT\ Image\ 9\ de\ nov.\ de\ 2025\,\ 00_52_01.png" ) center center / cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #0066ff ;
}

/* Sobreposição para escurecer levemente a imagem e deixar o texto legível */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme desejar */
}

/* Conteúdo central */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 400;
}
.logo img{
  width: 20%;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
}

.btn-whatsapp-small {
  background: #25d366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
  transition: var(--transition);
}

.btn-whatsapp-small:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.whatsapp-icon {
  font-size: 20px;
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-preview,
.about-section,
.featured-products,
.products-catalog,
.contact-section {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.section-text.center {
  text-align: center;
}

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

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.product-card.animate {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.product-icon {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.product-name {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: var(--black);
}

.product-desc {
  font-size: 15px;
  color: var(--gray-medium);
  margin: 0 20px 15px;
  line-height: 1.6;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--magenta);
  display: block;
  margin: 0 20px 20px;
}

.product-card .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-header {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  text-align: center;
  color: var(--white);
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 20px;
  font-weight: 300;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 60px;
}

.about-text .section-text {
  text-align: left;
  margin: 0 0 20px 0;
}

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

.value-card {
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.value-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.value-text {
  font-size: 15px;
  color: var(--gray-medium);
  line-height: 1.6;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.info-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.info-text {
  font-size: 15px;
  color: var(--gray-medium);
  line-height: 1.6;
}

.social-links-contact {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
.logo img{
  width: 30%;
}
  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 12px 30px;
  }

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

  .section-text {
    font-size: 16px;
  }
}