/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fira Sans', sans-serif;
  background: #fff;
  color: #000;
}

/* Header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 170px;
  height: auto;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #333;
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

/* Dropdown Menu (Mobile) */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #000;
  position: absolute;
  top: 70px;
  right: 20px;
  border-radius: 10px;
  padding: 1rem;
  z-index: 999;
}

.mobile-menu a {
  margin: 0.5rem 0;
}

.mobile-menu.active {
  display: flex;
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 5%;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-title {
  font-size: 2.8rem;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-features {
  list-style: none;
  margin-top: 1.5rem;
}

.hero-features li {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.2rem;
  font-family: 'Fjalla One', sans-serif;
}

.hero-features li::before {
  content: "►";
  position: absolute;
  left: 0;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

/* Get Started Button */
/* Get Started Button (Responsive + Animated) */
.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #ff135a;
  --color-outline: #ff145b80;
  --color-shadow: #00000080;
  padding-bottom: 7rem;
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--color-text);
  background: var(--color-background);
  transition: all 0.4s ease;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
  transform: scale(1);
}

.btn-content:hover,
.btn-content:focus {
  transition: all 0.4s ease;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.7em 0 var(--color-background);
  transform: scale(1.05);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

/* Arrow Icon */
.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}

/* SVG animation */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* Keyframes */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

/* 🌟 Responsive Button Adjustments */
@media (max-width: 992px) {
  .btn-content {
    font-size: 26px;
    padding: 10px 28px;
  }
}

@media (max-width: 768px) {
  .btn-content {
    font-size: 22px;
    padding: 10px 24px;
    box-shadow: 0 0 0.4em 0 var(--color-background);
  }

  .btn-content:hover {
    transform: scale(1.08);
    box-shadow: 0 0 1em 0 var(--color-background);
  }
}

@media (max-width: 480px) {
  .btn-content {
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 80px;
    box-shadow: 0 0 0.3em 0 var(--color-background);
  }

  .btn-conteiner {
    padding-bottom: 4rem;
  }

  .btn-content:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0.8em 0 var(--color-background);
  }
}


/* About Section */
.about-section {
  background: #f8f8f8;
  padding: 6rem 8%;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  font-family: 'Archivo Black', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 1.5rem;
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.about-card img {
  max-width: 80%;
  margin-bottom: 1rem;
}

.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card li {
  margin: 1rem 0;
  font-weight: 600;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-link {
  color: #e3dede;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.social-link:hover {
  color: #00aced;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00aced;
}

footer p {
  margin-top: 1rem;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .header-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-features li {
    font-size: 1.1rem;
  }

  .btn-content {
    font-size: 22px;
    padding: 10px 25px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .btn-content {
    font-size: 18px;
    padding: 8px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-section {
    padding: 3rem 5%;
  }

  .about-card {
    padding: 1rem;
  }

  footer {
    font-size: 0.9rem;
  }
}