:root {
  --bg: #071428;
  --card: #0f1b33;
  --accent: #60A5FA;
  --muted: #bfe8ff;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: #e6f0ff;
}
header {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent);
}
nav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
nav button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}
nav button.active {
  background: var(--accent);
  color: #001;
  border-color: var(--accent);
  font-weight: 600;
}
.container {
  max-width: 1200px;
  margin: 24px auto;
  padding: 18px;
}
.section {
  display: none;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 18px;
}
.section.active {
  display: block;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: 10px;
  margin-top: 12px;
}
code {
  background: rgba(0, 0, 0, 0.35);
  padding: 8px;
  border-radius: 6px;
  color: #cff;
  display: block;
  overflow: auto;
}
.small {
  color: var(--muted);
}

.btn-volver {
    display: inline-block;
    padding: 10px 20px;
    
    color: #f8f9fb;
    font-weight: 600;
    text-decoration: none;       
    transition: 0.25s ease;    
}

.btn-volver:hover {    
    color: #00e5ff;
    transform: translateY(-2px);    
}


/* wa section Starts */
.btn-wa {
    position: fixed;
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
        background: transparent;
        z-index: 5000;

}

.img-responsive-wa {
        width: 50px;
        height: 50px;
        bottom: 10px;
        left: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .btn-wa {
                  width: 50px;
            height: 50px;
  
  }
}
/* wa section Ends */

/* FOOTER */
footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #8896ad;
  font-size: .85rem;
  opacity: .7;
}

/* Boton youtube starts */
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  padding: 4px 7px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 13px;
}
.btn-youtube:hover {
  background: #cc0000;
}
.btn-youtube i {
  font-size: 20px;
}
/* Boton youtube ends */

