/* ============================================================
   LAGUNA RECORDS — styles.css (partilhado por todas as páginas)
   Paleta: preto e azul
   ============================================================ */

:root {
    --bg: #060808;          /* preto de fundo */
    --panel: #0a1413;       /* painéis escuros com tom do logo */
    --line: #17302c;        /* linhas / bordas */
    --ink: #eef4f3;         /* texto principal */
    --muted: #8ba5a1;       /* texto secundário */
    --blue: #3ec6b8;        /* azul-esverdeado do logotipo (acento) */
    --ice: #9fe8df;         /* versão clara do acento */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, .display {
    font-family: 'Anton', Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.02;
    margin: 0;
}

.mono {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--ice);
}

a { color: inherit; }

img { max-width: 100%; }

/* ---------- Intro (animação do logo ao abrir) ---------- */

#intro {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: intro-out 0.6s ease 2s forwards;
}

#intro img {
    height: 110px;
    animation: intro-slip 1.4s cubic-bezier(.22,1,.36,1) forwards;
    opacity: 0;
}

@keyframes intro-slip {
    0%   { opacity: 0; transform: translateX(-60vw) rotate(-8deg); }
    60%  { opacity: 1; transform: translateX(4vw) rotate(2deg); }   /* escorrega para lá do centro… */
    100% { opacity: 1; transform: translateX(0) rotate(0deg); }      /* …e volta. mãos de manteiga. */
}

@keyframes intro-out {
    to { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
    #intro { display: none; }
}

/* ---------- Cabeçalho ---------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 5%;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: #000;
    backdrop-filter: blur(8px);
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
}

.brand-name {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-img { height: 56px; width: auto; display: block; }

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 26px;
}

nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover { color: var(--ice); }

nav a.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.cart {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.cart-count {
    background: var(--blue);
    color: #04120f;
    padding: 1px 9px;
    border-radius: 20px;
    font-size: 0.78rem;
}

/* ---------- Fita (ticker) ---------- */

.ticker {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--blue);
    color: #04120f;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    padding: 8px 0;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: ticker 22s linear infinite;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ---------- Hero tipográfico ---------- */

.hero {
    padding: 84px 5% 64px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 80% 60% at 70% 0%, rgba(62, 198, 184, 0.16), transparent 60%),
        var(--bg);
}

.hero .eyebrow {
    margin: 0 0 14px;
}

.hero h1 {
    font-size: clamp(2.6rem, 9vw, 6rem);
    max-width: 14ch;
}

.hero h1 .blue { color: var(--blue); }

.hero p.lead {
    color: var(--muted);
    max-width: 560px;
    margin: 22px 0 0;
    font-size: 1.05rem;
}

/* ---------- Blocos de conteúdo ---------- */

.content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 64px 5%;
}

.content.narrow { max-width: 760px; }

.block { margin-bottom: 72px; }
.block:last-child { margin-bottom: 0; }

.label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.block h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 20px; }

.block p { color: #c6cbdb; margin: 0 0 18px; }
.block p:last-child { margin-bottom: 0; }

.pullquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ink);
    border-left: 3px solid var(--blue);
    padding-left: 22px;
    margin: 0 0 22px;
    line-height: 1.5;
}

