* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
  font-size: 16px;
}

.btn-primary-custom {
  background-color: #ff4747;
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: #e63b3b;
}
@media screen and (max-width: 768px) {
  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

.card-custom {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 71, 71, 0.08);
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.card-custom:hover {
  transform: scale(1.02);
  transform: translateY(-5px);
}

.hero {
  position: relative;
  background-image: url("../assets/img/juice-wrld.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #999;
}
@media screen and (max-width: 768px) {
  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }
}
.hero button {
  background-color: #ff4747;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.hero button:hover {
  background-color: #e63b3b;
}

.form-contacto {
  background-color: #1c1c1c;
  border: 1px solid #333;
}
.form-contacto .form-label {
  color: #ccc;
  font-weight: 500;
}
.form-contacto .form-control {
  background-color: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
}
.form-contacto .form-control:focus {
  border-color: #ff3c3c;
  box-shadow: none;
  background-color: #2a2a2a;
  color: #fff;
}

footer img {
  width: 30px;
  transition: transform 0.2s ease;
}
footer img:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  footer img {
    width: 25px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 10px;
  }
}

.cta-youtube {
  background-color: #ff4747;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
}
.cta-youtube img {
  width: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cta-youtube img {
    width: 35px;
  }
}
.cta-youtube p {
  font-size: 1.1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .cta-youtube p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
