* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #fffbea;
    color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 0;
}
header span {
  color: #FFD500;
}
nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #FFD500;
}
.btn-header {
  background: #FFD500;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}
.hero {
    background-color: #FFD700;
    padding: 40px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.services {
    padding: 80px 20px 40px 20px;
    max-width: 900px;
    margin: auto;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    min-height: 80px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.service-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  header {
    padding: 0.8rem 0;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .logo-title {
    gap: 0.8rem;
  }
  
  .logo {
    height: 55px;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
  }
  
  nav a {
    margin-left: 0;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  nav a:hover {
    background-color: rgba(255, 213, 0, 0.1);
  }
  
  .btn-header {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 30px 15px;
  }
  
  .hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .services {
    padding: 50px 15px 30px 15px;
    margin-top: 2rem;
    max-width: 100%;
  }
  
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    min-height: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .icon-box {
    margin-right: 0;
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
  }
  
  .icon-box img {
    width: 35px;
    height: 35px;
  }
  
  .service-text h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .service-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  header {
    padding: 0.6rem 0;
  }
  
  header .container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 10px;
  }
  
  .logo-title {
    gap: 0.6rem;
    flex-direction: column;
  }
  
  .logo {
    height: 45px;
  }
  
  header h1 {
    font-size: 1.4rem;
    text-align: center;
  }
  
  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }
  
  nav a {
    margin-left: 0;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    width: 90%;
    max-width: 200px;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .btn-header {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    width: 90%;
    max-width: 200px;
    text-align: center;
  }
  
  .hero {
    padding: 20px 10px;
  }
  
  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  
  .services {
    padding: 30px 10px 20px 10px;
    margin-top: 1rem;
    max-width: 100%;
  }
  
  .service-item {
    margin-bottom: 25px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 213, 0, 0.2);
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background-color: #FFD500;
  }
  
  .icon-box img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%);
  }
  
  .service-text h2 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #111;
  }
  
  .service-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
  }
}
