:root {
  --primary-color: #3b82f6;
  --secondary-color: #2563eb;
  --dark-blue: #1e293b;
  --light-blue: #e0f2fe;
  --accent-blue: #1679f7;
  --gradient-bg: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue) !important;
  letter-spacing: -1px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-blue) !important;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  cursor: pointer;
}

.hero-section {
    background: url(../img/fundo.webp);
    background-size: contain;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: right;
    display: flex
;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
}

.cta-button {
  background: var(--accent-blue);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
  background: #0284c7;
  color: white;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.service-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.about-section {
  background: white;
}

.about-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;

}

.about-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.case-card {
  background: #e2f1ff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  height: 100%;
}

.case-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.case-result {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tag {
  background: #003375;
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.solutions-section {
  background: white;
}

.solution-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  height: 100%;
}

.solution-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.cta-section {
  background: #f7f7f7;
  color: var(--dark-blue);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.cta-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-section {
  background: var(--dark-blue);
}

footer .navbar-brand {
  color: white !important;

  font-weight: 800;
}

.footer-text-h-c {
  color: white;
  font-weight: 600;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-blue);
}

.footer-section .fa-brands,
.footer-section .fa-regular,
.footer-section .fa-solid {
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-section .d-flex.gap-3 a {
  font-size: 1.5rem;
  margin-right: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

@media (max-width: 768px) {
  .hero-section{
        background-position: top center;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--dark-blue);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
