/* ==========================================================================
   ANXIA STUDIO - HOJA DE ESTILOS PRINCIPAL
   ==========================================================================
   Este archivo contiene todos los estilos del sitio.
   Originalmente se encontraban dentro del HTML (etiquetas <style>).
   ========================================================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 1000;
    border-bottom: 1px solid #000000;
    transition: transform 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

nav a:hover { color: #ff9500; }

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #ff9500, #ff4500);
    transition: width 0.3s;
}

nav a:hover::after { width: 100%; }

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-logo {
    width: min(680px, 90vw);
    animation: logoFadeIn 1.2s ease forwards;
}

.hero-location {
    margin-top: 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #555;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

/* VU Meters */
.vu-meters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 2.5rem;
}

.vu-meter {
    width: 8px; height: 80px;
    background: #000000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.vu-meter-fill {
    position: absolute;
    bottom: 0; width: 100%;
    background: linear-gradient(to top, #ff4500, #ff9500, #ffcc00);
    animation: vuPulse 2s ease-in-out infinite;
}

.vu-meter-fill {
    transition: height 0.12s ease;
}

/* Sections */
section { padding: 6rem 5%; max-width: 1400px; margin: 0 auto; }

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ff9500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #000000, #000000);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #000000;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #ff9500, transparent);
    transition: left 0.5s;
}

.service-card:hover::before { left: 100%; }
.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff9500;
    box-shadow: 0 10px 40px rgba(255,149,0,0.3);
}

