/* Hero Section - Mobile First Approach */

.hero {
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  background-color: #fcecef;
  height: 500px;
  display: flex;
  align-items: center;
  padding: 70px 15px 40px 15px;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  margin: 0 auto;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #222;
}

.hero h1 strong {
  color: var(--primary-color);
  font-weight: 600;
}

.hero p {
  font-size: 13px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.hero .btn {
  padding: 12px 30px;
  font-size: 14px;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
}

/* Tablets pequenos (480px e acima) */
@media (min-width: 480px) {
  .hero {
    padding: 80px 20px 50px 20px;
  }

  .hero-content {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero .btn {
    padding: 14px 35px;
    font-size: 15px;
    border-radius: 30px;
  }
}

/* Tablets (768px e acima) */
@media (min-width: 768px) {
  .hero-content {
    background-color: transparent;
    box-shadow: none;

    text-align: left;
    max-width: 300px;
    padding: 0;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 16px;

    margin-bottom: 10px;
  }
}

/* Desktops (1024px e acima) */
@media (min-width: 1024px) {
  .hero {
    height: 600px;
    padding: 100px 30px 60px 30px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    width: 450px;
  }
}

/* Large Desktops (1200px e acima) */
@media (min-width: 1200px) {
  .hero {
    height: 700px;
    padding: 120px 40px 80px 40px;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 20px;
    width: 600px;
  }
}

/* Ultra Large Screens (1400px e acima) */

@media (min-width: 1400px) {
  .hero {
    height: 800px;
  }
}
@media (min-width: 2000px) {
  .hero {
    height: 1100px;
  }
}
