/* ============================================================
   LUIS DAMORA — style.css
   CSS limpio: sin código React Transition Group, sin prefijos
   obsoletos innecesarios. Mantiene todas las clases usadas
   en index.html, releases.html, contact.html y privacy.html
   ============================================================ */


/* ============================================================
   ANIMACIONES GLOBALES
   ============================================================ */

@keyframes spinAround {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

@keyframes fa-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(1turn); }
}


/* ============================================================
   RESET Y BASE
   ============================================================ */

blockquote, body, dd, dl, dt, fieldset, figure,
h1, h2, h3, h4, h5, h6, hr, html, iframe, legend,
li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}

ul { list-style: none; }

button, input, select, textarea { margin: 0; }

html {
    box-sizing: border-box;
    background-color: #fff;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
}

*, :after, :before { box-sizing: inherit; }

embed, iframe, img, object, video {
    height: auto;
    max-width: 100%;
}

audio { max-width: 100%; }
iframe { border: 0; }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th { padding: 0; }
td:not([align]), th:not([align]) { text-align: left; }

article, aside, figure, footer, header, hgroup, section {
    display: block;
}

body, button, input, select, textarea {
    font-family: 'Roboto Mono', monospace;
}

code, pre {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: monospace;
}

body {
    color: #767470;
    font-size: .9em;
    font-weight: 400;
    line-height: 1.5;
}

a {
    color: #3273dc;
    cursor: pointer;
    text-decoration: none;
}

