/* =========================
   Geral
   ========================= */
body {
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
     Botões
     ========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #28a745;
  color: white;
}

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

.btn-secondary {
  background-color: #ffc107;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e0a800;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

/* =========================
     Header
     ========================= */
.main-header {
  background-color: #333;
  color: white;
  padding: 0rem 0;
  text-align: center;
}

.main-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  max-width: 350px;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.header-subtitle {
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* =========================
     Hero Section
     ========================= */
.hero-section {
  background-color: #222;
  color: white;
  padding: 4rem 0;
}

.hero-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.hero-content,
.hero-features {
  flex: 1 1 350px;
}

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

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content img {
  margin: 1.5rem auto;
  border: 5px solid #ffc107;
  border-radius: 15px;
}

.hero-features-img {
  border-radius: 10px;
}

.hero-content .btn {
  margin-top: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.hero-features {
  background-color: #ffc107;
  color: #222;
  padding: 2rem;
  border-radius: 8px;
}

.hero-features h2,
.hero-features h3 {
  margin-bottom: 1rem;
}

/* =========================
     Qualidade Section
     ========================= */
.quality-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.quality-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.quality-section .subtitle {
  font-size: 1.2rem;
  color: #ffc107;
  display: block;
  margin-bottom: 0.5rem;
}

/* =========================
     Features Section
     ========================= */
.features-section {
  padding: 4rem 0;
  background-color: #fff;
}

.features-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.feature-item img {
  margin: 0 auto 1rem;
  max-width: 100px;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
}

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

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.contact-map {
  flex: 1 1 500px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 15px;
}

.contact-info {
  flex: 1 1 300px;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

/* =========================
     Modernity Section
     ========================= */
.modernity-section {
  background-color: #ddd;
  padding: 2rem 0;
  text-align: center;
}

/* =========================
     Footer
     ========================= */
.main-footer {
  background-color: #333;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.main-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-width: 300px;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* =========================
     Social Section
     ========================= */
.social-section {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.social-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.stories-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.story-item {
  flex: 1 1 300px;
  max-width: 350px;
  aspect-ratio: 9/16;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateY(-5px);
}

.story-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.btn-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* =========================
     Responsividade
     ========================= */
@media (max-width: 768px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .header-subtitle {
    display: none;
  }

  .hero-section {
    padding: 0;
  }

  .logo img {
    max-width: 270px;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 1.2em;
  }

  .contact-section .container {
    flex-direction: column;
  }

  .contact-map iframe {
    height: 500px;
  }

  .stories-container {
    gap: 0.5rem;
  }

  .story-item {
    flex: 1 1 250px;
    max-width: 300px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-instagram,
  .btn-whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
