@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 30px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

main {
  text-align: center;
  padding: 60px 20px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mid-phrase {
  font-size: 22px;
  font-weight: 400;
  color: #555;
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #777;
  max-width: 700px;
  margin: 20px auto 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cards-3d,
.cards-grid,
.faq-section,
.available-card,
.video-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.card,
.card-3d,
.observe-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cards-3d {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card-3d {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card-3d:hover {
  transform: scale(1.05);
}

.card-3d img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.card-3d:hover img {
  transform: scale(1.1);
}

.cards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.card {
  flex: 1 1 250px;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
}

.card i {
  display: inline-block;
  margin-bottom: 15px;
  color: #00c17c;
  width: 50px;
  height: 50px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.faq-section {
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.faq-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  text-align: center;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 700px;
  margin: 0 auto 20px;
}

.faq-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.faq-section ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.faq-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00c17c;
}

.available-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.available-inner {
  background: #f0f0f0;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease;
}

.available-inner:hover {
  transform: scale(1.02);
}

.available-inner h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.available-inner p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #25D366;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
  transform: scale(1.05);
}

footer {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: #00c17c;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* VIDEO SECTION */
.video-section {
  text-align: center;
}

.video-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
  background: #000;
  border-radius: 20px;
}

/* Personaliza os controles nativos (leve custom) */
video::-webkit-media-controls {
  filter: invert(0) brightness(1.2);
}
