@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100;300;400;700&display=swap');

:root {
  --bg-color: #0c1821;
  --accent-color: #d28651;
  --text-main: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --stroke: rgba(255, 255, 255, 0.12);

  --r20: 20px;
  --r26: 26px;

  --maxw: 1120px;

  --s1: 6px;
  --s2: 10px;
  --s3: 14px;
  --s4: 18px;
  --s5: 24px;
  --s6: 32px;
  --s7: 42px;
  --s8: 56px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background-color: var(--bg-color);
  letter-spacing: 0.03em;
  line-height: 1.5em;
  background:
    radial-gradient(
      1000px 600px at 15% 10%,
      rgba(210, 134, 81, 0.18),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 85% 20%,
      rgba(31, 116, 136, 0.12),
      transparent 60%
    ),
    var(--bg-color);
  font-family: 'Antonio', sans-serif;
  font-weight: 100;
  overflow-x: hidden;
}

#three-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

p {
  margin: 20px 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(12, 24, 33, 0.8);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo-container img {
  height: 60px;
  width: auto;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 1em;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

#main-wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 16px;
}

.hero-panel {
  position: relative;
  border-radius: var(--r26);
  /*  border: 1px solid rgba(255, 255, 255, 0.15);

  background:
    radial-gradient(
      800px 400px at 20% 20%,
      rgba(210, 134, 81, 0.22),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01)
    );
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    */
  padding: clamp(40px, 8vw, 80px);
  margin-bottom: 40px;
  overflow: hidden;
}

.hero-panel h1 {
  font-family: 'Antonio', sans-serif;
  text-transform: uppercase;
  font-size: clamp(60px, 11vw, 105px);
  line-height: 0.85;
}

.hero-panel h3 {
  margin-top: 24px;
  font-size: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 100;
  line-height: 3rem;
}

.btn-pedalear {
  display: inline-flex;
  margin-top: 32px;
  padding: 14px 36px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent-color), #b56d3a);
  color: #fff;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(210, 134, 81, 0.25);
  transition: all 0.3s ease;
}

.btn-pedalear:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 15px 40px rgba(210, 134, 81, 0.35);
}

.styled-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: var(--r26);
  padding: clamp(24px, 5vw, 50px);
  margin-bottom: 40px;
}

.content-panel h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  text-transform: uppercase;
  margin-bottom: 45px;
  letter-spacing: 0.05em;
}

.service-block {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  background: linear-gradient(
    145deg,
    rgba(31, 116, 136, 0.8),
    rgba(12, 24, 33, 0.9)
  );
  padding: clamp(25px, 5vw, 45px);
  margin-bottom: 26px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-subtitle {
  color: var(--accent-color);
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 18px;
  display: block;
}

.service-list {
  list-style: none;
  margin: 20px 0;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--muted);
  line-height: 1.5;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-note {
  margin-top: 25px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px 16px 16px 8px;
  padding: 16px 20px;
}

a {
  text-decoration: none !important;
}

.sobre-media-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: var(--s5);
}

.sobre-img-wrapper {
  flex: 0 0 100px;
}

.sobre-img-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.audio-player-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.22);
  padding: 15px;
  border-radius: var(--r20);
}

.audio-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audio-btn:hover {
  background: var(--accent-color);
  color: #0c1821;
}

#servicios h2 {
  margin-left: 3rem;
}

#waveform {
  flex: 1;
}

section {
  margin-top: 10rem;
  scroll-margin-top: 100px;
}

#contacto.hero-panel {
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background:
    radial-gradient(
      800px 400px at 50% 50%,
      rgba(210, 134, 81, 0.15),
      transparent 80%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
}

.nav-cont {
  max-width: var(--maxw);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-panel img {
  border-radius: var(--r20);
  max-width: 300px;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hero-panel {
    padding: 50px 24px;
    margin-top: 20px;
    text-align: center;
  }
  .hero-panel h3 {
    margin: 24px auto 0;
  }
}