a strong { color: currentColor; }
a:hover  { color: #363636; }

code {
    color: #ff3860;
    font-size: .875em;
    font-weight: 400;
    padding: .25em .5em;
}

code, hr { background-color: #f5f5f5; }

hr {
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0;
}

img {
    height: auto;
    max-width: 100%;
}

input[type=checkbox], input[type=radio] { vertical-align: baseline; }

small { font-size: .875em; }
span  { font-style: inherit; font-weight: inherit; }

strong {
    color: #363636;
    font-weight: 700;
}

fieldset { border: none; }

pre {
    -webkit-overflow-scrolling: touch;
    background-color: #f5f5f5;
    color: #767470;
    font-size: .875em;
    overflow-x: auto;
    padding: 1.25rem 1.5rem;
    white-space: pre;
    word-wrap: normal;
}

pre code {
    background-color: transparent;
    color: currentColor;
    font-size: 1em;
    padding: 0;
}

table td, table th { vertical-align: top; }
table td:not([align]), table th:not([align]) { text-align: left; }
table th { color: #363636; }


/* ============================================================
   UTILIDADES — VISIBILIDAD / DISPLAY
   ============================================================ */

.is-hidden    { display: none !important; }
.is-invisible { visibility: hidden !important; }
.is-relative  { position: relative !important; }

.is-clearfix:after {
    clear: both;
    content: " ";
    display: table;
}

.is-pulled-left  { float: left !important; }
.is-pulled-right { float: right !important; }
.is-clipped      { overflow: hidden !important; }

.is-marginless  { margin: 0 !important; }
.is-paddingless { padding: 0 !important; }
.is-radiusless  { border-radius: 0 !important; }
.is-shadowless  { box-shadow: none !important; }

/* Ocultar en móvil (<= 768px) */
@media screen and (max-width: 768px) {
    .is-hidden-mobile { display: none !important; }
}

/* Ocultar en tablet y superior (>= 769px) */
@media print, screen and (min-width: 769px) {
    .is-hidden-tablet { display: none !important; }
}

/* Ocultar solo en tablet (769px – 959px) */
@media screen and (min-width: 769px) and (max-width: 959px) {
    .is-hidden-tablet-only { display: none !important; }
}

/* Ocultar en touch (<= 959px) */
@media screen and (max-width: 959px) {
    .is-hidden-touch { display: none !important; }
}

/* Ocultar en desktop (>= 960px) */
@media screen and (min-width: 960px) {
    .is-hidden-desktop { display: none !important; }
}

/* is-sr-only — accesibilidad */
.is-sr-only {
    border: none !important;
    clip: rect(0,0,0,0) !important;
    height: .01em !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: .01em !important;
}


/* ============================================================
   UTILIDADES — TEXTO
   ============================================================ */

.has-text-centered  { text-align: center !important; }
.has-text-justified { text-align: justify !important; }
.has-text-left      { text-align: left !important; }
.has-text-right     { text-align: right !important; }

.is-capitalized { text-transform: capitalize !important; }
.is-lowercase   { text-transform: lowercase !important; }
.is-uppercase   { text-transform: uppercase !important; }
.is-italic      { font-style: italic !important; }

.has-text-weight-light    { font-weight: 300 !important; }
.has-text-weight-normal   { font-weight: 400 !important; }
.has-text-weight-medium   { font-weight: 500 !important; }
.has-text-weight-semibold { font-weight: 600 !important; }
.has-text-weight-bold     { font-weight: 700 !important; }

/* Tamaños de fuente */
.is-size-1 { font-size: 3rem !important; }
.is-size-2 { font-size: 2.5rem !important; }
.is-size-3 { font-size: 2rem !important; }
.is-size-4 { font-size: 1.5rem !important; }
.is-size-5 { font-size: 1.25rem !important; }
.is-size-6 { font-size: 1rem !important; }
.is-size-7 { font-size: .75rem !important; }


/* ============================================================
   UTILIDADES — COLORES
   ============================================================ */

.has-text-white  { color: #fff !important; }
.has-text-black  { color: #0a0a0a !important; }
.has-text-light  { color: #f5f5f5 !important; }
.has-text-dark   { color: #363636 !important; }
.has-text-primary { color: #f896af !important; }
.has-text-grey   { color: #7a7a7a !important; }
.has-text-grey-light { color: #b5b5b5 !important; }
.has-text-grey-lighter { color: #dbdbdb !important; }

.has-background-white { background-color: #fff !important; }
.has-background-black { background-color: #0a0a0a !important; }
.has-background-dark  { background-color: #363636 !important; }
.has-background-light { background-color: #f5f5f5 !important; }


/* ============================================================
   UTILIDADES — DISPLAY FLEX / BLOCK / INLINE
   ============================================================ */

.is-flex         { display: flex !important; }
.is-block        { display: block !important; }
.is-inline       { display: inline !important; }
.is-inline-block { display: inline-block !important; }
.is-inline-flex  { display: inline-flex !important; }


/* ============================================================
   UTILIDADES — MISCELÁNEA
   ============================================================ */

.has-no-vertical-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.is-unselectable {
    -webkit-touch-callout: none;
    user-select: none;
}

::selection { background: #f896af; }


/* ============================================================
   FUENTES
   ============================================================ */

.is-family-primary {
    font-family: 'Roboto Mono', monospace !important;
}

.is-family-monospace, .is-family-code {
    font-family: monospace !important;
}


/* ============================================================
   CONTENEDOR
   ============================================================ */

.container {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
}

@media screen and (min-width: 960px) {
    .container {
        max-width: 960px;
    }
    .container.is-fluid {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}

@media screen and (min-width: 1152px) {
    .container { max-width: 1152px; }
}

@media screen and (min-width: 1344px) {
    .container { max-width: 1344px; }
}


/* ============================================================
   CONTENT (texto enriquecido)
   ============================================================ */

.content li + li { margin-top: .25em; }

.content blockquote:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content p:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child),
.content ul:not(:last-child) {
    margin-bottom: 1em;
}

.content h1, .content h2, .content h3,
.content h4, .content h5, .content h6 {
    color: #767470;
    font-weight: 600;
    line-height: 1.125;
}

.content h1 { font-size: 2em; margin-bottom: .5em; }
.content h1:not(:first-child) { margin-top: 1em; }
.content h2 { font-size: 1.75em; margin-bottom: .5714em; }
.content h2:not(:first-child) { margin-top: 1.1428em; }
.content h3 { font-size: 1.5em; margin-bottom: .6666em; }
.content h3:not(:first-child) { margin-top: 1.3333em; }
.content h4 { font-size: 1.25em; margin-bottom: .8em; }
.content h5 { font-size: 1.125em; margin-bottom: .8888em; }
.content h6 { font-size: 1em; margin-bottom: 1em; }

.content ul {
    list-style: none;
    margin-left: 0;
    margin-top: 0;
}

.content ol {
    list-style-position: outside;
    list-style-type: decimal;
    margin-left: 2em;
    margin-top: 1em;
}

.content blockquote {
    background-color: #f5f5f5;
    border-left: 5px solid #dbdbdb;
    padding: 1.25em 1.5em;
}

.content table { width: 100%; }

.content table td, .content table th {
    border: solid #dbdbdb;
    border-width: 0 0 1px;
    padding: .5em .75em;
    vertical-align: top;
}

.content table th { color: #363636; }
.content table th:not([align]) { text-align: left; }

.content table thead td,
.content table thead th {
    border-width: 0 0 2px;
    color: #363636;
}

.content table tfoot td,
.content table tfoot th {
    border-width: 2px 0 0;
    color: #363636;
}

.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
    border-bottom-width: 0;
}

.content.is-small  { font-size: .75rem; }
.content.is-medium { font-size: 1.25rem; }
.content.is-large  { font-size: 1.5rem; }

/* Links dentro de content */
.content a:not(.button):not(.no-line),
.navbar-item a {
    display: inline-block;
    position: relative;
    z-index: 0;
    vertical-align: bottom;
    overflow: hidden;
    text-decoration: none;
}

@media screen and (max-width: 959px) {
    .content a:not(.button):not(.no-line),
    .navbar-item a {
        display: inline;
        background: linear-gradient(#fff, #fff) 100% 60% / 100% 4px no-repeat,
                    linear-gradient(#fff, #fff) 0 60% / 0 4px no-repeat;
        background-position: 100% 60%;
        background-repeat: no-repeat;
        background-size: 100% 4px;
    }

    .dark .content a:not(.button):not(.no-line),
    .dark .navbar-item a {
        background: linear-gradient(rgb(64, 64, 61), rgb(64, 64, 61)) 100% 60% / 100% 4px no-repeat,
                    linear-gradient(rgb(64, 64, 61), rgb(64, 64, 61)) 0 60% / 0 4px no-repeat;
    }
}

@media screen and (min-width: 960px) {
    .content a:not(.button):not(.no-line):after,
    .content a:not(.button):not(.no-line):before,
    .navbar-item a:after,
    .navbar-item a:before {
        content: "";
        width: 100%;
        height: 4px;
        top: 48%;
        left: 0;
        background-color: #fff;
        position: absolute;
        transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                    transform .3s cubic-bezier(.55,.055,.675,.19) 0s;
    }

    .dark .content a:not(.button):not(.no-line):after,
    .dark .content a:not(.button):not(.no-line):before,
    .dark .navbar-item a:after,
    .dark .navbar-item a:before {
        background-color: #40403d;
    }
}

.content a:not(.button):not(.no-line):before,
.navbar-item a:before {
    z-index: -1;
    transform: translateZ(0);
    opacity: .75;
}

.content a:not(.button):not(.no-line):after,
.navbar-item a:after {
    z-index: 1;
    transform: translate3d(-102%, 0, 0);
}

.content a:not(.button):not(.no-line).is-active:before,
.content a:not(.button):not(.no-line):hover:before,
.navbar-item a.is-active:before,
.navbar-item a:hover:before {
    transform: translate3d(102%, 0, 0);
    transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                transform .3s cubic-bezier(.215,.61,.355,1) 0s;
}

.content a:not(.button):not(.no-line).is-active:after,
.content a:not(.button):not(.no-line):hover:after,
.navbar-item a.is-active:after,
.navbar-item a:hover:after {
    transform: translateZ(0);
    transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                transform .3s cubic-bezier(.215,.61,.355,1) .3s;
}


/* ============================================================
   TÍTULOS Y SUBTÍTULOS
   ============================================================ */

.subtitle, .title { word-break: break-word; }

.title {
    color: #767470;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}

.title strong {
    color: #767470;
    font-weight: inherit;
}

.title.is-1 { font-size: 3rem; }
.title.is-2 { font-size: 2.5rem; }
.title.is-3 { font-size: 2rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }
.title.is-6 { font-size: 1rem; }
.title.is-7 { font-size: .75rem; }

.subtitle {
    color: #4a4a4a;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.subtitle strong {
    color: #363636;
    font-weight: 600;
}

h1.title {
    font-size: 3em;
    text-transform: uppercase;
    line-height: .8;
    letter-spacing: -.02em;
}

@media print, screen and (min-width: 769px) {
    h1.title { font-size: 4em; }
}

@media screen and (min-width: 960px) {
    h1.title { font-size: 4.5em; }
}

@media screen and (min-width: 1152px) {
    h1.title { font-size: 5em; }
}

.dark h1.title { color: #fff; }

.dark h1.title span.separator {
    font-size: .7em;
    position: relative;
    top: -.15em;
    color: #767470;
}

@media print, screen and (min-width: 769px) {
    .dark h1.title span.separator { margin: 0 -.05em; }
}

.dark h1 .sub { color: #767470; }

h2.subtitle {
    font-size: 3em;
    text-transform: uppercase;
    line-height: .8;
    letter-spacing: -.02em;
}

@media print, screen and (min-width: 769px) {
    h2.subtitle { font-size: 4em; }
}

@media screen and (min-width: 960px) {
    h2.subtitle { font-size: 4.5em; }
}

@media screen and (min-width: 1152px) {
    h2.subtitle { font-size: 5em; }
}

.dark h2.subtitle { color: #767470; }

.content h6, h6 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8em;
    color: rgba(118, 116, 112, .4);
}

.content h6:not(:first-child),
h6:not(:first-child) {
    margin-top: 1.5em;
}

.heading {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}


/* ============================================================
   LINKS GENERALES
   ============================================================ */

a, a:hover, a:visited { color: #767470; }
a:active { color: #282725; }


/* ============================================================
   BOTÓN
   ============================================================ */

a.button, button.button {
    cursor: pointer;
    display: inline-flex;
    font-size: .8em;
    color: #767470;
    background: transparent;
    transition: color .24s cubic-bezier(.55,.085,.68,.53);
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #767470;
    padding: .3em .5em;
    outline: 0;
    border-radius: 0;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: .05em;
    vertical-align: middle;
}

a.button:before, button.button:before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    background: #767470;
    z-index: -5;
    left: -5%;
    top: -5%;
    transform: translate3d(-100%, 0, 0);
    transition: transform .3s cubic-bezier(.55,.055,.675,.19);
}

a.button:hover,
button.button:hover {
    color: #262624;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}

.dark a.button:hover,
.dark button.button:hover {
    color: #262624;
}

a.button:hover:before,
button.button:hover:before {
    transform: translateZ(0);
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

a.button:active, a.button:focus,
button.button:active, button.button:focus {
    border: 1px dotted #767470;
    outline: 0;
}

.content a.button:not(:first-child),
.content button.button:not(:first-child) {
    margin-left: .75em;
}


/* ============================================================
   LOADER
   ============================================================ */

.loader {
    animation: spinAround .5s linear infinite;
    border-radius: 50%;
    border-color: transparent transparent #dbdbdb #dbdbdb;
    border-style: solid;
    border-width: 2px;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
}

/* Loader en la columna de imagen */
.loader {
    width: 5em;
    height: 5em;
    border-width: 4px;
    border-color: transparent transparent rgba(255,255,255,.8) rgba(255,255,255,.8);
    opacity: 0;
    transition: opacity .2s cubic-bezier(.455,.03,.515,.955);
}

.loader.is-active { opacity: 1; }
.is-loaded .loader { opacity: 0; }


/* ============================================================
   DELETE (utilidad Bulma)
   ============================================================ */

.delete {
    appearance: none;
    background-color: hsla(0,0%,4%,.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: none;
    position: relative;
    vertical-align: top;
    width: 20px;
    user-select: none;
}

.delete:after, .delete:before {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}

.delete:before { height: 2px; width: 50%; }
.delete:after  { height: 50%; width: 2px; }
.delete:focus, .delete:hover { background-color: hsla(0,0%,4%,.3); }
.delete:active { background-color: hsla(0,0%,4%,.4); }


/* ============================================================
   GRID — COLUMNS
   ============================================================ */

.columns {
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-top: -.75rem;
}

.columns:last-child  { margin-bottom: -.75rem; }
.columns:not(:last-child) { margin-bottom: .75rem; }

.columns.is-centered  { justify-content: center; }
.columns.is-vcentered { align-items: center; }
.columns.is-multiline { flex-wrap: wrap; }
.columns.is-mobile    { display: flex; }

.columns.is-gapless {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

.columns.is-gapless > .column {
    margin: 0;
    padding: 0 !important;
}

.columns.is-gapless:not(:last-child) { margin-bottom: 1.5rem; }
.columns.is-gapless:last-child       { margin-bottom: 0; }

.columns.is-marginless { margin: 0 !important; }

@media print, screen and (min-width: 769px) {
    .columns:not(.is-desktop) { display: flex; }
}

@media screen and (min-width: 960px) {
    .columns.is-desktop { display: flex; }
}

/* Column base */
.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: .75rem;
}

/* Anchos en tablet+ */
@media print, screen and (min-width: 769px) {
    .column.is-narrow,
    .column.is-narrow-tablet { flex: none; }

    .column.is-full,
    .column.is-full-tablet   { flex: none; width: 100%; }

    .column.is-half,
    .column.is-half-tablet   { flex: none; width: 50%; }

    .column.is-one-third,
    .column.is-one-third-tablet { flex: none; width: 33.3333%; }

    .column.is-one-quarter,
    .column.is-one-quarter-tablet { flex: none; width: 25%; }

    .column.is-two-thirds,
    .column.is-two-thirds-tablet { flex: none; width: 66.6666%; }

    .column.is-three-quarters,
    .column.is-three-quarters-tablet { flex: none; width: 75%; }

    .column.is-8-tablet  { flex: none; width: 66.6666666667%; }
    .column.is-6-tablet  { flex: none; width: 50%; }
    .column.is-4-tablet  { flex: none; width: 33.3333333333%; }
    .column.is-2-tablet  { flex: none; width: 16.6666666667%; }

    .column.is-offset-2-tablet  { margin-left: 16.6666666667%; }
    .column.is-offset-3-tablet  { margin-left: 25%; }
}

/* Anchos en desktop */
@media screen and (min-width: 960px) {
    .column.is-half-desktop      { flex: none; width: 50%; }
    .column.is-full-desktop      { flex: none; width: 100%; }
    .column.is-narrow-desktop    { flex: none; }
    .column.is-6-desktop         { flex: none; width: 50%; }
    .column.is-8-desktop         { flex: none; width: 66.6666666667%; }
    .column.is-offset-3-desktop  { margin-left: 25%; }
}

/* Anchos en móvil */
@media screen and (max-width: 768px) {
    .column.is-full-mobile,
    .column.is-narrow-mobile { flex: none; }

    .column.is-full-mobile   { width: 100%; }
    .column.is-half-mobile   { flex: none; width: 50%; }
}

/* Touch */
@media screen and (max-width: 959px) {
    .column.is-full-touch   { flex: none; width: 100%; }
    .column.is-narrow-touch { flex: none; }
}

/* Columna full en móvil (usada en releases) */
.column.is-full-mobile { min-height: 100vh; }


/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    background-color: #fff;
    min-height: 3.25rem;
    position: relative;
    z-index: 30;
}

.navbar.is-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 30;
}

.navbar.is-transparent { background-color: transparent; }

.navbar.is-spaced {
    padding: 1rem 2rem;
}

@media screen and (min-width: 960px) {
    .navbar.is-spaced .navbar-end,
    .navbar.is-spaced .navbar-start {
        align-items: center;
    }

    .navbar.is-transparent a.navbar-item.is-active,
    .navbar.is-transparent a.navbar-item:focus,
    .navbar.is-transparent a.navbar-item:hover {
        background-color: transparent !important;
    }
}

/* Navbar end */
.navbar-end {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    align-items: stretch;
}

/* Navbar item */
.navbar-item, .navbar-link {
    color: #4a4a4a;
    display: block;
    line-height: 1.5;
    padding: .5rem .75rem;
    position: relative;
}

.navbar-item {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}

.navbar-item img { max-height: 1.75rem; }

@media screen and (min-width: 960px) {
    .navbar,
    .navbar-end,
    .navbar-menu,
    .navbar-start {
        align-items: stretch;
        display: flex;
    }

    .navbar-item,
    .navbar-link {
        align-items: center;
        display: flex;
    }

    .navbar-link.is-active,
    a.navbar-item.is-active {
        color: #0a0a0a;
    }

    .navbar-link.is-active:not(:focus):not(:hover),
    a.navbar-item.is-active:not(:focus):not(:hover) {
        background-color: transparent;
    }
}

/* Navbar separator */
.navbar .separator {
    display: flex;
    align-items: center;
    font-size: 1.2em;
}

@media screen and (max-width: 959px) {
    .navbar .separator { display: none; }
}

/* Navbar link hover */
.navbar .navbar-item a {
    position: relative;
    transition: color .08s cubic-bezier(.455,.03,.515,.955) .528s;
}

.light .navbar .navbar-item a:hover,
.to-light .navbar .navbar-item a:hover {
    color: #4f4d4b;
}

.dark .navbar .navbar-item a:hover,
.to-dark .navbar .navbar-item a:hover {
    color: #696764;
}

/* Navbar en tema dark — texto en blanco */
.dark .navbar .navbar-item a {
    color: #fff;
}

.dark .navbar .separator {
    color: #fff;
}

/* En dark, la línea del tachado es blanca */
@media screen and (min-width: 960px) {
    .dark .navbar .navbar-item a:after,
    .dark .navbar .navbar-item a:before {
        background-color: #fff;
    }

    /* Por defecto, el :before está oculto — solo aparece en is-active o hover */
    .dark .navbar .navbar-item a:not(.is-active):before {
        opacity: 0;
        transform: translateZ(0);
    }

    /* Al hacer hover sobre un link no activo, animar entrada */
    .dark .navbar .navbar-item a:not(.is-active):hover:before {
        opacity: .75;
        transform: translate3d(102%, 0, 0);
        transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                    transform .3s cubic-bezier(.215,.61,.355,1) 0s;
    }

    .dark .navbar .navbar-item a:not(.is-active):hover:after {
        transform: translateZ(0);
        transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                    transform .3s cubic-bezier(.215,.61,.355,1) .3s;
    }
}

/* Navbar en móvil — menú overlay */
@media screen and (max-width: 959px) {
    .navbar .navbar-end {
        display: none;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity .4s cubic-bezier(.455,.03,.515,.955);
    }

    .navbar .navbar-end.is-active {
        display: flex;
        background: #ede9e1;
        opacity: 1;
        z-index: 200;
    }

    .dark .navbar .navbar-end.is-active {
        background: #262624;
    }

    .navbar .navbar-end .navbar-item {
        opacity: 0;
        font-size: 1.7em;
        padding: 1rem 1.5rem;
        transform: translate3d(0, 50%, 0);
        transition: opacity .4s cubic-bezier(.455,.03,.515,.955),
                    transform .4s cubic-bezier(.215,.61,.355,1);
    }

    .navbar .navbar-end.is-active .navbar-item {
        opacity: 1;
        transform: translateZ(0);
    }

    /* Retrasos escalonados por item */
    .navbar .navbar-end .navbar-item:first-child  { transition-delay: .15s; }
    .navbar .navbar-end .navbar-item:nth-child(2) { transition-delay: .2s; }
    .navbar .navbar-end .navbar-item:nth-child(3) { transition-delay: .25s; }
    .navbar .navbar-end .navbar-item:nth-child(4) { transition-delay: .3s; }
    .navbar .navbar-end .navbar-item:nth-child(5) { transition-delay: .35s; }
    .navbar .navbar-end .navbar-item:nth-child(6) { transition-delay: .4s; }
    .navbar .navbar-end .navbar-item:nth-child(7) { transition-delay: .45s; }
    .navbar .navbar-end .navbar-item:nth-child(8) { transition-delay: .5s; }
}

/* Social links dentro del navbar (móvil) */
.navbar .social-links { margin-top: 1em; }


/* ============================================================
   HAMBURGUESA
   ============================================================ */

.hamburger {
    border: 0 solid transparent;
    padding: 16px;
    display: inline-block;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-transform: none;
    margin: 0;
    overflow: visible;
    background: transparent;
    position: relative;
    margin-left: auto;
    z-index: 100;
    float: right;
    opacity: 1;
    transition: none;
    width: 60px;
    height: 60px;
}

.hamburger:focus  { outline: 0; background: rgba(0,0,0,.05); }
.hamburger:hover  { opacity: 1; }
.hamburger:active { background: rgba(0,0,0,.09); }

.hamburger > .inner {
    position: relative;
    width: 100%;
    margin: -1px 0 0;
    top: 50%;
}

.hamburger span.bar {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 0;
    background-color: #40403d;
    transition: background-color .8s cubic-bezier(.455,.03,.515,.955),
                transform .33333s cubic-bezier(.645,.045,.355,1),
                top .20833s cubic-bezier(.645,.045,.355,1) .20833s,
                opacity .20833s cubic-bezier(.645,.045,.355,1) .20833s;
}

.hamburger span.bar:first-child  { top: -7px; }
.hamburger span.bar:nth-child(3) { top: 7px; }

/* Estado activo de la hamburguesa */
.hamburger.is-active span.bar {
    transition: background-color .8s cubic-bezier(.455,.03,.515,.955),
                transform .33333s cubic-bezier(.645,.045,.355,1) .08333s,
                top .20833s cubic-bezier(.645,.045,.355,1),
                opacity .20833s cubic-bezier(.645,.045,.355,1);
}

.hamburger.is-active span.bar:first-child {
    top: 0;
    transform: rotate(135deg);
}

.hamburger.is-active span.bar:nth-child(2) { opacity: 0; }

.hamburger.is-active span.bar:nth-child(3) {
    top: 0;
    transform: rotate(45deg);
}

/* Hamburguesa en dark */
.dark .hamburger span,
.dark .hamburger.is-active span {
    background-color: #ede9e1;
}

.dark .hamburger:focus { background: rgba(255,255,255,.03); }
.dark .hamburger:active { background: rgba(255,255,255,.07); }

/* Ocultar hamburguesa en desktop */
@media screen and (min-width: 960px) {
    .hamburger { display: none; }
}


/* ============================================================
   SEPARADOR
   ============================================================ */

.separator { opacity: .4; }


/* ============================================================
   TEMAS — LIGHT / DARK
   ============================================================ */

body, html {
    background-color: #ede9e1;
    color: #767470;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    body, html { font-size: 13px; }
}

@media print, screen and (min-width: 769px) {
    body, html { font-size: 12px; }
}

@media screen and (min-width: 960px) {
    body, html { font-size: 13px; }
}

@media screen and (min-width: 1152px) {
    body, html { font-size: 15px; }
}

.theme.light { background-color: #ede9e1; }
.theme.dark  { background-color: #262624; }

/* En móvil, releases usa tema dark — toda la página debe ser negra */
.theme.dark body,
.theme.dark html {
    background-color: #262624;
}


/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */

main.main > .columns { margin: 0; }

main.main > .columns > .column { position: relative; }

@media print, screen and (min-width: 769px) {
    main.main > .columns > .column { min-height: 100vh; }
}

/* Columna izquierda (imagen) */
main.main > .columns > .column:first-child {
    margin: 0;
    padding: 0;
    min-height: 350px;
    background: rgb(229, 224, 212);
}

@media screen and (max-width: 768px) {
    main.main > .columns > .column:first-child {
        height: 350px;
    }
}

.dark main.main > .columns > .column:first-child {
    background: #191919;
}

/* Columna derecha */
main.main > .columns > .column:nth-child(2) { margin: 0; }


/* ============================================================
   BACKGROUND (imagen de fondo con animación)
   ============================================================ */

.background {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background,
.background > .inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.background > .inner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.07);
    transition: opacity .5s cubic-bezier(.455,.03,.515,.955),
                transform 1s cubic-bezier(.215,.61,.355,1);
    backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
    .background > .inner {
        background-position: center 25%;
    }
}

.background.is-loaded > .inner {
    transform: scale(1);
    opacity: 1;
}


/* ============================================================
   CENTER-CONTENT
   ============================================================ */

.center-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5.5em 0 1em;
    text-align: center;
    margin-bottom: 0 !important;
}

@media print, screen and (min-width: 769px) {
    .center-content { padding: 4em 45px; }
}

@media screen and (min-width: 960px) {
    .center-content { padding: 4em 65px; }
}

@media screen and (min-width: 1152px) {
    .center-content { padding: 4em 85px; }
}

.columns > .column:first-child .center-content {
    padding: .75rem;
}

/* Versión fixed (usada en releases desktop) */
.center-content.is-fixed {
    position: fixed;
    width: calc(50% - 1.5rem);
}

@media print, screen and (min-width: 769px) {
    .center-content.is-fixed { padding-right: .75rem; }
}

@media screen and (min-width: 960px) {
    .center-content.is-fixed { padding-right: 2rem; }
}

.center-content.is-fixed > div { width: 100%; }

/* center-first-item (releases) */
@media print, screen and (min-width: 769px) {
    .center-first-item { padding: calc(50vh - 50%) 0; }
}


/* ============================================================
   GIG-LIST / BIO
   ============================================================ */

.gig-list h6 {
    margin-top: 1rem;
    margin-bottom: .3rem;
}
/* COLOR DEL TEXTO DESCRIPCION BIO DE HOME */
.gig-list ul.past {
    position: relative;
    color: rgb(119, 114, 114);
}

/* .gig-list ul.past:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0; 
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(237,233,225,.001), #ede9e1);
} 
*/


/* ============================================================
   RELEASES
   ============================================================ */

.release-cover {
    background: #262624;
    width: 100%;
    position: relative;
    transition: opacity .4s cubic-bezier(.455,.03,.515,.955);
    opacity: .3;
}

@media screen and (max-width: 768px) {
    .release-cover {
        width: 50%;
        margin: 0 auto;
    }
}

.release-cover:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.release-cover img {
    vertical-align: middle;
    position: absolute;
    width: 100%;
    height: auto;
}

.is-active .release-cover { opacity: 1; }
.release-cover.is-active  { opacity: 1; }

ul.release-cover-list {
    margin-left: -.75rem;
    margin-right: -.75rem;
}

ul.release-cover-list li:not(:last-child) {
    margin-bottom: 50%;
}

@media screen and (max-width: 768px) {
    ul.release-cover-list li:not(:last-child) { margin-bottom: 0; }
    ul.release-cover-list li {
        padding: 6rem .75rem;
    }
    ul.release-cover-list li:nth-child(2n) {
        background-color: #262624;
    }

    /* Todos los items en dark tienen fondo negro */
    .theme.dark ul.release-cover-list li {
        background-color: #262624;
    }

    /* El bloque de info móvil también */
    .theme.dark .release-cover-list .is-hidden-tablet {
        background-color: #262624;
        color: #767470;
    }
}

.release-info {
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .release-info {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
}

@media print, screen and (min-width: 769px) {
    .release-info { text-align: right; }
}

.release-info h1  { margin-top: 0 !important; }
.release-info .label { margin-bottom: 1.5rem !important; }

.gig-list .button-kk { margin-left: .75em; }


/* ============================================================
   SOCIAL LINKS
   ============================================================ */

.social-links {
    display: flex;
    align-items: center;
}

.social-links span.link-target {
    display: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8em;
    color: rgb(255, 255, 255);
    margin-right: 1.25em;
    opacity: 0;
    transition: opacity .5s cubic-bezier(.455,.03,.515,.955);
}

@media print, screen and (min-width: 769px) {
    .social-links span.link-target { display: inline; }
}

.social-links span.link-target.is-active {
    opacity: 1;
    transition: opacity .3s cubic-bezier(.455,.03,.515,.955);
}

.social-links a {
    font-size: 1.4em;
    display: inline-block;
    transition: color .2s cubic-bezier(.455,.03,.515,.955);
    padding-right: .5em;
    padding-left: .5em;
    color: rgb(255, 255, 255);
    background: none !important;
}

.navbar .social-links a { font-size: .9em; }

.social-links a:hover { color: #767470; }
.social-links a:after, .social-links a:before { content: normal; }

/* Nav bottom — fixed en desktop, margen en móvil */
@media screen and (max-width: 768px) {
    .nav-bottom { margin-top: 3em; }
}

@media print, screen and (min-width: 769px) {
    .nav-bottom {
        position: fixed;
        right: 2.25rem;
        bottom: 1.25rem;
    }
}


/* ============================================================
   LOGO SVG
   ============================================================ */

.logo {
    transform: rotate(0);
}

.logo svg {
    fill: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: block;
    transition: fill .24s cubic-bezier(.455,.03,.515,.955) .28s,
                opacity .8s cubic-bezier(.455,.03,.515,.955),
                transform .8s cubic-bezier(.645,.045,.355,1);
}

.dark .logo svg { fill: #373735; }

@media screen and (max-width: 768px) {
    .logo {
        width: 120px;
        height: 99.04px;
        position: absolute;
        left: 50%;
        bottom: -49.52px;
        margin-left: -60px;
    }
}

@media print, screen and (min-width: 769px) {
    .logo {
        width: 90px;
        height: 74.28px;
        position: fixed;
        top: 50%;
        margin-top: -37.14px;
        right: calc(50% - 45px);
        z-index: 10;
    }
}

@media screen and (min-width: 960px) {
    .logo {
        width: 130px;
        height: 107.29px;
        position: fixed;
        top: 50%;
        margin-top: -53.65px;
        right: calc(50% - 65px);
    }
}

@media screen and (min-width: 1152px) {
    .logo {
        width: 150px;
        height: 123.80px;
        position: fixed;
        top: 50%;
        margin-top: -61.90px;
        right: calc(50% - 75px);
    }
}


/* ============================================================
   BLOQUES DE TRANSICIÓN DE PÁGINA
   ============================================================ */

.transition-block {
    position: fixed;
    height: 100vh;
    width: 50%;
    transform: translateZ(0);
}

.transition-block.right {
    top: 100vh;
    left: 50%;
}

.transition-block.left {
    left: 0;
    top: 100vh;
}

@media print, screen and (min-width: 769px) {
    .transition-block.left { top: -100vh; }
}


/* ============================================================
   COPYRIGHT
   ============================================================ */

.copyright {
    font-size: .7em;
    text-transform: uppercase;
    font-weight: 700;
}

.copyright,
.copyright a {
    color: rgb(255, 255, 255);
}

.copyright a:hover { text-decoration: underline; }


/* ============================================================
   FONT AWESOME — SVG INLINE
   ============================================================ */

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

.svg-inline--fa.fa-lg { vertical-align: -.225em; }

.svg-inline--fa.fa-w-14 { width: .875em; }
.svg-inline--fa.fa-w-16 { width: 1em; }
.svg-inline--fa.fa-w-20 { width: 1.25em; }

.fa-spin  { animation: fa-spin 2s linear infinite; }
.fa-pulse { animation: fa-spin 1s steps(8) infinite; }

.fa-fw { text-align: center; width: 1.25em; }

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul > li { position: relative; }

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-pull-left  { float: left; }
.fa-pull-right { float: right; }

.fa-stack {
    display: inline-block;
    height: 2em;
    position: relative;
    width: 2.5em;
}

.fa-layers {
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    vertical-align: -.125em;
    width: 1em;
}

.fa-inverse { color: #fff; }

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}


/* ============================================================
   ANIMACIONES DE CARACTERES (usadas por JS si se reactiva)
   ============================================================ */

.word {
    padding-left: .3em;
    overflow: hidden;
    display: inline-flex;
}

.char {
    display: block;
    transform: translate3d(0, 110%, 0) rotate(-15deg);
    transition: transform .4s cubic-bezier(.215,.61,.355,1);
}

.is-active .char {
    transform: translateZ(0) rotate(0);
}

.char-container {
    display: inline-flex;
    padding: .05em 0;
    margin: -.05em 0;
}

/* Delays escalonados .d-1 a .d-70 */
.d-1  { transition-delay: .03s; }
.d-2  { transition-delay: .06s; }
.d-3  { transition-delay: .09s; }
.d-4  { transition-delay: .12s; }
.d-5  { transition-delay: .15s; }
.d-6  { transition-delay: .18s; }
.d-7  { transition-delay: .21s; }
.d-8  { transition-delay: .24s; }
.d-9  { transition-delay: .27s; }
.d-10 { transition-delay: .30s; }
.d-11 { transition-delay: .33s; }
.d-12 { transition-delay: .36s; }
.d-13 { transition-delay: .39s; }
.d-14 { transition-delay: .42s; }
.d-15 { transition-delay: .45s; }
.d-16 { transition-delay: .48s; }
.d-17 { transition-delay: .51s; }
.d-18 { transition-delay: .54s; }
.d-19 { transition-delay: .57s; }
.d-20 { transition-delay: .60s; }
.d-25 { transition-delay: .75s; }
.d-30 { transition-delay: .90s; }
.d-35 { transition-delay: 1.05s; }
.d-40 { transition-delay: 1.20s; }
.d-45 { transition-delay: 1.35s; }
.d-50 { transition-delay: 1.50s; }
.d-55 { transition-delay: 1.65s; }
.d-60 { transition-delay: 1.80s; }
.d-65 { transition-delay: 1.95s; }
.d-70 { transition-delay: 2.10s; }


/* ============================================================
   RELEASE INFO — INFO PANEL DESKTOP
   ============================================================ */

.release-info-enter        { opacity: 0; }
.release-info-enter-active { opacity: 1; transition: opacity .3s cubic-bezier(.455,.03,.515,.955); }
.release-info-exit         { opacity: 1; }
.release-info-exit-active  { opacity: 0; transition: opacity .3s cubic-bezier(.455,.03,.515,.955); }

/* ============================================================
   IS-OVERLAY
   ============================================================ */

.is-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}


/* ============================================================
   FIX HAMBURGUESA — forzar visibilidad del menú activo
   ============================================================ */
@media screen and (max-width: 959px) {
    .navbar-end.is-active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 200;
        background: #ede9e1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

    .dark .navbar-end.is-active {
        background: #262624;
    }

    .navbar-end.is-active .navbar-item {
        opacity: 1 !important;
        transform: translateZ(0) !important;
        font-size: 1.7em;
        padding: 1rem 1.5rem;
    }
}

/* ============================================================
   FIX iOS Chrome — el JS controla el menú en móvil
   El CSS no debe interferir con display ni position
   ============================================================ */
@media screen and (max-width: 959px) {
    .navbar .navbar-end {
        display: none;
    }
    .navbar .navbar-end.is-active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 9999 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
    }
}

/* ============================================================
   REPRODUCTOR DESKTOP: ANCLADO FIJO SIN ALTERAR LA NAVBAR
   ============================================================ */

/* ELIMINADO: Ya no tocamos la propiedad .navbar para que la foto vuelva arriba */

/* Pantallas Medianas/Grandes (Desde 960px hasta 1151px) */
@media screen and (min-width: 960px) {
    .navbar-audio {
        display: flex;
        align-items: center;
        
        /* Cambiamos a fixed para que use la pantalla completa como guía 
           y no dependa de los caprichos del contenedor de la navbar */
        position: fixed; 
        
        /* ALINEACIÓN ROJA: Se posiciona exactamente en el inicio de la BIO */
        left: calc(50% + 65px); 
        
        /* Centrado vertical exacto en la zona del menú superior */
        top: 25px; /* Ajusta este número (ej. 20px, 30px) si quieres subirlo o bajarlo un pelo */
        z-index: 1000; /* Asegura que no se esconda detrás del fondo */
        
        /* ANCHO DINÁMICO: Evita colisiones con los enlaces de la derecha */
        width: calc(50% - 65px - 250px); 
        max-width: 450px; 
        min-width: 160px;
    }

    .navbar-audio iframe {
        width: 100% !important;
        height: 20px;
        border: none;
    }
}

/* Pantallas Gigantes (Desde 1152px en adelante) */
@media screen and (min-width: 1152px) {
    .navbar-audio {
        /* Se desplaza en perfecta sincronía cuando el texto de la BIO se mueve a 85px */
        left: calc(50% + 85px); 
        width: calc(50% - 85px - 250px); 
    }
}

/* ============================================================
   REPRODUCTOR MÓVIL: SE ADAPTA AL 100% DEL ANCHO DISPONIBLE
   ============================================================ */
.navbar-audio-mobile {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 25px;
}

.navbar-audio-mobile iframe {
    width: 100% !important;
    height: 20px;
    border: none;
}

/* ============================================================
   SECCIÓN DE CONTACTO: EN ALTO Y 100% CENTRADO ORIGINAL
   ============================================================ */

/* Eleva todo el conjunto centrado hacia la parte superior */
.center-content.has-text-centered.contact-shifted-up {
    justify-content: flex-start !important; /* Cambia de center a flex-start para subir el bloque */
    padding-top: 14vh !important;           /* Ajusta este valor si quieres subirlo o bajarlo un poco más */
    text-align: center !important;
}

/* Contenedor de la newsletter centrado con LÍNEA DE SEPARACIÓN SUPERIOR */
.contact-newsletter {
    border-top: 1px solid rgb(255, 255, 255) !important; /* Línea sutil, elegante y minimalista */
    padding-top: 40px !important;                               /* Espacio entre la línea y el título NEWSLETTER */
    margin: 40px auto 0 auto !important;                         /* Espacio entre el texto de arriba y la línea */
    max-width: 460px !important;                                 /* Mantiene la línea del mismo ancho que el formulario */
    text-align: center !important;
}

/* Encabezado NEWSLETTER */
.contact-newsletter h3 {
    color: #767470 !important;
    font-size: 1.1rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

/* Subtexto descriptivo en mayúsculas */
.contact-newsletter p {
    color: #767470 !important;
    padding-top: 20px !important;                               /* Espacio entre la línea y el título NEWSLETTER */
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
    text-transform: uppercase !important;
}

/* Espaciado del grupo del formulario */
.newsletter-form .form-group {
    margin-bottom: 20px !important;
}

/* Input con texto y placeholder 100% centrados */
.newsletter-form input[type="email"] {
    width: 80% !important;
    background: transparent !important;
    border: none !important;
    /* Línea blanca idéntica a PHOTO-2026-06-05-11-00-48.jpg */
    border-bottom: 1px solid #ffffff !important; 
    color: #ffffff !important;
    padding: 8px 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    border-radius: 0 !important;
    outline: none !important;
    text-transform: uppercase !important;
    text-align: center !important; /* Fuerza a que el correo escrito salga en el centro */
}

/* Centrado del marcador de posición (EMAIL) */
.newsletter-form input[type="email"]::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
    text-align: center !important;
}

/* Botón plano SIGN UP centrado */
.newsletter-form .btn-signup {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    padding: 5px 0 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin: 0 auto !important; /* Lo fija en el centro horizontal exacto */
    transition: opacity 0.2s ease-in-out !important;
}

.newsletter-form .btn-signup:hover {
    opacity: 0.5 !important;
}

/* Estilos para el desplegable de opciones de contacto */
.newsletter-form select {
    width: 80% !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ffffff !important; /* Misma línea blanca */
    color: #ffffff !important;
    padding: 8px 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    border-radius: 0 !important;
    outline: none !important;
    text-transform: uppercase !important;
    text-align: left !important;
    text-align-last: left !important; /* Fuerza a la izquierda del texto seleccionado */
    cursor: pointer !important;
    appearance: none; -webkit-appearance: none; -moz-appearance: none; /* Oculta la flecha nativa para un look más limpio */
}

/* Estilo para el desplegable cuando se abre (evita que las letras se vuelvan invisibles sobre el fondo) */
.newsletter-form select option {
    background-color: #111111 !important; /* Fondo oscuro que hace juego con el modo dark */
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    padding: 10px !important;
}

/* Estilo por defecto para la opción deshabilitada ("SELECCIONA UNA OPCIÓN") */
.newsletter-form select option:disabled {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ============================================================
   EMAIL CONTACT — tachado blanco al hover
   ============================================================ */
@media screen and (min-width: 960px) {
    .theme.dark .center-content a[href^="mailto"]:after,
    .theme.dark .center-content a[href^="mailto"]:before {
        background-color: #fff;
    }
}
 
/* Ocultar línea por defecto en email, solo mostrar en hover */
@media screen and (min-width: 960px) {
    .theme.dark .center-content a[href^="mailto"]:before {
        opacity: 0;
        transform: translateZ(0);
    }
 
    .theme.dark .center-content a[href^="mailto"]:hover:before {
        opacity: .75;
        transform: translate3d(102%, 0, 0);
        transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                    transform .3s cubic-bezier(.215,.61,.355,1) 0s;
    }
 
    .theme.dark .center-content a[href^="mailto"]:hover:after {
        transform: translateZ(0);
        transition: background-color .08s cubic-bezier(.455,.03,.515,.955) .528s,
                    transform .3s cubic-bezier(.215,.61,.355,1) .3s;
    }
}

/* ============================================================
   FIX AUTOCOMPLETADO — evitar fondo blanco del navegador
   ============================================================ */
.newsletter-form input[type="email"]:-webkit-autofill,
.newsletter-form input[type="email"]:-webkit-autofill:hover,
.newsletter-form input[type="email"]:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #262624 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}
 
/* ========================================================
   ESTILOS EXCLUSIVOS PARA MÓVIL (PANTALLAS HASTA 768px)
   ======================================================== */

/* Ocultar la línea por defecto en ordenadores */
.mobile-divider {
    display: none;
}

@media (max-width: 768px) {
    
    /* === NUEVO: OCULTAR REPRODUCTOR CUANDO EL MENÚ ESTÁ ACTIVO === */
    .navbar-end.is-active ~ .reproductor,
    .navbar-end.is-active iframe,
    .navbar-end.is-active .audio-player,
    .navbar-end.is-active #soundcloud-player 
    .navbar-audio-mobile, /* Oculta el contenedor nativo del reproductor móvil */
    [class*="transition"] iframe{
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
    }

    /* === NUEVO: CAPA PRIORITARIA PARA EL MENÚ ABIERTO === */
    .navbar-end.is-active {
        z-index: 99999 !important;
    }

    /* 1. Hacer visible la línea blanca divisoria solo en móvil */
    .mobile-divider {
        display: block;
        border: none;
        border-top: 1px solid #ffffff; /* Color blanco */
        margin: 35px auto;             /* Separación vertical */
        width: 80px;                   /* Longitud de la línea (puedes cambiarlo a 100% si la quieres completa) */
        opacity: 0.8;
    }

    /* 2. Dar más holgura y separación a los textos en móvil */
    .center-content.content h4 {
        margin-top: 30px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .center-content.content p {
        margin-bottom: 20px;
    }

    .contact-newsletter {
        margin-top: 35px;
        margin-bottom: 40px;
    }

    /* 3. Forzar a que los móviles respeten el diseño de escritorio y no apliquen estilos nativos (iOS/Android) */
    .newsletter-form input[type="email"],
    .newsletter-form .btn-signup {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0; /* Evita que Safari en iOS redondee las esquinas por defecto */
    }
}

