@font-face {
  font-family: "Nasalization";
  font-style: normal;
  font-weight: 400;
  src: local("Nasalization Rg"),
    url("https://fonts.cdnfonts.com/s/6224/nasalization rg.woff") format("woff");
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  button,
  a,
  input,
  textarea,
  select {
    min-height: 44px;
    min-width: 44px;
  }

  .btn {
    min-height: 48px;
    padding: 12px 24px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #1a1a1a;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn__icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #03267c;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__brand {
  flex-shrink: 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.navbar__logo img {
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.navbar__link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.navbar__link--active {
  background: #ff1cc1;
  color: #fefefe;
  border-color: #ff1cc1;
  font-weight: 600;
}

.navbar__dropdown {
  position: relative;
}

.navbar__link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.navbar__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ff1cc1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 300ms ease;
  cursor: pointer;
  position: relative;
  border: none;
  box-shadow: 0 0 0 2px #ff1cc1, 0 0 0 4px rgba(255, 28, 193, 0.3),
    0 4px 12px rgba(255, 28, 193, 0.4);
}

.navbar__contact-btn svg {
  flex-shrink: 0;
  transition: all 300ms ease;
}

.navbar__contact-btn:hover {
  background: #e619ae;
  box-shadow: 0 0 0 2px #e619ae, 0 0 0 5px rgba(230, 25, 174, 0.4),
    0 6px 16px rgba(255, 28, 193, 0.5);
  transform: translateY(-1px);
}

.navbar__contact-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff1cc1, 0 0 0 5px rgba(255, 28, 193, 0.5),
    0 4px 12px rgba(255, 28, 193, 0.4);
}

.navbar__contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 0 2px #ff1cc1, 0 0 0 3px rgba(255, 28, 193, 0.3),
    0 2px 8px rgba(255, 28, 193, 0.3);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.language-selector .material-symbols-outlined {
  color: #ec4899;
}

.language-selector span:not(.material-symbols-outlined) {
  color: #ffffff;
}

.language-selector svg path {
  stroke: #ffffff;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar__toggle-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar__language {
  position: relative;
}

.language-selector-dropdown {
  position: relative;
  display: inline-block;
}

.language-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.language-selector-btn .material-symbols-outlined {
  color: #ec4899;
  font-size: 18px;
  line-height: 1;
}

.language-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.language-selector-btn svg {
  color: #ffffff;
}

.language-selector-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.language-selector-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  list-style: none;
  margin: 0;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.language-selector-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.12);
}

.language-option.active {
  background: #ff1cc1;
  color: #ffffff;
}

.language-selector-dropdown--mobile .language-selector-menu {
  left: 0;
  right: auto;
}

@media (max-width: 768px) {
  .language-selector-btn {
    padding: 0.75rem 1rem;
  }
}

.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 600px;
}

.hero__title {
  font-family: Nasalization, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 42px !important;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-display: swap;
}

