:root {
  --green: #003b1f;
  --beige: #e6d3a3;
  --dark: #0b1f14;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: var(--green);
  color: var(--beige);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-btn {
  color: var(--beige);
  border: 1px solid rgba(232, 213, 159, 0.4);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  transition: background 0.2s;
}

.login-btn:hover {
  background: rgba(232, 213, 159, 0.1);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--beige);
  font-size: 13px;
  font-weight: 600;
}


.lang-btn {
  background: none;
  border: none;
  color: var(--beige);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 4px;
  opacity: 0.45;
  transition: opacity 0.2s;
  font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
  opacity: 0.75;
}

.lang-btn.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.logo {
  height: 100px;
}

h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

p {
  color: #f3e9d2;
  font-size: 18px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero img {
  max-width: 450px;
  border-radius: 16px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.btn {
  background: var(--beige);
  color: var(--green);
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 25px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 80px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    flex-direction: column;
    padding: 48px 16px;
    gap: 24px;
  }

  .hero-text {
    width: 100%;
  }

  .hero img {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 48px 16px;
  }

  .section .container {
    padding: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 12px;
  }
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  margin-bottom: 10px;
}

.form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  margin: auto;
}

input,
button {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  box-sizing: border-box;
}

input {
  background: var(--dark);
  color: var(--beige);
}

button {
  background: var(--beige);
  color: var(--green);
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 40px;
  color: #cbb98a;
}
