@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #1e293b;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

.topbar {
  background: #1e40af;
  padding: 20px 0;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.header-btn {
  background: white;
  color: #1e40af;
  font-weight: bold;
}

.hero {
  background: #1e40af;
  color: white;
  padding: 80px 0;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-btn {
  background: #38bdf8;
  color: #1e293b;
}

.hero-media {
  flex: 1 1 300px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.features {
  padding: 60px 20px;
  background: #f1f5f9;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.features-grid i {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 10px;
}

.features-grid h3 {
  margin-bottom: 10px;
}

.pedido {
  padding: 60px 20px;
}

form {
  max-width: 500px;
  margin: auto;
  background: #e0f2fe;
  padding: 30px;
  border-radius: 12px;
}

form label {
  display: block;
  font-weight: 600;
  margin: 15px 0 5px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

form textarea {
  min-height: 100px;
}






.variants {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.variant-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 30px;
}

.variant-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.variant-card:hover {
  transform: translateY(-6px);
}

.variant-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.variant-card h3 {
  margin-bottom: 10px;
  color: #1e40af;
}

.variant-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.gallery {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  color: #1e40af;
  margin-bottom: 30px;
}

.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: #f8fafc;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.video-testimonials, .text-reviews {
  padding: 60px 20px;
  text-align: center;
}

.video-testimonials h2, .text-reviews h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1e40af;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.video-card {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.video-card span {
  font-weight: bold;
  color: #334155;
}
.text-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.text-review {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.text-review .stars {
  color: #facc15;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-us {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-us h2 {
  font-size: 1.8rem;
  color: #1e40af;
  margin-bottom: 10px;
}

.contact-us p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 1rem;
  color: #1e293b;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #1e40af;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  padding: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #1d4ed8;
}






footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
}


@media (max-width: 500px) {
  .gallery-item {
    width: 180px;
  }
}






