@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Estilos personalizados */
:root {
  --primary-color: #ff5722;
  --secondary-color: #3d3d3d;
  --text-light: #ffffff;
  --text-dark: #333333;
  --overlay-color: rgba(0, 0, 0, 0.6);
  --whatsapp-color: #25D366;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-light);
  overflow-x: hidden;
}

/* Vídeo de fundo */
#video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  object-fit: cover;
}

/* Overlay para melhorar a legibilidade */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  z-index: -500;
}

/* Logo no topo esquerdo */
.top-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.top-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Botões principais */
.main-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.main-button {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.main-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.main-button:hover {
  background-color: #e64a19;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.main-button:hover:before {
  left: 100%;
}

/* Botão WhatsApp */
.whatsapp-button {
  background-color: var(--whatsapp-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.whatsapp-button i {
  font-size: 1.4rem;
}

.whatsapp-button:hover {
  background-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Seção de Opiniões */
.testimonials {
  padding: 50px 5%;
  background-color: rgba(0, 0, 0, 0.7);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-light);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: right;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-author p {
  margin: 5px 0;
  font-size: 0.9rem;
  font-style: normal;
}

.stars {
  color: #ffc107;
  margin-top: 5px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1, .hero p {
  animation: fadeIn 1s ease forwards;
}

.hero p {
  animation-delay: 0.3s;
}

.main-buttons {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

.whatsapp-button {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.testimonial-card {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Responsividade */
@media (max-width: 992px) {
  .testimonial-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .testimonial-card {
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .main-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .top-logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .main-button, .whatsapp-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .top-logo {
    top: 15px;
    left: 15px;
  }
  
  .top-logo img {
    height: 35px;
  }
}