.service-card h3 { color: #ff9500; margin-bottom: 1rem; font-size: 1.5rem; }
.service-card p  { color: #b0b0b0; line-height: 1.8; }

/* ── PORTFOLIO PLAYER ─────────────────────────────────── */

.add-btn {
    padding: 0.55rem 1.2rem;
    background: transparent;
    border: 1px solid #ff9500;
    color: #ff9500;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}
.add-btn:hover { background: #ff9500; color: #000; }

/* Recuadro de banda */
.band-card {
    background: #111;
    border: 1px solid #242424;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.band-card:hover { border-color: #333; }

.band-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #1e1e1e;
    flex-wrap: wrap;
    gap: 1rem;
}

.band-name-wrap { display: flex; flex-direction: column; gap: 0.3rem; }
.band-name {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.band-links { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

.band-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.band-link:hover { border-color: #ff9500; color: #ff9500; }
.band-link.instagram:hover { border-color: #e1306c; color: #e1306c; }
.band-link.facebook:hover  { border-color: #1877f2; color: #1877f2; }
.band-link.bandcamp:hover  { border-color: #1da0c3; color: #1da0c3; }
.band-link.spotify:hover   { border-color: #1db954; color: #1db954; }
.band-link.soundcloud:hover{ border-color: #ff5500; color: #ff5500; }
.band-link.youtube:hover   { border-color: #ff0000; color: #ff0000; }

.band-resena {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    max-width: 680px;
    margin: 0.2rem 0 0.1rem;
}

.band-actions { display: flex; gap: 0.5rem; }
.band-del-btn {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #444;
    border-radius: 5px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.band-del-btn:hover { border-color: #c0392b; color: #c0392b; }

/* Track list dentro de banda */
.band-tracks { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }

.band-add-track {
    display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #1a1a1a;
    margin-top: 0.3rem;
}

.link-input {
    flex: 1;
    min-width: 180px;
    padding: 0.5rem 0.8rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 0.82rem;
    transition: border 0.2s;
}
.link-input:focus { outline: none; border-color: #ff9500; }

.track-item {
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 0.8rem;
    align-items: start;
    transition: border-color 0.2s;
}
.track-item:hover { border-color: #2a2a2a; }
.track-item.active { border-color: #ff9500; background: #1a1100; }

.track-play-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #222;
    border: none;
    color: #ff9500;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.track-play-btn:hover { background: #ff9500; color: #000; }
.track-item.active .track-play-btn { background: #ff9500; color: #000; }

.track-info { display: flex; flex-direction: column; gap: 0.4rem; }
.track-name { font-size: 0.88rem; color: #ccc; }
.track-item.active .track-name { color: #ff9500; }

.track-desc {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 5px;
    color: #777;
    font-family: inherit;
    font-size: 0.78rem;
    padding: 0.45rem 0.65rem;
    resize: none;
    min-height: 48px;
    transition: border 0.2s, color 0.2s;
    line-height: 1.5;
}
.track-desc:focus { outline: none; border-color: #ff9500; color: #bbb; }
.track-desc::placeholder { color: #383838; }

.track-del-btn {
    background: transparent;
    border: 1px solid #222;
    color: #444;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.track-del-btn:hover { border-color: #c0392b; color: #c0392b; }

.track-type-badge {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: #383838;
    text-transform: uppercase;
}

/* Now playing bar */
.now-playing {
    position: sticky;
    bottom: 20px;
    background: #0f0f0f;
    border: 1px solid #ff9500;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 2fr auto;
    gap: 1.2rem;
    align-items: center;
    box-shadow: 0 8px 40px rgba(255,149,0,0.15);
    z-index: 50;
    margin-top: 1rem;
}

.np-info { overflow: hidden; display: flex; flex-direction: column; gap: 0.1rem; }
.np-artist { font-size: 0.7rem; color: #555; letter-spacing: 0.1em; text-transform: uppercase; }
.np-title  { font-size: 0.88rem; color: #ff9500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.np-controls { display: flex; gap: 0.5rem; align-items: center; }
.np-btn {
    background: transparent; border: none;
    color: #666; font-size: 0.85rem;
    cursor: pointer; padding: 0.3rem 0.4rem;
    transition: color 0.2s; font-family: inherit;
}
.np-btn:hover { color: #ff9500; }
.np-play {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #ff9500 !important;
    color: #000 !important;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
}
.np-play:hover { background: #ffb347 !important; }

.np-progress-wrap { display: flex; align-items: center; gap: 0.5rem; }
.np-time { font-size: 0.68rem; color: #444; min-width: 28px; }

.np-progress, .np-volume {
    -webkit-appearance: none; appearance: none;
    height: 3px; border-radius: 2px;
    background: #2a2a2a; outline: none; cursor: pointer;
}
.np-progress { flex: 1; }
.np-volume { width: 65px; }
.np-progress::-webkit-slider-thumb,
.np-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 11px; height: 11px;
    border-radius: 50%; background: #ff9500; cursor: pointer;
}
.np-volume-wrap { display: flex; align-items: center; gap: 0.4rem; }
.np-vol-icon { font-size: 0.8rem; color: #444; }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 500;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.modal-box {
    background: #000000;
    border: 1px solid #000000;
    border-radius: 14px;
    padding: 2rem;
    width: 100%; max-width: 480px;
    display: flex; flex-direction: column; gap: 1rem;
}
.modal-title {
    font-size: 1.1rem;
    color: #ff9500;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.modal-field { display: flex; flex-direction: column; gap: 0.3rem; }
.modal-field label { font-size: 0.75rem; color: #555; letter-spacing: 0.1em; text-transform: uppercase; }
.modal-field input {
    padding: 0.6rem 0.9rem;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 7px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 0.88rem;
    transition: border 0.2s;
}
.modal-field input:focus { outline: none; border-color: #ff9500; }
.modal-actions { display: flex; justify-content: flex-end; gap: 0.8rem; margin-top: 0.5rem; }
.modal-cancel {
    padding: 0.55rem 1.2rem;
    background: transparent;
    border: 1px solid #000000;
    color: #666; border-radius: 6px;
    font-size: 0.85rem; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.modal-cancel:hover { border-color: #555; color: #aaa; }

.empty-msg { color: #333; text-align: center; padding: 2.5rem 0; font-size: 0.88rem; }

/* ── EQUIPMENT ──────────────────────────────────────────── */
/* Equipment */
.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.equipment-item {
    background: #000000;
    padding: 1.5rem;
    border-left: 3px solid #ff9500;
    border-radius: 8px;
    transition: all 0.3s;
}

.equipment-item:hover { background: #000000; transform: translateX(10px); }
.equipment-item h4   { color: #ff9500; margin-bottom: 0.5rem; }
.equipment-item p    { color: #909090; font-size: 0.95rem; }

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #000000;
    transition: all 0.3s;
}

.portfolio-item:hover {
    border-color: #ff9500;
    box-shadow: 0 10px 30px rgba(255,149,0,0.3);
}

.portfolio-image {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #000000, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-info          { padding: 1.5rem; }
.portfolio-info h3       { color: #ff9500; margin-bottom: 0.5rem; }
.portfolio-info p        { color: #909090; }

/* Contact */
.contact-container { max-width: 700px; margin: 0 auto; }
.form-group        { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff9500;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%; padding: 1rem;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9500;
    box-shadow: 0 0 20px rgba(255,149,0,0.3);
}

.form-group textarea { resize: vertical; min-height: 150px; }

.submit-button {
    width: 100%; padding: 1.2rem;
    background: linear-gradient(180deg, #ff9500, #ff4500);
    color: #fff; border: none;
    border-radius: 8px;
    font-size: 1.1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,69,0,0.5);
}

/* ── HERRAMIENTAS / PLUGINS ───────────────────────────────── */
.tools-intro {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: linear-gradient(145deg, #000000, #1c1c1c);
    border: 1px solid #000000;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-6px);
    border-color: #ff9500;
    box-shadow: 0 12px 40px rgba(255,149,0,0.2);
}

.tool-img {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.tool-img svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.tool-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.tool-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff9500;
    border: 1px solid #ff950040;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    width: fit-content;
}

.tool-name {
    font-size: 1.25rem;
    color: #e8e8e8;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.tool-desc {
    font-size: 0.83rem;
    color: #888;
    line-height: 1.75;
    flex: 1;
}

.tool-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #000;
}

.tool-price {
    font-size: 1.4rem;
    color: #ff9500;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.tool-price span {
    font-size: 0.72rem;
    color: #555;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.3rem;
}

.tool-buy-btn {
    padding: 0.55rem 1.3rem;
    background: transparent;
    border: 1px solid #ff9500;
    color: #ff9500;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.05em;
}
.tool-buy-btn:hover { background: #ff9500; color: #000; }
.tool-buy-btn:disabled {
    border-color: #333;
    color: #444;
    cursor: not-allowed;
}
.tool-buy-btn:disabled:hover { background: transparent; color: #444; }

.tools-coming-soon {
    text-align: center;
    margin-top: 3rem;
    color: #333;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

footer {
    background: #000000;
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid #000000;
}

footer p { color: #707070; }

@media (max-width: 768px) {
    nav ul { flex-wrap: wrap; gap: 1.5rem; }
    h2     { font-size: 2rem; }
    section { padding: 4rem 5%; }
}


/* ==========================================================================
   BLOQUE 2 ORIGINAL
   ========================================================================== */

/* ── VIDEO INTRO ─────────────────────────────────────────── */
#video-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 3.5s ease;
}

#video-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

#video-intro.hidden {
    display: none;
}

#intro-video-wrap {
    width: 70vmin;
    height: 70vmin;
    position: relative;
    overflow: hidden;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
