@font-face {
  font-family: 'SpecialSystemFont';
  src: local('Mexico26Bold-Regular'),
       local('Mexico26Bold'),
       local('Mexico26 Bold'),
       url('fonts/Mexico26Bold-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'SpecialSystemFont', sans-serif;
  color: #222;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

nav h1 {
  display: inline-block;
  font-size: 2.5rem;
  animation: slide-title 3s ease-in-out infinite;
}

@keyframes slide-title {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(150%);
    opacity: 0;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f5f5f5;
}

.hero h2 { font-size: 2.5rem; margin-bottom: 16px; }
.hero p  { font-size: 1.2rem; margin-bottom: 32px; }

.btn {
  background: #0066ff;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* Features */
.features {
  display: flex;
  gap: 24px;
  padding: 60px 40px;
  justify-content: center;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 32px;
  max-width: 280px;
}

/* Contact */
#contact {
  text-align: center;
  padding: 80px 20px;
  background: #0066ff;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #888;
}