* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #1b212c;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  background: #1b212c;
}

/* HEADER */

.header {
  position: fixed;
  top: 70px;
  left: 76px;
  right: 76px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  text-decoration: none;
}

.brand-text {
  width: clamp(110px, 12vw, 175px);
  height: auto;
}

.brand-icon {
  width: clamp(42px, 5vw, 72px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
}

.nav a {
  color: #ffd9ad;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.04em;
}

.nav span {
  width: 13px;
  height: 13px;
  background: #ff4a2c;
  border-radius: 50%;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}

.language-switch a,
.language-switch span {
  color: #ffd9ad;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.65;
}

.language-switch .active-lang {
  color: #ff4a2c;
  opacity: 1;
}

/* HOME */

.hero {
  min-height: 100vh;
  background-image: url("images/fondo_web.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 130px 76px 140px 110px;
}

.hero-content {
  max-width: 620px;
}

h1 {
  margin: 0 0 36px;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

h1 span {
  display: block;
}

.cream {
  color: #ffd9ad;
}

.orange {
  color: #ff4a2c;
}

.hero p {
  margin: 0 0 70px;
  color: #ffd9ad;
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: 0.02em;
}

.buttons {
  display: flex;
  gap: 34px;
  align-items: center;
}

.btn {
  height: 73px;
  border-radius: 28px;
  padding: 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn img {
  width: 34px;
  height: 34px;
}

.btn-primary {
  background: #ff4a2c;
  color: white;
}

.btn-outline {
  border: 1.5px solid #ff4a2c;
  color: white;
  min-width: 255px;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* SERVICES */

.services-section {
  min-height: 100vh;
  background-color: #1b212c;
  background-image: url("images/fondo_websolo.png");
  background-size: cover;
  background-position: center;
  padding: 170px 76px 160px;
  color: #ffffff;
  position: relative;
}

.services-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.services-section h2 {
  margin: 0 0 90px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 6vw, 82px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 120px;
}

.service-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: flex-start;
}

.service-icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.service-item h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.service-item p {
  margin: 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
  opacity: 0.95;
}

.back-top {
  display: inline-flex;
  margin-top: 80px;
  color: #ffd9ad;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  border: 1px solid #ff4a2c;
  border-radius: 999px;
  padding: 12px 20px;
  transition: 0.2s ease;
}

.back-top:hover {
  background: #ff4a2c;
  color: #ffffff;
}

/*  FIJO */

.footer {
  position: fixed;
  left: 76px;
  right: 76px;
  bottom: 34px;
  z-index: 25;
  background: transparent;
  padding: 0;
}

.line {
  height: 1px;
  background: #ffd9ad;
  opacity: 0.9;
  margin-bottom: 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  margin: 0;
  color: #ffd9ad;
  font-size: 13px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social img {
  width: 30px;
  height: 30px;
}

.separator {
  width: 2px;
  height: 42px;
  background: #ff4a2c;
}

.legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.legal a,
.legal span {
  color: #ffd9ad;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header {
    position: absolute;
    top: 38px;
    left: 28px;
    right: 28px;
    align-items: center;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .nav span {
    width: 7px;
    height: 7px;
  }

  .hero {
    padding: 130px 28px 100px;
    justify-content: center;
    text-align: center;
  }

  h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 42px;
  }

  .hero p br {
    display: none;
  }

  .buttons {
    flex-direction: column;
    gap: 18px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    height: 64px;
    font-size: 17px;
    border-radius: 22px;
  }

  .services-section {
    padding: 110px 28px 100px;
  }

  .services-section h2 {
    margin-bottom: 60px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-item {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .service-icon {
    font-size: 38px;
  }
	
	.service-icon-img {
  width: 38px;
  height: 38px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 15px;
  }

  .back-top {
    margin-top: 60px;
  }

  .footer {
    position: static;
    padding: 0 28px 28px;
    background: #1b212c;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    flex-direction: column;
    gap: 18px;
  }

  .separator {
    display: none;
  }
}
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(27, 33, 44, 0) 0%,
    #1b212c 90%
  );
  pointer-events: none;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}

.language-switch a {
  color: #ffd9ad;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.65;
}

.language-switch .active-lang {
  color: #ff4a2c;
  opacity: 1;
}

.language-switch span,
.language-switch .lang-separator {
  display: inline;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #ffd9ad;
  font-size: 14px;
  opacity: 0.65;
}