:root {
  --aliova-blue: #1811a5;
  --aliova-mint: #9ff1c5;
  --aliova-pink: #fab5ec;
  --aliova-yellow: #fee502;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  font-family: Avenir Next LT Pro, system-ui, -apple-system, sans-serif;
  background-color: #fff;
  min-height: 100vh;
  overflow: hidden;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.content {
  background-color: #ffffffe6;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px #0000001a;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.section {
  width: 100%;
  height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.landing-section {
  height: 100vh;
}
.landing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.logo {
  width: 300px;
  height: auto;
  margin-bottom: 2rem;
  animation: buzz 30s infinite;
}
.landing-text {
  font-size: 3rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0;
}
.language-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  box-shadow: 0 2px 10px #0000001a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 1s ease;
}
.language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #00000026;
}
.language-toggle span {
  font-weight: 500;
  color: #333;
}
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--aliova-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 1s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.cta-button:hover {
  background-color: transparent;
  border-color: var(--aliova-blue);
  color: var(--aliova-blue);
  transform: translateY(-2px);
}
.value-proposal {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  padding: 2rem;
  border-radius: 1rem;
  background: #ffffff80;
  transition: all 1s ease;
}
.value-proposal:hover {
  background: #fffc;
  transform: translateY(-5px);
}
.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}
.about-text p {
  margin-bottom: 1.5rem;
}
.contact-content {
  text-align: center;
}
.text-content {
  margin: 2rem 0;
}
.text-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}
.text-content p {
  font-size: 1.2rem;
  color: #666;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
.slide-in-top {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideInTop 1s ease-out forwards;
}
.slide-in-left {
  opacity: 0;
  transform: translate(-50px);
  animation: slideInLeft 1s ease-out forwards 0.3s;
}
.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInBottom 1s ease-out forwards 0.6s;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translate(-50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buzz {
  0%,
  95% {
    transform: translate(0);
  }
  95.5% {
    transform: translate(-2px) rotate(-1deg);
  }
  96% {
    transform: translate(2px) rotate(1deg);
  }
  96.5% {
    transform: translate(-2px) rotate(-1deg);
  }
  97% {
    transform: translate(2px) rotate(1deg);
  }
  97.5% {
    transform: translate(-2px) rotate(-1deg);
  }
  98% {
    transform: translate(2px) rotate(1deg);
  }
  98.5% {
    transform: translate(-2px) rotate(-1deg);
  }
  99% {
    transform: translate(2px) rotate(1deg);
  }
  99.5% {
    transform: translate(-2px) rotate(-1deg);
  }
  to {
    transform: translate(0) rotate(0);
  }
}
.contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #eee;
  border-radius: 0.5rem;
  transition: all 1s ease;
  font-family: Avenir Next LT Pro, system-ui, -apple-system, sans-serif;
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--aliova-blue);
  transform: scale(1.02);
  box-shadow: 0 4px 12px #1811a51a;
}
.form-control::placeholder {
  transition: all 1s ease;
}
.form-control:focus::placeholder {
  opacity: 0.7;
  transform: translate(10px);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 1s ease;
}
.form-status.pending {
  opacity: 1;
  transform: translateY(0);
  background-color: var(--aliova-yellow);
  color: #333;
}
.form-status.success {
  opacity: 1;
  transform: translateY(0);
  background-color: var(--aliova-mint);
  color: #333;
}
.form-status.error {
  opacity: 1;
  transform: translateY(0);
  background-color: var(--aliova-pink);
  color: #333;
}
.floating-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.shape {
  position: absolute;
  opacity: 0.6;
  filter: blur(0px);
  transition: all 1s ease;
}
.shape:hover {
  opacity: 0.8;
  filter: blur(2px);
}
.pentagon {
  width: 80px;
  height: 80px;
  background-color: var(--aliova-pink);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  top: 20%;
  left: -80px;
  animation: moveRightToLeft 15s linear infinite;
  transform: rotate(25deg);
}
.circle {
  width: 70px;
  height: 70px;
  background-color: var(--aliova-blue);
  border-radius: 50%;
  top: 70%;
  right: -70px;
  animation: moveLeftToRight 18s linear infinite;
}
.triangle {
  width: 75px;
  height: 75px;
  background-color: var(--aliova-mint);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: -75px;
  left: 30%;
  animation: moveBottomToTop 12s linear infinite;
  transform: rotate(-15deg);
}
.square {
  width: 60px;
  height: 60px;
  background-color: var(--aliova-yellow);
  top: -60px;
  right: 35%;
  animation: moveTopToBottom 22s linear infinite;
  transform: rotate(45deg);
}
.square-2 {
  width: 70px;
  height: 70px;
  background-color: var(--aliova-pink);
  top: 15%;
  right: -70px;
  animation: moveDiagonalLeftDown 25s linear infinite;
}
.triangle-2 {
  width: 75px;
  height: 75px;
  background-color: var(--aliova-mint);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: -65px;
  left: -65px;
  animation: moveDiagonalRightDown 20s linear infinite;
  transform: rotate(30deg);
}
.dot-1 {
  width: 20px;
  height: 20px;
  background-color: var(--aliova-blue);
  border-radius: 50%;
  top: -20px;
  left: 25%;
  animation: moveTopToBottom 16s linear infinite;
}
.dot-2 {
  width: 20px;
  height: 20px;
  background-color: var(--aliova-blue);
  border-radius: 50%;
  bottom: -20px;
  left: 65%;
  animation: moveBottomToTop 14s linear infinite;
}
@keyframes moveRightToLeft {
  0% {
    transform: translate(calc(100vw + 80px)) rotate(25deg);
  }
  to {
    transform: translate(-80px) rotate(25deg);
  }
}
@keyframes moveLeftToRight {
  0% {
    transform: translate(-70px);
  }
  to {
    transform: translate(calc(100vw + 70px));
  }
}
@keyframes moveBottomToTop {
  0% {
    transform: translateY(calc(100vh + 75px)) rotate(-15deg);
  }
  to {
    transform: translateY(-75px) rotate(-15deg);
  }
}
@keyframes moveTopToBottom {
  0% {
    transform: translateY(-60px) rotate(45deg);
  }
  to {
    transform: translateY(calc(100vh + 60px)) rotate(45deg);
  }
}
@keyframes moveDiagonalLeftDown {
  0% {
    transform: translate(calc(-100vw - 70px), -70px) rotate(0);
  }
  to {
    transform: translate(calc(100vw + 70px), calc(100vh + 70px)) rotate(360deg);
  }
}
@keyframes moveDiagonalRightDown {
  0% {
    transform: translate(-65px, -65px) rotate(30deg);
  }
  to {
    transform: translate(calc(100vw + 65px), calc(100vh + 65px)) rotate(30deg);
  }
}
@media (max-width: 768px) {
  .landing-text {
    font-size: 2rem;
  }
  .value-proposal,
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .logo {
    width: 200px;
  }
  .content {
    padding: 1.5rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .language-toggle {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}
