* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #1e1e2a;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background-color: #0b0b0b;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #0a2a4a;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(30, 95, 142, 0.3));
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.04);
}

.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 20px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  color: #e8edf3;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 40px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-block;
}

.nav-list > li > a:hover {
  background-color: #1a2f3f;
  color: #ffffff;
  border-color: #1e5f8e;
  box-shadow: 0 0 12px rgba(30, 95, 142, 0.3);
}

.nav-list > li > a.active {
  background-color: #1e5f8e;
  color: #ffffff;
  border-color: #1e5f8e;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(30, 95, 142, 0.4);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0b0b0b;
  border: 1px solid #1a2f3f;
  border-radius: 12px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  margin-top: 6px;
  z-index: 150;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li a {
  color: #e8edf3;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: #1a2f3f;
  border-left-color: #1e5f8e;
  color: #ffffff;
  padding-left: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 120;
}

.hamburger .bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #eef4fa;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.hamburger:hover .bar {
  background-color: #1e5f8e;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 6px solid #1e5f8e;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.mobile-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(30, 95, 142, 0.4));
}

.nav-mobile {
  width: 100%;
}

.nav-list-mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.nav-list-mobile > li {
  width: 100%;
}

.nav-list-mobile > li > a {
  color: #e0e8f2;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 60px;
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: 0.8px;
  border: 1px solid transparent;
  width: 100%;
}

.nav-list-mobile > li > a:hover,
.nav-list-mobile > li > a:active {
  background-color: #1a2f3f;
  color: #ffffff;
  border-color: #1e5f8e;
  box-shadow: 0 0 20px rgba(30, 95, 142, 0.4);
  transform: scale(1.02);
}

.nav-list-mobile > li > a.active {
  background-color: #1e5f8e;
  color: #ffffff;
  font-weight: 600;
  border-color: #1e5f8e;
  box-shadow: 0 0 24px rgba(30, 95, 142, 0.6);
}