.hero__subtitle {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px !important;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-display: swap;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__images {
  position: relative;
  display: inline-block;
  max-width: 640px;
  width: 100%;
}

.hero__background {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero__foreground {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 178%;
  height: auto;
  z-index: 2;
  border-radius: 16px;
}

.about {
  background: #eeeeee;
  position: relative;
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about__bracket {
  margin-right: 1rem;
  font-family: "Nasalization", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #ff1cc1;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

main {
  background: linear-gradient(90deg, #020763 0%, #025ec5 100%);
}

.card {
  position: relative;
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: white;
  clip-path: path("M0,0 H80 V80 Q80,0 0,0 Z");
}

.corner-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background-color: #b27bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.corner-button:hover {
  background-color: #a068ff;
}

.arrow {
  transform: rotate(0deg);
}

.about__title {
  font-family: "Nasalization", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.radius-section {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.about__description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  color: #666666;
  margin-bottom: 1.5rem;
}

.about__details {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  color: #666666;
  margin-bottom: 2.5rem;
}

.about__image {
  position: relative;
  overflow: visible;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
}

.about__text {
  position: relative;
  background-image: url("../../assets/images/fundo-img-2.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  z-index: 1;
}

.about__text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("../../assets/images/fundo-img-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.1;
  z-index: -1;
}

#produtos-digitais {
  background: #ffffff;
  border-radius: 40px 40px 0 0;
  padding: 6rem 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.blue-card {
  background: linear-gradient(135deg, #020763 0%, #025ec5 100%);
  border-radius: 20px;
  padding: 4rem;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.blue-card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 100%;
}

.blue-card__title {
  font-family: "Nasalization", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0;
  flex: 1;
  max-width: 60%;
}

.blue-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #ff1b8d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.blue-card__btn:hover {
  background: #e0157a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 27, 141, 0.3);
}

.blue-card__btn svg {
  transition: transform 0.3s ease;
}

.blue-card__btn:hover svg {
  transform: translateX(3px);
}

.section__header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.products__main-title {
  font-family: "Nasalization", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.products__main-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  text-align: justify;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service__card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8a5dfe 0%, #ff1cc1 100%);
  border-radius: 20px;
  z-index: -1;
  margin: -2px;
}

.service__icon {
  width: 78px;
  height: 78px;
  position: absolute;
  top: -15px;
  left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
  margin-left: 3rem;
}

.service__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  margin-left: 3rem;
}

.partners {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.partners__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.partners__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.partners__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666666;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.partner__card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.partner__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: #f8faff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.partner__description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}

.outsourcing-hero {
  background: linear-gradient(135deg, #020763 0%, #025ec5 100%);
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.outsourcing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(139, 92, 246, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(59, 130, 246, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.outsourcing-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.outsourcing-hero__text {
  max-width: 500px;
  order: 1;
}

.outsourcing-hero__image {
  order: 2;
}

.outsourcing-hero__title {
  font-family: "Nasalization", "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.outsourcing-hero__description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  text-align: justify;
}

.outsourcing-hero__programmers {
  margin-bottom: 2.5rem;
}

.outsourcing-hero__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-weight: 500;
}

.outsourcing-hero__number {
  color: #ff1cc1;
}

.programmers-avatars {
  display: flex;
  align-items: center;
}

.programmer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #025ec5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-left: -8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.programmer-avatar:first-child {
  margin-left: 0;
}

.programmer-avatar:hover {
  transform: translateY(-3px) scale(1.05);
  z-index: 10;
}

.programmer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.outsourcing-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.outsourcing-hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.outsourcing-hero__btn svg {
  transition: transform 0.3s ease;
}

.outsourcing-hero__btn:hover svg {
  transform: translateX(3px);
}

.outsourcing-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.outsourcing-hero__image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.outsourcing-hero__image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.outsourcing-hero__decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(270deg, #020763 0%, #025ec5 100%);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

.outsourcing-hero__decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
}

.companies {
  background: #eeeeee;
  padding: 80px 0;
}

.companies__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.companies__title {
  font-family: "Nasalization", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a202c;
  margin: 0;
}

.companies__navigation {
  display: flex;
  gap: 12px;
}

.companies__nav-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.companies__nav-btn:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.companies__nav-btn--prev {
  background: #667eea;
  color: #ffffff;
}

.companies__nav-btn--next {
  background: #ff1cc1;
  color: #ffffff;
}

.companies__nav-btn--next:hover {
  background: #e01aa8;
}

.companies__slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  width: 100%;
}

.companies__slides {
  display: flex;
  transition: transform 0.5s ease;
  width: calc(var(--companies-group-count, 1) * 100%);
}

.companies__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.companies__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 52px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  max-width: 520px;
  width: auto;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.companies__slide--active .companies__card {
  background: #020763;
  color: #ffffff;
  border: 2px solid #020763;
  transform: scale(1.02);
  max-width: 720px;
}

.companies__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.companies__slide--active .companies__card:hover {
  transform: scale(1.02) translateY(-2px);
}

.companies__card-image {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ff1cc1;
}

.companies__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.companies__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.companies__card-title {
  font-family: "Nasalization", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: inherit;
}

.companies__card-description {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

.companies__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.companies__indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.companies__indicator:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.companies__indicator--active {
  background: #667eea;
  transform: scale(1.3);
}

.cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-align: center;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta .btn--primary {
  background: #ffffff;
  color: #667eea;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1200px) {
  .companies__card {
    padding: 40px 28px;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 1400px) {
  .hero__title {
    font-size: 64px;
  }

  .hero__subtitle {
    font-size: 38px;
  }
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 45px;
  }

  .hero__subtitle {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero__content,
  .about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__text {
    order: 1;
  }

  .hero__images {
    order: 2;
    max-width: 550px;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .partners__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  #produtos-digitais {
    padding: 5rem 0;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
  }

  .blue-card {
    padding: 3rem;
    margin-bottom: 5rem;
  }

  .blue-card__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .blue-card__title {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 100%;
  }

  .section__header {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .products__main-description {
    text-align: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar__menu,
  .language-selector {
    display: none;
  }

  .navbar {
    padding: 0.3rem 0;
  }

  .navbar__brand img,
  .navbar__logo img {
    height: 26px;
  }

  .navbar__contact-btn {
    padding: 0.3rem 0.6rem;
    font-size: 11px;
    border-radius: 16px;
  }

  .navbar__toggle {
    display: none !important;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero__images {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: flex-start;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__title {
    font-size: 32px !important;
  }

  .hero__subtitle {
    font-size: 18px !important;
  }

  .hero__actions .btn {
    padding: 0.8rem 1.2rem;
    font-size: 14px;
  }

  .blue-card {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .service__card {
    padding: 1rem;
    text-align: left;
  }

  .service__icon {
    width: 40px;
    height: 40px;
    top: -8px;
    left: -8px;
  }

  .service__title {
    font-size: 14px;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
  }

  .service__description {
    font-size: 11px;
    line-height: 1.4;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    padding: 1.25rem 2rem;
  }

  #produtos-digitais {
    padding: 4rem 0;
    border-radius: 25px 25px 0 0;
    margin-top: -25px;
  }

  .blue-card {
    padding: 2.5rem;
    margin-bottom: 4rem;
  }

  .blue-card__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .blue-card__title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    max-width: 100%;
  }

  .section__header {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .products__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: left;
  }

  .products__main-description {
    text-align: left;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .service__card {
    padding: 0.8rem;
    text-align: left;
  }

  .service__icon {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
  }

  .service__title {
    margin-top: 0.8rem;
    font-size: 14px;
    margin-bottom: 0.4rem;
  }

  .service__description {
    font-size: 11px;
    line-height: 1.3;
  }

  .partner__card {
    padding: 1.5rem;
  }

  .navbar__contact-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .navbar__contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .outsourcing-hero {
    padding: 4rem 0;
  }

  .outsourcing-hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }

  .outsourcing-hero__text {
    max-width: 100%;
  }

  .outsourcing-hero__title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    text-align: left;
  }

  .outsourcing-hero__image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .programmers-avatars {
    justify-content: flex-start;
  }

  .companies {
    padding: 60px 0;
  }

  .companies__header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
  }

  .companies__title {
    font-size: 36px;
  }

  .companies__navigation {
    display: none;
  }

  .companies__card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
  }

  .companies__card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .companies__card-content {
    text-align: center;
  }

  .companies__card-title {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .companies__card-description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
  }

  .companies__slide {
    padding: 30px 20px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100%;
  }

  .hero__title {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 16px !important;
    line-height: 1.4;
  }

  .section {
    padding: 2rem 0;
  }

  .header {
    padding: 0;
  }

  .navbar {
    padding: 0.1rem 0;
  }

  .navbar__content {
    gap: 0.3rem;
  }

  .navbar__brand img,
  .navbar__logo img {
    height: 18px;
  }

  .navbar__contact-btn {
    padding: 0.2rem 0.4rem;
    font-size: 9px;
    border-radius: 12px;
  }

  .navbar__toggle {
    display: none !important;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero__images {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: flex-start;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__title {
    font-size: 28px !important;
  }

  .hero__subtitle {
    font-size: 16px !important;
  }

  .hero__actions .btn {
    padding: 0.7rem 1rem;
    font-size: 13px;
  }

  .blue-card {
    display: none;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1rem;
  }

  .card__title {
    font-size: 16px;
  }

  .card__description {
    font-size: 13px;
    line-height: 1.4;
  }

  .contact__form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 14px;
  }

  .companies__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .companies__card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .outsourcing-hero__label {
    text-align: left;
  }

  .header {
    padding: 0;
  }

  .navbar {
    padding: 0.15rem 0;
  }

  .navbar__content {
    gap: 0.5rem;
  }

  .navbar__brand img,
  .navbar__logo img {
    height: 20px;
  }

  .navbar__contact-btn {
    padding: 0.25rem 0.5rem;
    font-size: 10px;
    border-radius: 14px;
    margin: 10px;
    width: 10rem;
  }

  .navbar__toggle {
    display: none !important;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero__images {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: flex-start;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__title {
    font-size: 24px !important;
    text-align: left;
    margin-top: 2rem;
  }

  .hero__subtitle {
    font-size: 14px !important;
    text-align: left;
  }

  .hero__actions .btn {
    padding: 0.6rem 0.8rem;
    font-size: 12px;
  }

  .blue-card {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .service__card {
    padding: 0.4rem;
    text-align: left;
  }

  .service__icon {
    width: 24px;
    height: 24px;
    top: -3px;
    left: -3px;
  }

  .service__title {
    font-size: 10px;
    margin-bottom: 0.2rem;
    margin-top: 0.4rem;
    font-weight: 600;
  }

  .service__description {
    font-size: 8px;
    line-height: 1.1;
  }

  .hero__content,
  .about__content {
    gap: 2rem;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 1.4;
  }

  .about__title {
    font-size: 20px;
  }

  .about__bracket {
    font-size: 24px;
  }

  .about__image::before {
    width: 40px;
    height: 40px;
    top: -6px;
    right: -6px;
  }

  .about__corner-button {
    width: 28px;
    height: 28px;
    top: 6px;
  }

  .hero__actions {
    gap: 1rem;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card__title {
    font-size: 18px;
  }

  .card__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .services__grid,
  .products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__form {
    gap: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
    font-size: 15px;
  }

  .companies__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .companies__card {
    padding: 1.5rem;
  }

  .section__title {
    font-size: 24px;
  }

  .section__subtitle {
    font-size: 16px;
  }
}

.about__corner-button svg {
  width: 10px;
  height: 10px;
}

.about__image::before {
  width: 50px;
  height: 50px;
  top: -8px;
  right: -8px;
}

.about__corner-button {
  width: 32px;
  height: 32px;
  top: 8px;
  right: 8px;
}

.about__corner-button svg {
  width: 12px;
  height: 12px;
}

.hero__title {
  font-size: 24px;
}

.hero__subtitle {
  font-size: 16px;
}

.hero__images {
  max-width: 400px;
}

#produtos-digitais {
  padding: 3rem 0;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
}

.blue-card {
  padding: 2rem;
  margin-bottom: 3rem;
}

.blue-card__title {
  font-size: clamp(1.5rem, 6vw, 2rem);
}

.blue-card__btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

.outsourcing-hero {
  padding: 3rem 0;
}

.outsourcing-hero__content {
  gap: 2rem;
  text-align: left;
}

.outsourcing-hero__title {
  font-size: clamp(1.8rem, 8vw, 2.2rem);
  margin-bottom: 1rem;
}

.outsourcing-hero__description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.outsourcing-hero__programmers {
  margin-bottom: 2rem;
}

.programmer-avatar {
  width: 45px;
  height: 45px;
  border-width: 2px;
}

.programmers-avatars {
  justify-content: flex-start;
}

.outsourcing-hero__btn {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}

.outsourcing-hero__decoration {
  width: 60px;
  height: 60px;
  top: -15px;
  right: -15px;
}

.outsourcing-hero__decoration::before {
  width: 15px;
  height: 15px;
}

.companies {
  padding: 40px 0;
}

.companies__header {
  margin-bottom: 30px;
}

.companies__title {
  font-size: 28px;
  line-height: 1.3;
}

.companies__slider {
  overflow: hidden;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.companies__slide {
  padding: 20px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 300px;
  max-width: 33rem;
}

.companies__card {
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  width: 100%;
  margin: 0;
  flex-shrink: 0;
}

.companies__card-image {
  width: 100px;
  height: 100px;
}

.companies__card-title {
  font-size: 16px;
}

.companies__card-description {
  font-size: 14px;
}

.companies__indicators {
  gap: 12px;
  margin-top: 30px;
  padding: 20px 0;
}

.companies__indicator {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 0.6;
}

.companies__indicator--active {
  background: #667eea;
  opacity: 1;
  transform: scale(1.2);
}

.service__card {
  @media (max-width: 520px) {
    .about__bracket {
      font-size: 24px;
    }

    .about__title {
      font-size: 20px;
    }

    .hero__images {
      max-width: 350px;
    }

    .hero__foreground {
      width: 75%;
    }
  }

  @media (max-width: 480px) {
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
    }

    .partners__grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .service__card {
      padding: 0.5rem;
      text-align: left;
    }

    .service__icon {
      width: 28px;
      height: 28px;
      top: -4px;
      left: -4px;
    }

    .service__title {
      font-size: 11px;
      margin-bottom: 0.25rem;
      margin-top: 0.5rem;
      font-weight: 600;
    }

    .service__description {
      font-size: 9px;
      line-height: 1.2;
    }

    .service__icon {
      position: absolute;
      top: -10px;
      left: -10px;
      width: 55px;
      height: 55px;
    }

    .service__title {
      font-size: 1.1rem;
    }

    .service__description {
      font-size: 0.9rem;
    }

    .partner__card {
      padding: 1.5rem 1rem;
    }

    .navbar__contact-btn {
      padding: 0.6rem 1rem;
      font-size: 0.8rem;
    }

    .navbar__contact-btn svg {
      width: 16px;
      height: 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    html {
      scroll-behavior: auto;
    }
  }

  .btn:focus,
  .language-selector:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
  }

  .navbar__link:focus {
    outline: none;
  }

  @media (prefers-contrast: high) {
    .btn--primary {
      background: #000000;
      border: 2px solid #ffffff;
    }
  }

  @media print {
    .header,
    .navbar__toggle,
    .btn {
      display: none;
    }

    .hero,
    .section {
      padding: 2rem 0;
    }

    .hero__content,
    .about__content {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
}

.service__card {
  padding: 1.25rem;
}

.partner__card {
  padding: 1.25rem;
}

.cta__title {
  font-size: 1.5rem;
}

.cta__description {
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outsourcing-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blue-card__content {
    flex-direction: column;
    text-align: center;
  }

  .blue-card__title {
    max-width: 100%;
  }

  .section__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .companies__header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .contact__header {
    flex-direction: column;
    gap: 0 !important;
  }

  .contact__title {
    min-width: auto;
  }

  .outsourcing-hero__image {
    order: 1;
  }

  .outsourcing-hero__text {
    order: 2;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .service__card {
    padding: 0.5rem;
    text-align: left;
  }

  .service__icon {
    width: 28px;
    height: 28px;
    top: -4px;
    left: -4px;
  }

  .service__title {
    font-size: 11px;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
    font-weight: 600;
  }

  .service__description {
    font-size: 9px;
    line-height: 1.2;
  }

  .partner__card {
    padding: 1.5rem;
  }

  .companies__card {
    padding: 25px 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    max-width: 250px;
    width: 100%;
    margin: 0;
    flex-shrink: 0;
  }

  .companies__card-image {
    width: 60px;
    height: 60px;
  }

  .companies__card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .companies__card-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .companies__slide {
    padding: 15px 8px;
    min-height: 260px;
    justify-content: flex-start;
  }

  @media (max-width: 1024px) {
    .companies__slides {
      --companies-visible: 1;
    }
  }

  .contact__card {
    padding: 30px 20px;
  }

  .contact__content {
    padding: 24px;
  }

  .footer__content {
    gap: 40px;
  }
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.p-0 {
  padding: 0;
}
.m-0 {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
  }

  .header,
  .footer,
  .btn,
  .navbar__toggle {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .about__bracket {
    font-size: 24px;
  }

  .about__title {
    font-size: 20px;
  }

  .hero__images {
    max-width: 350px;
  }

  .hero__foreground {
    width: 75%;
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .partners__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.contact {
  background: #f8f9fa;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 7rem;
  flex-shrink: 0;
}

.contact__title {
  font-family: "Nasalization", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
  min-width: 25rem;
}

.contact__description {
  font-size: 13px;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
}

.contact__card {
  background: #f5f5f5;
  border-radius: 39.06px;
  padding: 60px;
}

.contact__content {
  background: linear-gradient(135deg, #020763 0%, #025ec5 100%);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 500px;
}

.contact__form-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 100%;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.contact__input,
.contact__textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #ff6b9d;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.contact__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.contact__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.contact__img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__card {
    padding: 40px;
  }

  .contact__title {
    font-size: 40px;
  }

  .contact__header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }

  .contact__title {
    font-size: 32px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__card {
    padding: 30px;
  }

  .contact__content {
    gap: 20px;
    padding: 24px;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact__header {
    text-align: center;
  }

  .contact__image {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 60px 0;
  }

  .contact__title {
    font-size: 28px;
  }

  .contact__description {
    font-size: 13px;
  }

  .contact__card {
    padding: 16px;
    border-radius: 20px;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact__content {
    padding: 16px;
    gap: 16px;
    min-height: 0;
  }

  .contact__form {
    gap: 14px;
  }

  .contact__form-row {
    gap: 12px;
  }

  .contact__form-group {
    gap: 6px;
  }

  .contact__label {
    font-size: 12px;
  }

  .contact__input,
  .contact__textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact__textarea {
    min-height: 90px;
  }

  .contact .navbar__contact-btn {
    padding: 12px 18px;
    font-size: 14px;
    align-self: center;
  }
  .contact .contact__submit {
    padding: 12px 18px;
    font-size: 14px;
    align-self: center;
  }
}

.footer {
  background: #020763;
  color: white;
  padding: 60px 0 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.footer__description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer__social-link img {
  width: 20px;
  height: 20px;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 19.93px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-variant: small-caps;
  margin: 0 0 24px 0;
  color: white;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: white;
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer__contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer__brand {
    text-align: left;
  }

  .footer__content > .footer__section:nth-child(2) {
    display: none;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__contact-item {
    justify-content: flex-start;
  }

  .footer__logo {
    height: 44px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
  }

  .footer__container {
    padding: 0 16px;
  }

  .footer__content {
    gap: 24px;
  }

  .footer__logo {
    height: 40px;
  }

  .footer__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer__title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer__link {
    font-size: 14px;
    padding: 8px 0;
  }

  .footer__contact-item {
    justify-content: flex-start;
    font-size: 14px;
  }

  .footer__contact-icon {
    width: 24px;
    height: 24px;
  }

  .footer__social {
    gap: 16px;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }

  .footer__social svg {
    width: 18px;
    height: 18px;
  }

  .footer__bottom {
    padding: 20px 0;
  }

  .footer__copyright {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .footer {
    padding: 24px 0 0;
  }

  .footer__content {
    gap: 20px;
  }

  .footer__logo {
    height: 36px;
  }

  .footer__description {
    font-size: 13px;
  }

  .footer__title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__link {
    font-size: 13px;
    padding: 6px 0;
  }

  .footer__contact-item {
    font-size: 13px;
  }

  .footer__contact-icon {
    width: 20px;
    height: 20px;
  }

  .footer__social {
    gap: 12px;
  }

  .footer__social a {
    width: 32px;
    height: 32px;
  }

  .footer__social svg {
    width: 16px;
    height: 16px;
  }

  .footer__bottom {
    padding: 16px 0;
  }

  .footer__copyright {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .companies__slides {
    width: calc(var(--companies-group-count, 1) * 100%);
  }

  .companies__slide {
    flex: 0 0 calc(100% / var(--companies-group-count, 1));
    min-width: calc(100% / var(--companies-group-count, 1));
    max-width: none;
  }

  .companies__card {
    max-width: 100%;
    padding: 32px 20px;
    width: 100%;
  }

  .companies__slide--active .companies__card {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .companies__slides {
    width: calc(var(--companies-slide-count, 4) * (100% / 2));
  }
}

.snackbar {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(20px);
  background: #03267c;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.snackbar--show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.snackbar--success {
  background: #2e7d32;
}

.snackbar--error {
  background: #d32f2f;
}

.contact__submit[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .snackbar {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    padding: 10px 12px;
    font-size: 13px;
    max-width: 92%;
  }
}
