body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 20px;
}

/* Header Styles */
header {
  background: #fff;
  color: #333;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5em;
  color: #e8491d;
  font-weight: bold;
}

header nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

header nav ul li {
  display: inline;
  margin-left: 20px;
}

header nav ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #e8491d;
}

/* Hero Section Styles */
.hero {
  background: url('procedimentos-esteticos-mais-procurados-no-brasil-scaled.jpg') center/cover no-repeat;
  padding: 50px 0;
  color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fff;
}

.hero-image {
  width: 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Features Section Styles */
#features {
  padding: 50px 0;
}

#features h2 {
  color: #e8491d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

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

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.feature-item img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-item h3 {
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
}

/* Pricing Section Styles */
#pricing {
  background: #f4f4f4;
  padding: 50px 0;
}

#pricing h2 {
  color: #e8491d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

#pricing .pricing {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.price-box {
  width: 300px;
  padding: 20px;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s;
}

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

.price-box h3 {
  background: #e8491d;
  color: #fff;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.price-box p {
  margin: 10px 0;
  color: #666;
}

.price-box .price {
  font-size: 1.5em;
  color: #e8491d;
  font-weight: bold;
}

.price-box .price span {
  font-size: 0.8em;
  color: #999;
}

/* Centralize the buttons */
.price-box .btn {
  display: block;
  margin: 15px auto; 
  width: fit-content; 
}

/* Payment Section Styles */
#payment {
  padding: 50px 0;
  background-color: #fff;
  border-top: 2px solid #e8491d;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
}

#payment h2 {
  color: #e8491d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#payment p {
  text-align: center;
  color: #666;
  margin-bottom: 15px;
  font-size: 1.1em;
}

#payment p:nth-child(2) {
  font-weight: bold;
  color: #333;
}

#payment p:nth-child(3) {
  font-style: italic;
  color: #555;
}

/* Contact Section Styles */
#contact {
  background: #f4f4f4;
  padding: 50px 0;
}

#contact h2 {
  color: #e8491d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

#contact p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

#contact form {
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

#contact input,
#contact textarea {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

#contact textarea {
  height: 150px;
}

/* Button Styles */
.btn {
  background: #e8491d;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background 0.3s;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background: #c63c0e;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  header .logo {
    margin-bottom: 10px;
  }

  header nav ul {
    margin-top: 10px;
  }

  header nav ul li {
    margin-left: 10px;
  }

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

  .hero-content {
    width: 100%;
    margin-bottom: 30px;
  }

  .hero-image {
    width: 100%;
  }

  #contact form {
    width: 95%;
  }
}