@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

h1 {
  color: #00a8cc;
  text-shadow: 0 0 10px #00a8cc, 0 0 20px #00a8cc;
  font-family: "Orbitron", sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0;
  animation: flicker 3s infinite alternate;
}

h2, h3 {
  color: #00a8cc;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  border-left: 4px solid #00a8cc;
  padding-left: 12px;
  margin-top: 20px;
}

.form-control:focus {
  border-color: #00a8cc;
  box-shadow: 0 0 10px rgba(0, 168, 204, 0.5);
  background-color: #fff;
  outline: none;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.7;
  }
}
/* Entrada suave para las Cards */
@keyframes entradaSuave {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.curso-card {
  animation: entradaSuave 0.6s ease-out;
}

.seccion-clara {
  background-color: #ffffff;
  color: #333;
  padding: 60px 0;
  width: 100%;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.marca-item img {
  width: 100%;
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.marca-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.nosotros-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.nosotros-imagen img {
  width: 100%;
  border-radius: 150px 0 150px 0;
  border: 3px solid #00a8cc;
}

.nosotros-imagen,
.nosotros-texto {
  flex: 1;
}

.nosotros-imagen {
  position: relative;
}
.nosotros-imagen::before {
  content: "♪";
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 3rem;
  color: #00a8cc;
  opacity: 0.5;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.nosotros-imagen:hover::before {
  transform: scale(1.2) rotate(20deg);
  opacity: 1;
}

.producto-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 20px;
  background-color: #f9f9f9;
}

.lista-ventajas {
  list-style: none;
  padding: 0;
}
.lista-ventajas li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
.lista-ventajas li::before {
  content: "→";
  color: #00a8cc;
  margin-right: 10px;
  font-weight: bold;
}

.info-extra h4 {
  color: #00a8cc;
  text-shadow: 0 0 10px #00a8cc, 0 0 20px #00a8cc;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.info-extra p {
  font-family: "Segoe UI", Arial, sans-serif;
  border-left: 2px solid #f39c12;
  padding-left: 10px;
  margin-bottom: 5px;
}

.grid-cursos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

.curso-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 168, 204, 0.1);
}

.container-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background-color: #0d1b2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  border-bottom: 5px solid #00a8cc;
}
header img,
header .logo-img {
  width: 250px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
  border: 1px solid rgba(0, 168, 204, 0.3);
  transition: transform 0.3s ease;
  background-color: transparent;
}
header img:hover,
header .logo-img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
nav ul li a:hover {
  color: #00a8cc;
  transform: translateY(-2px);
}

footer {
  background-color: #0d1b2a;
  border-top: 5px solid #00a8cc;
  padding: 40px 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #ffffff;
  gap: 20px;
}
footer h4 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer h4::before {
  content: "🎧 ";
}
footer iframe {
  width: 100%;
  max-width: 450px;
  height: 250px;
  border-radius: 8px;
  border: none;
  opacity: 0.8;
  transition: 0.3s ease;
}
footer iframe:hover {
  opacity: 1;
}
footer .redes ul {
  list-style: none;
  padding: 0;
}
footer .redes ul li {
  margin-bottom: 10px;
}
footer .redes ul li a {
  color: #00a8cc;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
footer .redes ul li a:hover {
  color: #ffffff;
}
footer .redes ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
footer .redes ul li a:hover::after {
  width: 100%;
}

.iconos-redes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin-top: 10px;
}
.iconos-redes li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: #00a8cc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.iconos-redes li a:hover {
  color: #ffffff;
  transform: translateX(10px);
  text-shadow: 0 0 10px #00a8cc;
}
.iconos-redes li a::after {
  font-size: 0.9rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: normal;
}

.btn-consultar,
.btn-custom,
.btn-enviar {
  background-color: #00a8cc;
  box-shadow: 0 6px 0 #007a94;
  position: relative;
  top: 0;
  transition: all 0.1s;
}
.btn-consultar:active,
.btn-custom:active,
.btn-enviar:active {
  top: 4px;
  box-shadow: 0 2px 0 #007a94;
}
.btn-consultar:hover,
.btn-custom:hover,
.btn-enviar:hover {
  background-color: #00d2ff;
}
.btn-consultar,
.btn-custom,
.btn-enviar {
  display: inline-block;
  padding: 12px 24px;
  color: #ffffff !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  text-align: center;
  width: auto;
  font-size: 14px;
  text-transform: uppercase;
}

.btn-inscripcion {
  background-color: #f39c12;
  box-shadow: 0 6px 0 #d35400;
  position: relative;
  top: 0;
  transition: all 0.1s;
}
.btn-inscripcion:active {
  top: 4px;
  box-shadow: 0 2px 0 #d35400;
}
.btn-inscripcion:hover {
  background-color: rgb(245.4578313253, 176.2771084337, 66.5421686747);
}
.btn-inscripcion {
  display: inline-block;
  padding: 12px 25px;
  color: #ffffff !important;
  border-radius: 50px;
  font-family: "Orbitron", sans-serif;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.producto-card,
.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #0d1b2a;
}
.producto-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 168, 204, 0.2);
}

.faq-item {
  border-left: 5px solid #00a8cc;
  margin-bottom: 15px;
}

.btn-enviar:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #007a94;
}

.label-inline {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
}

.label-inline::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

[for=audio]::before {
  content: "🎧";
}

[for=instrumentos]::before {
  content: "🎸";
}

[for=iluminacion]::before {
  content: "💡";
}

input[type=radio]:checked + .label-inline {
  color: #00a8cc;
  font-weight: bold;
}

input[type=radio]:checked + .label-inline::before {
  transform: translateY(-50%) scale(1.3);
}

.label-inline:hover::before {
  transform: translateY(-50%) rotate(15deg);
}

.nosotros-texto h2 {
  color: #00a8cc;
  position: relative;
  padding-left: 45px;
}

.nosotros-texto h2::before {
  content: "♫";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d1b2a;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

.nosotros-texto h2:hover::before {
  color: #00a8cc;
}

.producto-card, .faq-item {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.producto-card:hover, .faq-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 168, 204, 0.3);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 5%;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .nosotros-flex,
  footer,
  .grid-cursos {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .nosotros-imagen img {
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  h1 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  .btn-consultar, .btn-custom, .btn-enviar {
    width: 100%;
  }
}
.faq-main {
  width: 100%;
  overflow-x: hidden;
  padding: 60px 0;
}

.faq-titulo-neon {
  color: #00a8cc;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 50px;
  padding: 0 20px;
  text-shadow: 0 0 10px #00a8cc, 0 0 20px rgba(0, 168, 204, 0.4);
}

.container-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-lista {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .faq-lista {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .faq-lista {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 168, 204, 0.2);
}
.faq-item h3 {
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 3px solid #00a8cc;
  padding-left: 10px;
  margin-bottom: 12px;
}
.faq-item p {
  color: #334155;
  font-size: 0.8rem;
  line-height: 1.4;
}

footer iframe {
  width: 100%;
  max-width: 450px;
  min-height: 250px;
  border-radius: 8px;
  border: none;
  opacity: 0.8;
  transition: 0.3s ease;
}

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