body {
  font-family: Arial, sans-serif;
  color: #0d2240;
}

.navbar {
  padding: 20px 0;
  align-items: center;
}

.navbar-row {
  align-items: center;
}

.hero {
  position: relative;
  height: 900px;
  background:
    linear-gradient(to right,
      rgba(6, 31, 68, 0.95) 0%,
      rgba(6, 31, 68, 0.85) 30%,
      rgba(6, 31, 68, 0.45) 55%,
      rgba(6, 31, 68, 0) 100%),
    url("img/file_00000000cd40720aae6a7d868a7c5d7b.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  width: 90%;

  padding: 2rem;
}

.hero h1 {
  font-size: 78px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 25px;
}

.hero-line {
  width: 80px;
  height: 4px;
  background: #f59e0b;
  margin-bottom: 35px;
}

.hero p {
  font-size: 24px;
  line-height: 1.6;
  color: white;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-content {
    width: 92%;
    padding: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .chat-button {
    width: 100%;
    max-width: 260px;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
}

@media (max-width: 380px) {
  .hero {
    position: relative;
    height: 900px;
    background:
      linear-gradient(to right,
        rgba(6, 31, 68, 0.95) 0%,
        rgba(6, 31, 68, 0.85) 30%,
        rgba(6, 31, 68, 0.45) 55%,
        rgba(6, 31, 68, 0) 100%),
      url("img/cover_mobile.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .navbar {
    padding: 10px 0;
    max-width: 100px;
  }
}

@media (max-width: 344px) {
  .navbar {
    padding: 10px 0;
    max-width: 100px;
  }
}

@media (max-width: 415px) {
  .hero {
    position: relative;
    height: 900px;
    background:
      linear-gradient(to right,
        rgba(6, 31, 68, 0.95) 0%,
        rgba(6, 31, 68, 0.85) 30%,
        rgba(6, 31, 68, 0.45) 55%,
        rgba(6, 31, 68, 0) 100%),
      url("img/cover_mobile.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }

  .navbar-logo {
    margin-left: 75px;
  }

  .navbar-title {
    margin-left: 100px;
  }
}

@media (max-width: 431px) {
  .hero {
    position: relative;
    height: 900px;
    background:
      linear-gradient(to right,
        rgba(6, 31, 68, 0.95) 0%,
        rgba(6, 31, 68, 0.85) 30%,
        rgba(6, 31, 68, 0.45) 55%,
        rgba(6, 31, 68, 0) 100%),
      url("img/cover_mobile.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }
}

.request_offer {
  background: #f59e0b;
  border: none;
  color: white;
  padding: 14px 30px;
}

.references {
  border: 1px solid white;
  color: white;
  padding: 14px 30px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title small {
  color: #f59e0b;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
  align-items: center;

  height: 100%;
}

.service-card h5 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.service-card p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 15px;
  overflow-wrap: break-word;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #0d2240;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  flex-shrink: 0;
}

.project-img {
  border-radius: 8px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-item i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0d2240;
}

.cta {
  background: #0d2240;
  color: white;
  padding: 60px 0;
}

footer {
  background: #07162d;
  color: white;
  padding: 60px 0 20px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: white;
  text-decoration: none;
}