body {
  font-family: "Roboto", sans-serif;
}

:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

.hlv3 {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: box-shadow 0.2s;
}
.hlv3.hlv3--scrolled .hlv3__nav {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hlv3__nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.hlv3__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hlv3__logo {
  flex-shrink: 0;
}
.hlv3__logo a {
  display: block;
  line-height: 0;
}
.hlv3__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.hlv3__cta-wsp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  background: #00914e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  flex-shrink: 0;
}
.hlv3__cta-wsp svg {
  flex-shrink: 0;
}
.hlv3__cta-wsp:hover {
  background: #007a40;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .hlv3__cta-wsp {
    display: none;
  }
}

@keyframes tyFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ty-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 1.5rem;
}

.ty-wrap {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: tyFadeUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ty-text {
  text-align: center;
}
.ty-text h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: #111;
  line-height: 1.1;
}
.ty-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.ty-video {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.18), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  background: #000;
  position: relative;
  aspect-ratio: 16/9;
}
.ty-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ty-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #00914e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.ty-cta svg {
  flex-shrink: 0;
}
.ty-cta:hover {
  background: #007a40;
  color: #fff;
  transform: translateY(-2px);
}

.lp-ftr {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 1.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .ty-main {
    padding: 40px 1rem;
  }
  .ty-text h1 {
    font-size: 28px;
  }
  .ty-text p {
    font-size: 15px;
  }
  .lp-ftr {
    padding: 20px 1rem;
  }
}
