*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

header {
    height: 80px;
    width: 100%;
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  padding: 15px 50px;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  height: 70px;
  padding: 10px 50px;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #f0a500;
}

.logo img {
  max-height: 60px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
  max-height: 50px;
}

.nav-link {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-link a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.nav-link a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f0a500;
  transition: width 0.3s ease;
}

.nav-link a:hover {
  color: #f0a500;
}

.nav-link a:hover::after {
  width: 100%;
}

/* ------------------------------
   MENU HAMBURGUER (MOBILE)
--------------------------------*/
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle i {
  font-size: 28px;
  color: #fff;
  transition: 0.3s;
}

.menu-toggle:hover i {
  color: #f0a500;
}

@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .navbar.scrolled { padding: 10px 20px; }

  .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #050505;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    gap: 40px;
  }

  .nav-link.active {
    right: 0;
  }

  .nav-link a {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: block;
  }
}

.hero-services {
    height: 40vh; /* Mais curto, formato panorâmico */
    min-height: 350px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax Premium */
    background-repeat: no-repeat;
    margin-top: 80px; /* Espaço exato do menu fixo */
}

.hero-content {
    opacity: 0;
    animation: subirSuave 1s ease forwards 0.2s;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #f0a500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subirSuave {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

footer{
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    border-top: 1px solid #222;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3{
    margin-bottom: 15px;
    font-size: 18px;
    color: #f0a500;
    text-transform: uppercase;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: #f0a500;
}

.footer-column p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-botton{
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Ajustes no título */
.titulo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 0 40px;
}

.titulo-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.linha {
    width: 80px;
    border-bottom: 4px solid #f0a500;
    margin: 0 auto;
}

.main-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1.0s; }
.service-card:nth-child(6) { animation-delay: 1.2s; }

.service-card:hover {
    transform: translateY(-10px);
    border-color: #f0a500;
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-bottom: 2px solid #f0a500;
}

.service-info {
    padding: 30px 20px;
    text-align: center;
}

.service-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-info p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #f0a500;
    border: 2px solid #f0a500;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-service:hover {
    background: #f0a500;
    color: #000;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== RESPONSIVIDADE MOBILE (SERVIÇOS) ==== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    .titulo-container h2 {
        font-size: 2rem;
    }
    .main-services {
        padding: 40px 5%;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Força 1 coluna perfeita no celular */
        gap: 25px;
    }
    .service-card img {
        height: 200px; /* Reduz um pouco a altura da foto para caber melhor na tela */
    }
}
