* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  body {
    min-height: 100vh;
    color: white;
    background-color: black;
    position: relative;
  }
  
  /* Slideshow styles */
  .slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Garante que cubra toda a viewport */
    z-index: -1;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
  }
  
  /* Fade animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: 0.4} 
    to {opacity: 1}
  }
  
  /* Content styles */
  .content {
    position: relative; /* Mude de absolute para relative */
    width: 90%;
    max-width: 1200px; /* Aumente se necessário */
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 1;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100px;
  }
    
  .text {
    margin-bottom: 2rem;
  }
  
  .text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
  }
  
  .text p {
    font-size: 1.25rem;
    opacity: 0.9;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .text h1 {
      font-size: 2rem;
    }
    
    .text p {
      font-size: 1rem;
    }  

  }
  
  @media (max-width: 480px) {
    .text h1 {
      font-size: 1.5rem;
    }
    
  }

  /* Estilos para a seção de serviços */
.services {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 0rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.service-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .services h2 {
    font-size: 1.75rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services h2 {
    font-size: 1.5rem;
  }
}

  /* Contact Conntainer */
 
  .contact-box {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    flex: 1;
    min-width: 200px;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .contact-box a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s;
  }
  
  .contact-box a:hover {
    opacity: 0.8;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-box {
      padding: 1.2rem 1.5rem;
      min-width: 160px;
    }
  }
  
  @media (max-width: 480px) {   
    .contact-box {
      width: 100%;
      max-width: 280px;
      padding: 1rem 1.2rem;
    }
  }

  /* Estilo para o box unificado */
  .contact-box.unified {
    width: 100%;
    max-width: 1000px;
    padding: 2.5rem;
    margin-top: 0rem;
  }

.contact-box.unified h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;  
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: white;
  opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-items {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .contact-item {
    justify-content: center;
    width: 100%;
  }
}