:root {
  --primary: #1e6bff;
  --primary-dark: #1554cc;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "TASA Explorer", sans-serif;
      
}

html{
  overflow-x: hidden;
}

body {
  background: #ffffff;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.main {
  width: 100%;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* HERO */
.hero {
  width: 100%;
  height: 420px;
  position: relative;
  background: linear-gradient(
      rgba(26, 101, 117, 0.85),
      rgba(22, 70, 82, 0.85)
    );

  border-bottom-left-radius: 45% 15%;
  border-bottom-right-radius: 45% 15%;
  overflow: hidden;
}
.hero {
  animation: heroZoom 1.2s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

.person {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.person {
  animation: personRise 0.9s ease-out forwards;
}

@keyframes personRise {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.person img {
  width: 380px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* CONTENT */
.content {
  padding: 60px 24px 32px;
}

.content h1 {
  animation: fadeText 0.6s ease forwards;
}

.content p {
  animation: fadeText 0.6s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}

@keyframes fadeText {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

h1 span {
  color: orangered;
}

p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(rgba(26, 101, 117, 0.85),rgba(21, 66, 77, 0.85));
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  animation: btnPop 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes btnPop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-primary:hover {
  background: orangered;
}

/* FOOTER */
.footer {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-light);
}

.footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
