body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #bfbfbf; 
  color: #000;
}

html {
  scroll-behavior: smooth; 
}


header {
  background: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #a57acc;
}

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-left: auto;
}



.promo {
  min-height: 100vh; 
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
}

.promo-text {
  font-size: 28px; 
}

.promo-text p {
  font-size: 30px; 
  margin-bottom: 15px;
}

.promo-text strong {
  font-size: 80px; 
}

.promo-text .off {
  color: #6b2d83;
  font-weight: bold;
  font-size: 50px; 
}

.promo img {
  width: 550px; 
  max-width: 100%;
}


.sobrenos {
  min-height: 100vh; 
  text-align: center;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobrenos h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.sobrenos h2 span {
  color: #6b2d83;
}

.sobrenos p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}


footer {
  background: #333;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

footer .left, 
footer .right {
  max-width: 200px;
}

footer .center {
  text-align: center;
  font-weight: bold;
}

footer .center span {
  font-weight: normal;
  font-style: italic;
}
.banner {
  height: 100vh;
  background: url("danist-soh-ZZuiaWZBWNU-unsplash.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 500px;
  animation: fadeInUp 1.5s ease-in-out;
}

.banner-content h2 {
  font-size: 62px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 28px;
  margin-bottom: 35px;
}

.banner-content span {
  font-weight: bold;
  color: #ffcc00;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: black;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
  font-size: 20px;
  padding: 14px 32px;
}

.btn:hover {
  background: #ffdd33;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* cmc aq */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}


header {
  background: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

header nav {
  display: flex;
}

header nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
}


.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px;
  color: white;
}

.banner-content {
  max-width: 600px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner p {
  font-size: 20px;
}

.banner button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}


.container, .form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}


@media (max-width: 768px) {

 
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  header nav {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  header nav a {
    margin: 8px 0;
    font-size: 18px;
  }

  
  .banner {
    height: 50vh;
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner h1 {
    font-size: 28px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    font-size: 16px;
    padding: 10px 20px;
  }

  
  .container, .form-container {
    padding: 20px;
    margin: 10px;
  }

  
  form input {
    font-size: 16px;
    padding: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 22px;
  }
  .banner p {
    font-size: 14px;
  }
  header nav a {
    font-size: 14px;
  }
}