/* ---------- Cartões de notícias (página inicial) ---------- */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.news-card {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.news-card h3 { font-size: 1.25rem; }

.news-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.news-card .cta { color: var(--blue); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Loja ---------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.product-card:hover { border-color: var(--blue); }

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #12162a;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

/* imagem de trás: aparece quando o rato passa por cima */
.product-image img.back { opacity: 0; }
.product-card:hover .product-image img.back { opacity: 1; }
.product-card:hover .product-image img.front { opacity: 0; }
/* se não houver foto de trás, a da frente fica sempre visível */
.product-card.no-back:hover .product-image img.front { opacity: 1; }

/* faixa de esgotado */
.slipped {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(8, 9, 13, 0.88);
    border-top: 2px solid var(--blue);
    color: var(--ice);
    padding: 10px 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: center;
}

.slipped strong {
    display: block;
    color: #fff;
    font-family: 'Anton', Impact, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.product-info { padding: 16px; text-align: center; }

.product-name {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.product-price { color: var(--muted); text-decoration: line-through; }

/* ---------- Eventos / tour ---------- */

.tour-header { text-align: center; margin-bottom: 48px; }
.tour-header .mono { display: block; margin-bottom: 12px; }
.tour-header h2 { font-size: clamp(2rem, 6vw, 3.6rem); }

.tour-region { margin-bottom: 44px; }

.tour-region h3 {
    color: var(--blue);
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.tour-list { list-style: none; margin: 0; padding: 0; }

.tour-list li {
    display: flex;
    gap: 20px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}

.tour-list .date {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.82rem;
    color: var(--ice);
    min-width: 76px;
}

.tour-list .city { flex: 1; font-weight: 600; }

.tour-list .status {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.coming-soon {
    border: 1px dashed var(--line);
    padding: 60px 24px;
    text-align: center;
    color: var(--muted);
}

/* ---------- Ficha da editora / valores ---------- */

.label-card {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 32px;
}

.label-card .name { font-size: 1.5rem; font-family: 'Anton', Impact, sans-serif; text-transform: uppercase; margin: 0 0 6px; }
.label-card .sub { color: var(--muted); margin: 0 0 24px; }

.meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin: 0;
}

.meta dt {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.meta dd { margin: 0; font-weight: 600; }

.values {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.values li {
    border: 1px solid var(--blue);
    color: var(--ice);
    padding: 8px 18px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---------- Capa do álbum (texto sobreposto à imagem) ---------- */

.album-layout {
    display: block;
}

.album-layout .album-cover {
    max-width: 480px;
    margin: 0 auto 40px;
}

.album-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 24px 60px rgba(62, 198, 184, 0.16);
}

.album-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.album-cover .cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 6, 12, 0.85) 0%, rgba(5, 6, 12, 0.05) 45%, rgba(5, 6, 12, 0.35) 100%);
}

.cover-artist {
    position: absolute;
    top: 16px;
    left: 18px;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.cover-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 40px;
    font-family: 'Shrikhand', 'Anton', Impact, sans-serif;
    font-size: clamp(1.9rem, 5vw, 2.9rem);
    line-height: 1.05;
    color: #ffd977; /* amarelo manteiga */
    text-shadow: 0 3px 16px rgba(0,0,0,0.65);
}

.cover-cat {
    position: absolute;
    left: 18px;
    bottom: 16px;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ice);
}

/* autocolante de loja de discos, para vender a ilusão */
.hype-sticker {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--blue);
    color: #04120f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    transform: rotate(8deg);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* ---------- Artista / streaming ---------- */

.artist-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.artist-photo {
    aspect-ratio: 3 / 4;
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: hidden;
}

.artist-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.platform-btn {
    display: inline-block;
    border: 1px solid var(--blue);
    color: var(--ink);
    text-decoration: none;
    padding: 12px 26px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.platform-btn:hover { background: var(--blue); color: #04120f; }

/* ---------- Rodapé ---------- */

footer {
    padding: 56px 5%;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: #000;
}

footer .footer-logo { height: 52px; width: auto; margin: 0 auto 20px; display: block; }

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--ice);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover { border-bottom-color: var(--blue); color: #fff; }

/* ---------- Responsivo ---------- */

@media (max-width: 720px) {
    .logo-img { height: 42px; }
    nav { order: 3; width: 100%; justify-content: center; gap: 4px 18px; }
    nav a { font-size: 0.74rem; }
    .artist-layout { grid-template-columns: 1fr; }
    .meta { grid-template-columns: 1fr; }
    .label-card { padding: 24px; }
}