.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dropdown-arrow-mobile {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.mobile-dropdown.active .dropdown-arrow-mobile {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 8px 0;
  margin: 4px auto 0;
  width: 90%;
  background: #141414;
  border-radius: 12px;
  border: 1px solid #1a2f3f;
}

.mobile-dropdown-menu.show {
  display: block;
}

.mobile-dropdown-menu li a {
  color: #e0e8f2;
  text-decoration: none;
  padding: 12px 24px;
  display: block;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.mobile-dropdown-menu li a:hover {
  background-color: #1a2f3f;
  color: #ffffff;
  padding-left: 32px;
}

.mobile-footer {
  margin-top: 20px;
  color: #5a7184;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-top: 1px solid #1e2f3e;
  padding-top: 28px;
  width: 80%;
}

.close-overlay {
  position: absolute;
  top: 28px;
  right: 28px;
  background: transparent;
  border: none;
  font-size: 2.6rem;
  color: #c0d0e0;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
  padding: 0 10px;
}

.close-overlay:hover {
  color: #1e5f8e;
  transform: rotate(90deg);
}

@media screen and (max-width: 820px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-img {
    height: 40px;
  }
}

@media screen and (max-width: 420px) {
  .container {
    padding: 0 16px;
  }
  .logo-img {
    height: 34px;
  }
  .mobile-logo-img {
    height: 52px;
  }
  .nav-list-mobile > li > a {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
  .mobile-dropdown-menu li a {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .close-overlay {
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
  }
}

/*hero*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/capa-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(123, 179, 217, 0.3);
  border-radius: 50%;
  animation: floatParticle 8s infinite linear;
}

.hero-particles span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 20%; left: 85%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 70%; left: 90%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 30%; left: 50%; animation-delay: 0.5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(6) { top: 80%; left: 45%; animation-delay: 1.5s; width: 7px; height: 7px; }
.hero-particles span:nth-child(7) { top: 45%; left: 70%; animation-delay: 2.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { top: 15%; left: 30%; animation-delay: 3.5s; width: 5px; height: 5px; }

@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-text-wrapper {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s 0.4s forwards;
}

.hero-pre-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.text-gradient {
  background: linear-gradient(135deg, #cbe2f1 0%, #25668f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.text-white {
  color: #ffffff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-description .mobile-break {
  display: none;
}

.hero-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #104c73, transparent);
  margin: 0 auto;
  opacity: 0.5;
  box-shadow: 0 0 30px rgba(123, 179, 217, 0.15);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
  padding: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7bb3d9, transparent);
  opacity: 0.3;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #7bb3d9 0%, #1d3d50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.stat-number:hover {
  transform: scale(1.05);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 0.8vw, 0.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(123, 179, 217, 0.2), transparent);
}

.hero-actions {
  opacity: 0;
  animation: fadeInUp 1s 0.8s forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 45px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #1a5fc7, #0f3b8a);
  border: none;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(74, 141, 183, 0.3);
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(74, 141, 183, 0.4);
  background: linear-gradient(135deg, #2d6b8f 0%, #1a4a66 100%);
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero svg {
  transition: transform 0.3s ease;
}

.btn-hero:hover svg {
  transform: translateX(4px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 100vh;
    background-attachment: scroll;
    padding: 30px 16px;
    align-items: center;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-badge {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .hero-text-wrapper {
    margin-bottom: 30px;
  }

  .hero-pre-title {
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    letter-spacing: 6px;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 7vw, 4rem);
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 16px;
  }

  .hero-description .mobile-break {
    display: none;
  }

  .hero-line {
    width: 60px;
  }

  .hero-stats {
    gap: 30px;
    margin-bottom: 30px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    gap: 4px;
    flex: 1;
    min-width: 100px;
  }

  .stat-item::before {
    top: -8px;
    width: 25px;
  }

  .stat-number {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  }

  .stat-label {
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    letter-spacing: 1.5px;
  }

  .stat-divider {
    height: 45px;
  }

  .btn-hero {
    padding: 14px 38px;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    gap: 10px;
  }

  .btn-hero svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 20px 14px;
    min-height: 100%;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0;
  }

  .hero-badge {
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
    padding: 5px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }

  .hero-text-wrapper {
    margin-bottom: 24px;
  }

  .hero-pre-title {
    font-size: clamp(0.6rem, 1.8vw, 0.75rem);
    letter-spacing: 5px;
    margin-bottom: 4px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6.5vw, 3.2rem);
    letter-spacing: -1.5px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .hero-description .mobile-break {
    display: inline;
  }

  .hero-line {
    width: 50px;
    height: 2px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    gap: 3px;
    flex: 0 1 auto;
    min-width: 80px;
    padding: 0 5px;
  }

  .stat-item::before {
    top: -6px;
    width: 20px;
    height: 2px;
  }

  .stat-number {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .stat-label {
    font-size: clamp(0.5rem, 1.2vw, 0.6rem);
    letter-spacing: 1.2px;
  }

  .stat-divider {
    height: 35px;
    width: 1px;
  }

  .btn-hero {
    padding: 12px 32px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    gap: 8px;
    letter-spacing: 1.8px;
  }

  .btn-hero svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 16px 12px;
    min-height: 100%;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0;
  }

  .hero-badge {
    font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    padding: 4px 12px;
    margin-bottom: 14px;
  }

  .hero-text-wrapper {
    margin-bottom: 20px;
  }

  .hero-pre-title {
    font-size: clamp(0.5rem, 1.8vw, 0.65rem);
    letter-spacing: 4px;
    margin-bottom: 3px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    letter-spacing: -1px;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .hero-line {
    width: 40px;
    height: 1.5px;
  }

  .hero-stats {
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .stat-item {
    gap: 2px;
    min-width: 70px;
    padding: 0 3px;
  }

  .stat-item::before {
    top: -5px;
    width: 16px;
    height: 1.5px;
  }

  .stat-number {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }

  .stat-label {
    font-size: clamp(0.4rem, 1.2vw, 0.5rem);
    letter-spacing: 1px;
  }

  .stat-divider {
    height: 30px;
    width: 1px;
  }

  .btn-hero {
    padding: 10px 24px;
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    gap: 6px;
    letter-spacing: 1.5px;
  }

  .btn-hero svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 12px 10px;
    min-height: 100vh;
  }

  .hero-badge {
    font-size: 0.45rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .hero-text-wrapper {
    margin-bottom: 16px;
  }

  .hero-pre-title {
    font-size: 0.45rem;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }

  .hero-description {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .hero-line {
    width: 30px;
  }

  .hero-stats {
    gap: 10px;
    margin-bottom: 16px;
  }

  .stat-item {
    min-width: 60px;
    padding: 0 2px;
  }

  .stat-item::before {
    top: -4px;
    width: 12px;
    height: 1.5px;
  }

  .stat-number {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .stat-label {
    font-size: 0.35rem;
    letter-spacing: 0.8px;
  }

  .stat-divider {
    height: 25px;
  }

  .btn-hero {
    padding: 8px 18px;
    font-size: 0.55rem;
    gap: 4px;
    letter-spacing: 1px;
  }

  .btn-hero svg {
    width: 12px;
    height: 12px;
  }
}

/*valores*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mvv-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

.mvv-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 141, 183, 0.06) 0%, transparent 70%);
  animation: floatShape 15s infinite ease-in-out;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(74, 141, 183, 0.04) 0%, transparent 70%);
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(123, 179, 217, 0.03) 0%, transparent 70%);
}

.shape-4 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 20%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(74, 141, 183, 0.05) 0%, transparent 70%);
}

.shape-5 {
  width: 250px;
  height: 250px;
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(123, 179, 217, 0.03) 0%, transparent 70%);
}

.shape-6 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 30%;
  animation-delay: 7s;
  background: radial-gradient(circle, rgba(74, 141, 183, 0.04) 0%, transparent 70%);
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.6;
  }
}

.mvv-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
}

.mvv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mvv-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.mvv-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.9s 0.3s forwards;
}

.mvv-title .highlight-blue {
  background: linear-gradient(135deg, #7bb3d9 0%, #285d7b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mvv-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7bb3d9, #24536e);
  margin: 0 auto;
  border-radius: 3px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
  box-shadow: 0 0 30px rgba(74, 141, 183, 0.2);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}

.mvv-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #7bb3d9, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 179, 217, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.card-mission {
  background: linear-gradient(145deg, rgba(123, 179, 217, 0.08), rgba(74, 141, 183, 0.02));
}

.card-vision {
  background: linear-gradient(145deg, rgba(74, 141, 183, 0.08), rgba(45, 107, 143, 0.02));
}

.card-values {
  background: linear-gradient(145deg, rgba(45, 107, 143, 0.08), rgba(26, 74, 102, 0.02));
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(123, 179, 217, 0.15), rgba(45, 107, 143, 0.05));
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 179, 217, 0.1);
}

.mvv-card:hover .card-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(123, 179, 217, 0.25), rgba(45, 107, 143, 0.1));
  border-color: rgba(123, 179, 217, 0.2);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: #7bb3d9;
  stroke-width: 1.8;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.card-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .mvv-grid {
    gap: 24px;
  }

  .mvv-card {
    padding: 32px 24px;
  }
}

@media (max-width: 820px) {
  .mvv-section {
    padding: 50px 16px;
    min-height: auto;
  }

  .mvv-header {
    margin-bottom: 40px;
  }

  .mvv-badge {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    padding: 6px 18px;
  }

  .mvv-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .mvv-line {
    width: 60px;
    height: 2px;
  }

  .mvv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mvv-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .card-icon {
    width: 56px;
    height: 56px;
  }

  .card-icon svg {
    width: 26px;
    height: 26px;
  }

  .card-title {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }

  .card-text {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    line-height: 1.6;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }
  .shape-2 {
    width: 250px;
    height: 250px;
  }
  .shape-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .mvv-section {
    padding: 40px 14px;
  }

  .mvv-header {
    margin-bottom: 32px;
  }

  .mvv-badge {
    font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    padding: 5px 14px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
  }

  .mvv-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .mvv-line {
    width: 50px;
    height: 2px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mvv-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .card-icon svg {
    width: 22px;
    height: 22px;
  }

  .card-title {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 10px;
  }

  .card-text {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    line-height: 1.5;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
  .shape-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
  }
  .shape-3 {
    width: 150px;
    height: 150px;
  }
  .shape-4 {
    width: 120px;
    height: 120px;
  }
  .shape-5 {
    width: 140px;
    height: 140px;
  }
  .shape-6 {
    display: none;
  }
}

@media (max-width: 480px) {
  .mvv-section {
    padding: 30px 12px;
  }

  .mvv-header {
    margin-bottom: 26px;
  }

  .mvv-badge {
    font-size: 0.5rem;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .mvv-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 10px;
  }

  .mvv-line {
    width: 40px;
    height: 2px;
  }

  .mvv-grid {
    gap: 14px;
  }

  .mvv-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .card-title {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: 8px;
  }

  .card-text {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    line-height: 1.5;
  }

  .shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
    opacity: 0.5;
  }
}

@media (max-width: 360px) {
  .mvv-section {
    padding: 24px 10px;
  }

  .mvv-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
  }

  .card-icon svg {
    width: 17px;
    height: 17px;
  }

  .card-title {
    font-size: 0.8rem;
  }

  .card-text {
    font-size: 0.65rem;
  }
}

/*sobre*/

/*sobre*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sobre-section {
  background-color: #eef1f5;
  padding: 80px 5%;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  overflow: hidden;
}

.container-sobre {
  max-width: 1280px;
  margin: 0 auto;
}

.sobre-content-top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.sobre-titulo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b1a2b;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.sobre-titulo::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #1a3a5c;
  border-radius: 4px;
}

.sobre-destaque {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f2a44;
  margin: 28px 0 18px 0;
  line-height: 1.3;
}

.sobre-texto {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1c2e42;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.sobre-content-bottom {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sobre-textos-left {
  flex: 1 1 50%;
  min-width: 300px;
}

.sobre-imagem-right {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-imagem-right img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 6 / 5;

  border: none;
  box-shadow: none;
  border-radius: 0;
}

.sobre-diferencial {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(10, 25, 45, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icone-diferencial {
  font-size: 2rem;
  line-height: 1;
  background: #1a3a5c;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(26, 58, 92, 0.25);
}

.diferencial-titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b1a2b;
  letter-spacing: -0.01em;
}

.destaque-tags {
  font-weight: 700;
  color: #0b1a2b;
  letter-spacing: -0.01em;
  font-size: 1rem;
  margin-top: 10px;
}

.destaque-final {
  font-weight: 700;
  color: #0b1a2b;
  letter-spacing: -0.01em;
  font-size: 1rem;
  margin-top: 10px;
}

.btn-wrapper {
  margin-top: 36px;
}

.btn-orcamento {
  display: inline-block;
  background: #0f2a44;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 48px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px -8px rgba(15, 42, 68, 0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.btn-orcamento::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-orcamento:hover {
  background: #1a4068;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -8px rgba(15, 42, 68, 0.45);
}

.btn-orcamento:hover::before {
  left: 100%;
}

.btn-orcamento:active {
  transform: scale(0.97);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .sobre-content-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .sobre-textos-left {
    flex: 1 1 100%;
    min-width: unset;
  }

  .sobre-imagem-right {
    flex: 1 1 100%;
    width: 100%;
    order: 2;
  }

  .sobre-textos-left {
    order: 1;
  }

  .sobre-imagem-right img {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .sobre-titulo {
    font-size: 2rem;
  }

  .sobre-destaque {
    font-size: 1.25rem;
  }

  .btn-orcamento {
    padding: 14px 40px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .btn-wrapper {
    width: 100%;
  }

  .sobre-content-top {
    margin-bottom: 40px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .sobre-section {
    padding: 50px 5%;
  }

  .sobre-titulo {
    font-size: 1.7rem;
  }

  .sobre-destaque {
    font-size: 1.1rem;
  }

  .sobre-texto {
    font-size: 0.98rem;
  }

  .diferencial-titulo {
    font-size: 1.1rem;
  }

  .icone-diferencial {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .btn-orcamento {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .sobre-content-top {
    margin-bottom: 30px;
  }
}

/*servicos*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.servicos-section {
  background-color: #0a0f16;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(30, 80, 160, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(20, 100, 200, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(40, 120, 220, 0.04) 0%, transparent 35%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(30, 80, 180, 0.015) 40px, rgba(30, 80, 180, 0.015) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(30, 80, 180, 0.015) 40px, rgba(30, 80, 180, 0.015) 41px);
  padding: 80px 5%;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(60, 140, 255, 0.08);
  border-bottom: 1px solid rgba(60, 140, 255, 0.08);
}

.servicos-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 100, 220, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.servicos-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 80, 200, 0.035) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.servicos-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* cabeçalho */
.servicos-header {
  text-align: center;
  margin-bottom: 50px;
}

.servicos-titulo {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6aafff, #1a6adf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.servicos-titulo::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2a7ae0, transparent);
  border-radius: 4px;
}

.servicos-subtitulo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #e0edff;
  margin-top: 24px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.servicos-descricao {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8cef0;
  max-width: 800px;
  margin: 0 auto 10px;
  opacity: 0.9;
}

/* etapas */
.servicos-etapas {
  background: rgba(10, 25, 50, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 36px 40px;
  margin: 40px 0;
  border: 1px solid rgba(50, 130, 255, 0.12);
  box-shadow: 0 8px 40px rgba(0, 20, 60, 0.3);
}

.etapas-titulo {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b0d4ff;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  border-left: 4px solid #2a7ae0;
  padding-left: 18px;
}

.etapas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 28px;
}

.etapa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d6e8ff;
  font-size: 1.02rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(50, 130, 255, 0.06);
}

.etapa-icone {
  font-size: 1.6rem;
  min-width: 36px;
  text-align: center;
  filter: drop-shadow(0 0 6px rgba(40, 120, 255, 0.2));
}

.etapa-texto {
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* especialidades */
.servicos-especialidades {
  margin: 50px 0 40px;
}

.especialidades-titulo {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b0d4ff;
  margin-bottom: 28px;
  border-left: 4px solid #2a7ae0;
  padding-left: 18px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 30px;
  background: rgba(10, 25, 50, 0.3);
  backdrop-filter: blur(2px);
  border-radius: 24px;
  padding: 32px 36px;
  border: 1px solid rgba(50, 130, 255, 0.06);
}

.especialidade-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #c8dfff;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(50, 130, 255, 0.04);
  transition: all 0.2s;
}

.especialidade-item:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.espec-icone {
  font-size: 1.3rem;
  min-width: 32px;
  text-align: center;
  opacity: 0.8;
}

/* compromisso */
.servicos-compromisso {
  background: linear-gradient(135deg, rgba(10, 35, 80, 0.6), rgba(5, 15, 40, 0.7));
  border-radius: 24px;
  padding: 36px 44px;
  margin: 40px 0 44px;
  border-left: 4px solid #2a7ae0;
  border-right: 1px solid rgba(50, 130, 255, 0.08);
  border-top: 1px solid rgba(50, 130, 255, 0.05);
  border-bottom: 1px solid rgba(50, 130, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 20, 60, 0.25);
}

.compromisso-texto {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #c6ddfa;
  margin-bottom: 16px;
}

.compromisso-texto:last-child {
  margin-bottom: 0;
}

/* botão */
.servicos-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.btn-servicos {
  display: inline-block;
  background: linear-gradient(135deg, #1a5fc7, #0f3b8a);
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 56px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 28px -6px rgba(20, 80, 200, 0.45);
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 180, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.6s ease;
}

.btn-servicos:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -6px rgba(20, 80, 200, 0.6);
  background: linear-gradient(135deg, #226ae0, #12449e);
  border-color: rgba(100, 180, 255, 0.4);
}

.btn-servicos:hover::before {
  left: 100%;
}

.btn-servicos:active {
  transform: scale(0.97);
}

/* Efeitos de revelação */
.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-fade.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-item:nth-child(2) { transition-delay: 0.10s; }
.reveal-item:nth-child(3) { transition-delay: 0.15s; }
.reveal-item:nth-child(4) { transition-delay: 0.20s; }
.reveal-item:nth-child(5) { transition-delay: 0.25s; }
.reveal-item:nth-child(6) { transition-delay: 0.30s; }
.reveal-item:nth-child(7) { transition-delay: 0.35s; }
.reveal-item:nth-child(8) { transition-delay: 0.40s; }
.reveal-item:nth-child(9) { transition-delay: 0.45s; }

/* responsivo */
@media (max-width: 900px) {
  .servicos-titulo {
    font-size: 2.2rem;
  }
  .servicos-subtitulo {
    font-size: 1.4rem;
  }
  .servicos-descricao {
    font-size: 1rem;
    padding: 0 10px;
  }
  .etapas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .especialidades-grid {
    grid-template-columns: 1fr 1fr;
    padding: 24px 20px;
  }
  .servicos-etapas {
    padding: 28px 24px;
  }
  .servicos-compromisso {
    padding: 28px 24px;
  }
  .btn-servicos {
    padding: 14px 40px;
    font-size: 1rem;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .servicos-section {
    padding: 50px 4%;
  }
  .servicos-titulo {
    font-size: 1.8rem;
  }
  .servicos-subtitulo {
    font-size: 1.2rem;
  }
  .etapas-grid {
    grid-template-columns: 1fr;
  }
  .especialidades-grid {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .servicos-etapas {
    padding: 20px 16px;
  }
  .servicos-compromisso {
    padding: 20px 16px;
  }
  .etapa-item {
    font-size: 0.95rem;
  }
  .especialidade-item {
    font-size: 0.93rem;
  }
  .compromisso-texto {
    font-size: 0.98rem;
  }
  .btn-servicos {
    padding: 14px 20px;
    font-size: 0.98rem;
    max-width: 100%;
  }
}


/*portfólio*/

.portfolio-section {
  width: 100%;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.portfolio-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 55px;
}

.portfolio-header h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  color: #123d69;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.portfolio-line {
  display: inline-block;
  width: 45px;
  height: 3px;
  margin: 0 15px 10px;
  background: #1261a0;
  border-radius: 20px;
}

.portfolio-header p {
  max-width: 650px;
  margin: 18px auto 0;
  color: #687789;
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.portfolio-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.portfolio-slide {
  flex: 0 0 50%;
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background: #f2f4f7;
  box-shadow: 0 12px 35px rgba(18, 61, 105, 0.12);
}

.portfolio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.6s ease;
}

.portfolio-image:hover img {
  transform: scale(1.04);
}

.portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 25px;
  background: linear-gradient(
    to top,
    rgba(10, 55, 96, 0.98) 0%,
    rgba(18, 97, 160, 0.94) 75%,
    rgba(18, 97, 160, 0.82) 100%
  );
  box-shadow: 0 -8px 25px rgba(18, 61, 105, 0.18);
}

.portfolio-caption span {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 65px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.portfolio-arrow:hover {
  opacity: 0.8;
}

.portfolio-arrow:active {
  transform: translateY(-50%) scale(0.9);
}

.portfolio-prev {
  left: 15px;
}

.portfolio-next {
  right: 15px;
}

.portfolio-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9d3de;
  transition: all 0.3s ease;
}

.portfolio-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #1261a0;
}

@media (max-width: 900px) {

  .portfolio-section {
    padding: 80px 18px;
  }

  .portfolio-header {
    margin-bottom: 40px;
  }

  .portfolio-header h2 {
    font-size: 32px;
  }

  .portfolio-image {
    height: 360px;
  }

}

@media (max-width: 600px) {

  .portfolio-section {
    padding: 65px 15px;
  }

  .portfolio-header {
    margin-bottom: 35px;
  }

  .portfolio-header h2 {
    font-size: 28px;
  }

  .portfolio-line {
    width: 30px;
    height: 2px;
    margin: 0 9px 8px;
  }

  .portfolio-header p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .portfolio-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
  }

  .portfolio-image {
    height: 340px;
    border-radius: 14px;
  }

  .portfolio-caption {
    padding: 18px 20px;
  }

  .portfolio-caption span {
    font-size: 15px;
  }

  .portfolio-arrow {
    width: 45px;
    height: 55px;
    font-size: 48px;
  }

  .portfolio-prev {
    left: 3px;
  }

  .portfolio-next {
    right: 3px;
  }

  .portfolio-dots {
    margin-top: 20px;
  }

}

@media (max-width: 400px) {

  .portfolio-header h2 {
    font-size: 25px;
  }

  .portfolio-line {
    width: 25px;
    margin: 0 6px 7px;
  }

  .portfolio-image {
    height: 290px;
  }

}
/*banner*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner-section {
  padding: 80px 5%;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  position: relative;
  background: url('img/banner.png') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.796) 0%, rgba(0, 0, 0, 0.30) 50%, rgba(0, 0, 0, 0.767) 100%);
  z-index: 0;
}

.banner-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(11, 42, 74, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(11, 42, 74, 0.10) 0%, transparent 60%);
  z-index: 0;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 780px;
}

.banner-text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banner-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.banner-title {
  font-size: 4.2rem;
  font-weight: 800;
color: #3885d2;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(74, 158, 255, 0.15);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.banner-btn-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a5fc7, #0f3b8a);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 50px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 32px -6px rgba(20, 80, 200, 0.45);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(100, 180, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.7s ease;
}

.banner-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 44px -6px rgba(20, 80, 200, 0.6);
  background: linear-gradient(135deg, #226ae0, #12449e);
  border-color: rgba(100, 180, 255, 0.4);
}

.banner-btn:hover::before {
  left: 100%;
}

.banner-btn:active {
  transform: scale(0.96);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .banner-title {
    font-size: 3.4rem;
  }
  
  .banner-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  
  .banner-content {
    max-width: 650px;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 60px 5%;
    min-height: 420px;
    background-position: 70% center;
  }
  
  .banner-title {
    font-size: 2.8rem;
  }
  
  .banner-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2.5px;
  }
  
  .banner-content {
    max-width: 100%;
    gap: 24px;
    align-items: flex-start;
  }
  
  .banner-btn {
    padding: 14px 42px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 50px 4%;
    min-height: 360px;
    background-position: 60% center;
  }
  
  .banner-section::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.40) 60%, rgba(0, 0, 0, 0.60) 100%);
  }
  
  .banner-title {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
  }
  
  .banner-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  
  .banner-content {
    gap: 20px;
  }
  
  .banner-btn {
    padding: 13px 36px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
  
  .banner-btn-wrapper {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .banner-section {
    min-height: 300px;
    padding: 40px 4%;
  }
  
  .banner-title {
    font-size: 1.8rem;
  }
  
  .banner-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  
  .banner-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/*localização*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.localizacao-section {
  background-color: #080d15;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(30, 80, 180, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(20, 90, 200, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(40, 120, 240, 0.03) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(30, 80, 180, 0.012) 50px, rgba(30, 80, 180, 0.012) 51px),
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(30, 80, 180, 0.012) 50px, rgba(30, 80, 180, 0.012) 51px);
  padding: 80px 5%;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(50, 130, 255, 0.06);
  border-bottom: 1px solid rgba(50, 130, 255, 0.06);
}

.localizacao-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 100, 220, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.localizacao-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 80, 200, 0.025) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.localizacao-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.localizacao-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.localizacao-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.localizacao-titulo {
  font-size: 2.8rem;
  font-weight: 700;
  color: #6aafff;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #6aafff, #2a7ae0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.localizacao-titulo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2a7ae0, #6aafff);
  border-radius: 4px;
}

.localizacao-endereco {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #c8dfff;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 18px 24px;
  background: rgba(10, 30, 60, 0.4);
  border-left: 3px solid #2a7ae0;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(4px);
}

.localizacao-atuacao {
  background: rgba(10, 30, 60, 0.3);
  backdrop-filter: blur(4px);
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(50, 130, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 10, 40, 0.2);
}

.atuacao-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6aafff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.atuacao-texto {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8d0ec;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.localizacao-btn-wrapper {
  margin-top: 8px;
}

.localizacao-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a5fc7, #0f3b8a);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 15px 48px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 28px -6px rgba(20, 80, 200, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(100, 180, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.localizacao-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.localizacao-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -6px rgba(20, 80, 200, 0.55);
  background: linear-gradient(135deg, #226ae0, #12449e);
  border-color: rgba(100, 180, 255, 0.3);
}

.localizacao-btn:hover::before {
  left: 100%;
}

.localizacao-btn:active {
  transform: scale(0.96);
}

.localizacao-mapa {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: stretch;
}

.mapa-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #2a7ae0;
  box-shadow: 0 0 40px rgba(42, 122, 224, 0.08), 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  background: #0a1525;
  position: relative;
}

.mapa-wrapper::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(42, 122, 224, 0.1), transparent 50%, rgba(42, 122, 224, 0.05));
  pointer-events: none;
  z-index: 1;
}

.mapa-wrapper:hover {
  border-color: #4a9eff;
  box-shadow: 0 0 60px rgba(42, 122, 224, 0.12), 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: scale(1.005);
}

.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}

@media (max-width: 992px) {
  .localizacao-content {
    gap: 40px;
  }
  
  .localizacao-titulo {
    font-size: 2.3rem;
  }
  
  .localizacao-endereco {
    font-size: 1.1rem;
  }
  
  .mapa-wrapper iframe {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .localizacao-section {
    padding: 50px 4%;
  }
  
  .localizacao-content {
    flex-direction: column;
    gap: 35px;
  }
  
  .localizacao-info {
    order: 1;
  }
  
  .localizacao-mapa {
    order: 2;
    min-width: unset;
  }
  
  .localizacao-atuacao {
    order: 3;
  }
  
  .localizacao-titulo {
    font-size: 2rem;
  }
  
  .localizacao-endereco {
    font-size: 1.05rem;
    padding: 14px 20px;
  }
  
  .atuacao-texto {
    font-size: 0.95rem;
  }
  
  .mapa-wrapper iframe {
    min-height: 300px;
  }
  
  .localizacao-btn {
    padding: 14px 40px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .localizacao-btn-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .localizacao-section {
    padding: 40px 3%;
  }
  
  .localizacao-titulo {
    font-size: 1.7rem;
  }
  
  .localizacao-titulo::after {
    width: 45px;
    height: 3px;
  }
  
  .localizacao-endereco {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
  
  .atuacao-titulo {
    font-size: 1rem;
  }
  
  .atuacao-texto {
    font-size: 0.9rem;
  }
  
  .localizacao-atuacao {
    padding: 18px 20px;
  }
  
  .mapa-wrapper {
    border-width: 2px;
    border-radius: 16px;
  }
  
  .mapa-wrapper iframe {
    min-height: 250px;
  }
  
  .localizacao-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  .localizacao-content {
    gap: 25px;
  }
}

@media (max-width: 360px) {
  .mapa-wrapper iframe {
    min-height: 200px;
  }
  
  .localizacao-titulo {
    font-size: 1.4rem;
  }
  
  .localizacao-endereco {
    font-size: 0.88rem;
  }
}

/*contatos*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contato-section {
  background: linear-gradient(180deg, #e8ecf1 0%, #d5dce6 100%);
  padding: 80px 5%;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(11, 42, 74, 0.06);
}

.contato-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 42, 74, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contato-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(11, 42, 74, 0.025) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contato-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contato-header {
  text-align: center;
  margin-bottom: 50px;
}

.contato-titulo {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b2a4a;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.contato-titulo::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0b2a4a, #4a8ab5);
  border-radius: 4px;
}

.contato-subtitulo {
  font-size: 1.15rem;
  color: #3a5a7a;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-top: 18px;
  opacity: 0.85;
}

.contato-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.contato-info {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.contato-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 25px rgba(11, 42, 74, 0.06);
}

.contato-card:hover {
  transform: translateY(-4px);
  border-color: #4a8ab5;
  box-shadow: 0 12px 40px rgba(11, 42, 74, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.contato-icon-wrapper {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 42, 74, 0.08), rgba(74, 138, 181, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 42, 74, 0.06);
}

.contato-icon {
  width: 26px;
  height: 26px;
  color: #0b2a4a;
}

.contato-info-texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contato-info-titulo {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a5a7a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contato-info-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: #0b2a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato-info-link:hover {
  color: #2a6a9a;
}

.contato-form-wrapper {
  flex: 1;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 35px rgba(11, 42, 74, 0.06);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0b2a4a;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: #0b2a4a;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(11, 42, 74, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0b2a4a;
  box-shadow: 0 0 0 3px rgba(11, 42, 74, 0.05);
  background: rgba(255, 255, 255, 0.8);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contato-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0b2a4a, #1a4a6a);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 28px -6px rgba(11, 42, 74, 0.25);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  width: 100%;
}

.contato-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.contato-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -6px rgba(11, 42, 74, 0.35);
  background: linear-gradient(135deg, #1a3a5a, #0b2a4a);
  border-color: rgba(255, 255, 255, 0.15);
}

.contato-submit-btn:hover::before {
  left: 100%;
}

.contato-submit-btn:active {
  transform: scale(0.97);
}

.contato-submit-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .contato-content {
    gap: 40px;
    flex-direction: column;
  }
  
  .contato-info {
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contato-card {
    flex: 1;
    min-width: 240px;
    max-width: 400px;
  }
  
  .contato-titulo {
    font-size: 2.3rem;
  }
  
  .contato-form-wrapper {
    padding: 32px 32px;
  }
}

@media (max-width: 768px) {
  .contato-section {
    padding: 50px 4%;
  }
  
  .contato-titulo {
    font-size: 2rem;
  }
  
  .contato-subtitulo {
    font-size: 1rem;
  }
  
  .contato-info {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contato-card {
    max-width: 100%;
    padding: 22px 24px;
  }
  
  .contato-form-wrapper {
    padding: 28px 24px;
  }
  
  .contato-info-link {
    font-size: 1.05rem;
  }
  
  .contato-submit-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contato-section {
    padding: 40px 3%;
  }
  
  .contato-titulo {
    font-size: 1.7rem;
  }
  
  .contato-titulo::after {
    width: 50px;
    height: 3px;
  }
  
  .contato-header {
    margin-bottom: 35px;
  }
  
  .contato-card {
    padding: 18px 20px;
    gap: 16px;
  }
  
  .contato-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .contato-icon {
    width: 22px;
    height: 22px;
  }
  
  .contato-info-titulo {
    font-size: 0.75rem;
  }
  
  .contato-info-link {
    font-size: 0.95rem;
  }
  
  .contato-form-wrapper {
    padding: 22px 18px;
    border-radius: 18px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .contato-submit-btn {
    padding: 13px 20px;
    font-size: 0.95rem;
    gap: 10px;
  }
  
  .contato-submit-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .contato-form {
    gap: 18px;
  }
}

/*footer*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background-color: #0b0b0b;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  border-top: 2px solid #00aaff33;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 170, 255, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(0, 170, 255, 0.08) 0%, transparent 40%),
    repeating-linear-gradient(45deg, 
      transparent 0px, 
      transparent 20px, 
      rgba(0, 170, 255, 0.02) 20px, 
      rgba(0, 170, 255, 0.02) 22px),
    repeating-linear-gradient(-45deg, 
      transparent 0px, 
      transparent 25px, 
      rgba(0, 170, 255, 0.015) 25px, 
      rgba(0, 170, 255, 0.015) 27px);
  pointer-events: none;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 170, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  justify-self: start;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.3));
  transition: filter 0.3s;
}

.footer-logo img:hover {
  filter: drop-shadow(0 0 16px rgba(0, 170, 255, 0.6));
}

.footer-icons {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  gap: 2rem;
  justify-self: center;
  align-items: center;
}

.footer-icons a {
  color: #b0d4e8;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.05);
  border: 1px solid rgba(0, 170, 255, 0.1);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.05);
}

.footer-icons a:hover {
  color: #00ccff;
  transform: translateY(-4px) scale(1.05);
  background: rgba(0, 170, 255, 0.15);
  border-color: #00aaff;
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.25);
}

.footer-address {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  justify-self: end;
  text-align: right;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: #b8d8f0;
  font-weight: 300;
  background: rgba(0, 170, 255, 0.03);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  border-left: 2px solid #00aaff44;
  backdrop-filter: blur(2px);
}

.footer-address p {
  margin: 0;
}

.footer-info {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  justify-self: center;
  text-align: center;
  font-size: 0.85rem;
  color: #8ab0c0;
  letter-spacing: 0.3px;
  padding: 0.6rem 1.5rem;
  background: rgba(0, 170, 255, 0.03);
  border-radius: 30px;
  border: 1px solid rgba(0, 170, 255, 0.06);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 300;
}

.footer-info p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-info strong {
  color: #b0d4e8;
  font-weight: 500;
}

.footer-copy {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  justify-self: center;
  text-align: center;
  font-size: 0.9rem;
  color: #7a9fb0;
  letter-spacing: 0.5px;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 170, 255, 0.08);
  width: 100%;
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer-copy p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1.2rem;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-logo {
    align-self: center;
    justify-self: center;
    order: 1;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-icons {
    order: 2;
    gap: 1.8rem;
    justify-self: center;
  }

  .footer-icons a {
    font-size: 1.6rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer-address {
    order: 3;
    justify-self: center;
    text-align: center;
    padding: 0.4rem 1rem;
    border-left: none;
    border-top: 1px solid rgba(0, 170, 255, 0.08);
    border-bottom: 1px solid rgba(0, 170, 255, 0.08);
    border-radius: 0;
    width: 100%;
    max-width: 300px;
  }

  .footer-info {
    order: 4;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0;
    width: 100%;
    max-width: 350px;
    background: rgba(0, 170, 255, 0.02);
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 170, 255, 0.06);
    border-bottom: 1px solid rgba(0, 170, 255, 0.06);
    border-radius: 0;
  }

  .footer-info p {
    font-size: 0.8rem;
    justify-content: center;
  }

  .footer-copy {
    order: 5;
    padding-top: 0.8rem;
    margin-top: 0;
    border-top: none;
    border-top: 1px solid rgba(0, 170, 255, 0.06);
  }
}

@media (max-width: 480px) {
  .footer-info {
    font-size: 0.75rem;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
  }
  
  .footer-info p {
    font-size: 0.75rem;
  }
}


@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');