/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #333;
}

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

/* Utilitários */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.3s;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgb(44, 44, 43);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
}

.nav-menu {
  display: none;
}

.nav-menu a {
  color: #fafafa;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: rgb(0, 86, 247);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    display: none;
    color: white;
  }
}

/* Hero Section */
.hero {margin-top: ;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #000000, black);
  color: white;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-content {
  text-align: center;
}

.hero h1 {margin-top: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #bfdbfe;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 570px;
  border: 8px solid #e5e7eb;
  border-radius: 60px;
  background-color: black;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(96, 165, 250, 0.3), rgba(168, 85, 247, 0.3));
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
}

.feature-card .icon {
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #bfdbfe;
  margin: 0;
}

@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: rgb(218, 218, 218);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #dbeafe;
  color: black;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #6b7280;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: white;
}

.about-content {
  display: grid;
  gap: 3rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #374151;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.25rem;
}

.stat-card span {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: black;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.contact-info {
  background-color: black;
  color: white;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.info-list {
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item .icon {
  font-size: 1.25rem;
}

.info-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.business-hours {
  background-color: #1e40af;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.business-hours h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.business-hours ul {
  list-style: none;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: black;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: #1e40af;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #60a5fa;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
}
.galeria-produto {
  padding: 20px;
  background-color: #f9f9f9;
  overflow-x: auto;
}

.container-galeria {
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.item-galeria {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px;
  max-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background: #fff;
}

.item-galeria img,
.item-galeria video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produtos-venda {
  padding: 40px 20px;
  background-color: #f1f1f1;
}

.produtos-venda h2 {
  text-align: center;
  margin-bottom: 10px;
}

.produtos-venda p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.produto-card {
  background-color: #000000;
  color: rgb(255, 123, 0);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.produto-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.produto-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.produto-card p {
  font-size: 14px;
  color: #f8f8f8;
}
.botao-celular{
  padding: 10px;
  background-color: green;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
