/* ============================================================
   VALLE MC STORE — PUNCHLINE WEAR
   Style Sheet
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --black:       #080808;
    --dark:        #111111;
    --card:        #161616;
    --card-hover:  #1e1e1e;
    --border:      #252525;
    --border-soft: #1e1e1e;

    --accent:      #a855f7;
    --accent-dark: #9333ea;
    --accent-glow: rgba(168, 85, 247, 0.28);

    --white:       #f2f2f2;
    --muted:       #888888;
    --muted-light: #aaaaaa;

    --ff-heading: 'Bebas Neue', sans-serif;
    --ff-body:    'Inter', sans-serif;

    --radius:      8px;
    --radius-sm:   4px;
    --transition:  0.3s ease;

    --container:   1280px;
    --shadow:      0 24px 80px rgba(0, 0, 0, 0.6);
    --shadow-red:  0 20px 60px rgba(168, 85, 247, 0.22);
}

/* ---- RESET ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--ff-body);
    overflow-x: hidden;
    line-height: 1.6;
}

body.locked {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--ff-body);
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ---- CONTAINER ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
    font-family: var(--ff-heading);
    letter-spacing: 0.04em;
    line-height: 1;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

.text-accent {
    color: var(--accent);
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: var(--accent);
    color: white;
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: transparent;
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: white;
    color: var(--black);
    border-color: white;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.25rem 0;
    transition: background var(--transition), padding var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--ff-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-btn {
    position: relative;
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color var(--transition);
}

.cart-btn:hover {
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    line-height: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drag-handle {
    display: none;
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0;
    height: 100%;
    width: 390px;
    max-width: 100vw;
    background: var(--dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-header h3 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.cart-header button {
    color: var(--muted);
    font-size: 1.1rem;
    padding: 0.375rem;
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
}

.cart-header button:hover {
    color: var(--white);
    background: var(--border);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 1rem;
    color: var(--muted);
    text-align: center;
}

.cart-empty i {
    font-size: 3rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: var(--radius);
    transition: background var(--transition);
}

.cart-item:hover {
    background: var(--card);
}

.cart-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-thumb img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info span {
    font-size: 0.75rem;
    color: var(--muted);
}

.cart-item-price {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
    flex-shrink: 0;
}

.cart-item-remove {
    color: var(--muted);
    font-size: 0.85rem;
    padding: 0.375rem;
    flex-shrink: 0;
    transition: color var(--transition);
    border-radius: var(--radius-sm);
}

.cart-item-remove:hover {
    color: var(--accent);
}

.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    display: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
}

.cart-total-row span:last-child {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.cart-pix-note {
    font-size: 0.78rem;
    color: #4caf50;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Checkout primary button in cart */
.btn-checkout-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-bottom: 0.625rem;
}
.btn-checkout-main:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-wa-secondary {
    font-size: 0.82rem;
    padding: 0.7rem;
    opacity: 0.85;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    transition: background var(--transition), transform var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero:hover .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 8, 8, 0.92) 0%,
        rgba(8, 8, 8, 0.72) 55%,
        rgba(8, 8, 8, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    margin-top: 80px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.4rem 1.25rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(5rem, 16vw, 15rem);
    line-height: 0.88;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    display: block;
    color: var(--white);
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    text-stroke: 2px var(--accent);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.45));
}

.hero-subtitle {
    font-family: var(--ff-heading);
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    letter-spacing: 0.5em;
    color: var(--muted-light);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-subtitle strong {
    color: var(--white);
    font-family: var(--ff-heading);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.features-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 3rem;
    flex: 1;
    justify-content: center;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.feature-text span {
    font-size: 0.775rem;
    color: var(--muted);
    margin-top: 1px;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
    background: var(--accent);
    overflow: hidden;
    padding: 0.8rem 0;
    user-select: none;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-content {
    font-family: var(--ff-heading);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: white;
    white-space: nowrap;
    padding-right: 0;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

/* ---- Product Card ---- */
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
    border-color: rgba(168, 85, 247, 0.38);
}

/* ---- Product Image Area ---- */
.product-img-area {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-area.is-black {
    background: radial-gradient(ellipse at center, #1c1c1c, #080808);
}

.product-img-area.is-white {
    background: radial-gradient(ellipse at center, #f5f5f5, #dcdcdc);
}

.tshirt-svg {
    position: absolute;
    width: 78%;
    height: 78%;
    opacity: 0.06;
}

.is-black .tshirt-svg { fill: #ffffff; }
.is-white .tshirt-svg { fill: #000000; }

.product-logo-img {
    position: absolute;
    width: 32%;
    height: auto;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.4s ease;
    object-fit: contain;
}

.is-white .product-logo-img {
    filter: brightness(0);
}

.product-card:hover .product-logo-img {
    transform: translate(-50%, -50%) scale(1.08);
}

.product-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    transition: transform 0.4s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.04);
}

/* ---- Product nav arrows (card & modal) ---- */
.product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.product-nav-prev { left: 0.5rem; }
.product-nav-next { right: 0.5rem; }

.product-img-area:hover .product-nav,
.modal-image:hover .product-nav {
    opacity: 1;
}

.product-nav:hover {
    background: rgba(168, 85, 247, 0.65);
    transform: translateY(-50%) scale(1.1);
}

/* ---- Modal image nav ---- */
.modal-image .product-nav {
    top: 50%;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.product-quick-view {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-view:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ---- Product Info ---- */
.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.product-sub {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

/* ---- Size Selector ---- */
.size-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.size-btns {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.size-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.size-btn:hover,
.size-btn.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ---- Price + Button Row ---- */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.price-block {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-pix {
    font-size: 0.72rem;
    color: #66bb6a;
    font-weight: 600;
    margin-top: 3px;
}

.btn-add {
    flex: 1;
    max-width: 160px;
    padding: 0.75rem 0.875rem;
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    font-family: var(--ff-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-add:hover {
    background: transparent;
    color: var(--accent);
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.product-modal {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 780px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.modal-overlay.open .product-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}

.modal-details {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-details h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-top: 0.5rem;
}

.modal-desc {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.modal-price-pix {
    font-size: 0.82rem;
    color: #66bb6a;
    margin-top: 0.25rem;
    font-weight: 600;
}

.modal-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-modal-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-family: var(--ff-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all var(--transition);
}

.btn-modal-wa:hover {
    border-color: #25D366;
    color: #25D366;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 6rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ---- Photo Mosaic ---- */
.about-photos {
    position: relative;
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 0.625rem;
    border-radius: 12px;
    overflow: hidden;
}

.photo-main {
    grid-row: 1 / 3;
}

.photo-side {
    grid-row: 1 / 3;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.625rem;
    height: 100%;
}

.photo-main img,
.photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: grayscale(15%) contrast(1.08);
}

.photo-mosaic:hover img { filter: grayscale(0%) contrast(1.1); transform: scale(1.03); }
.photo-mosaic:hover .photo-main img { transform: scale(1.02); }

/* ---- Show contact ---- */
.show-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    margin: 0.25rem 0;
    text-decoration: none;
}

.show-contact-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(168,85,247,0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.show-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.show-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: var(--ff-heading);
    letter-spacing: 1px;
    transition: color 0.2s;
}

.show-number:hover { color: var(--accent); }

/* ---- About text ---- */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    margin-top: 0.5rem;
    line-height: 1.05;
}

.about-text p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1rem;
}

.about-text p strong {
    color: var(--white);
    font-weight: 700;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.stat-item strong {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.stat-item span {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.music-section {
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* YouTube video */
.video-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto 3rem;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Spotify albums grid */
.spotify-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.spotify-grid iframe {
    width: 100%;
    border-radius: 12px;
    border: none;
}

/* Platform links */
.music-links { text-align: center; }

.music-links-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.375rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    font-family: 'Inter', sans-serif;
}

.platform-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

.platform-btn.spotify  { background: #1DB954; color: #000; }
.platform-btn.ytmusic  { background: #ff0000; color: #fff; }
.platform-btn.landr    { background: var(--card); color: var(--white); border: 1px solid var(--border); }
.platform-btn.landr:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: var(--radius);
}

.social-instagram::before { background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), rgba(193, 53, 132, 0.08)); }
.social-youtube::before   { background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(200, 0, 0, 0.08)); }
.social-tiktok::before    { background: linear-gradient(135deg, rgba(105, 201, 208, 0.08), rgba(0, 0, 0, 0.08)); }
.social-spotify::before   { background: linear-gradient(135deg, rgba(29, 185, 84, 0.08), rgba(20, 130, 60, 0.08)); }
.social-ytmusic::before   { background: linear-gradient(135deg, rgba(255, 0, 0, 0.06), rgba(180, 0, 0, 0.06)); }

.social-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.32);
    box-shadow: var(--shadow-red);
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}

.social-card:hover .social-icon {
    transform: scale(1.15);
}

.social-instagram .social-icon { color: #E1306C; }
.social-youtube   .social-icon { color: #FF0000; }
.social-tiktok    .social-icon { color: #69C9D0; }
.social-spotify   .social-icon { color: #1DB954; }
.social-ytmusic   .social-icon { color: #ff0000; }

.social-card strong {
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.social-card span {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.social-arrow {
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition);
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.625rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(168, 85, 247, 0.09);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact h4 {
    margin-bottom: 1.25rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    color: var(--accent);
    width: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    color: var(--muted);
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    z-index: 800;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 3.5s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--card);
    color: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 9999;
    white-space: nowrap;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: var(--shadow);
}

.toast.visible {
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   COOKIE BANNER — LGPD Compliant
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    z-index: 2000;
    transition: transform 0.4s ease;
    backdrop-filter: blur(12px);
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-content {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
}
.cookie-icon {
    width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
    background: rgba(168,85,247,0.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.cookie-text strong { font-size: 0.88rem; color: var(--white); display: block; margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.5; }
.cookie-text a { color: var(--accent); text-decoration: underline; }

/* Granular toggles */
.cookie-options {
    display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1rem;
    padding: 0.875rem 1rem; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border); border-radius: 8px;
}
.cookie-toggle {
    display: flex; align-items: center; gap: 0.625rem; cursor: pointer; font-size: 0.78rem; color: var(--muted);
}
.cookie-toggle input { display: none; }
.cookie-toggle .slider {
    width: 34px; height: 18px; background: var(--border); border-radius: 9px;
    position: relative; transition: background .2s; flex-shrink: 0;
}
.cookie-toggle .slider::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 14px; height: 14px; background: #666; border-radius: 50%;
    transition: transform .2s, background .2s;
}
.cookie-toggle input:checked + .slider { background: rgba(168,85,247,0.35); }
.cookie-toggle input:checked + .slider::after { background: var(--accent); transform: translateX(16px); }
.cookie-toggle input:disabled + .slider { background: rgba(34,197,94,0.2); }
.cookie-toggle input:disabled + .slider::after { background: #22c55e; transform: translateX(16px); }
.tag-ess {
    font-size: 0.6rem; background: rgba(34,197,94,0.15); color: #22c55e;
    border-radius: 3px; padding: 1px 5px; font-weight: 700; text-transform: uppercase;
}

/* Action buttons */
.cookie-actions { display: flex; gap: 0.625rem; flex-wrap: wrap; align-items: center; }
.cookie-btn-outline {
    padding: 0.45rem 1rem; border: 1px solid var(--border); background: transparent;
    color: var(--muted); border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: border-color .2s, color .2s;
    font-family: 'Inter', sans-serif;
}
.cookie-btn-outline:hover { border-color: var(--accent); color: var(--white); }
.cookie-btn-accept {
    padding: 0.45rem 1.25rem; background: var(--accent); color: #fff;
    border: none; border-radius: 6px; font-size: 0.75rem; font-weight: 700;
    cursor: pointer; letter-spacing: 0.05em; transition: background .2s;
    font-family: 'Inter', sans-serif;
}
.cookie-btn-accept:hover { background: var(--accent-dark); }

/* ============================================================
   CONQUISTAS SECTION
   ============================================================ */
.conquistas-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
    position: relative;
    overflow: hidden;
}
.conquistas-section::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Battles grid */
.battles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.battle-region {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}
.battle-region:hover {
    border-color: rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.04);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.region-header i {
    color: var(--accent);
    font-size: 0.9rem;
}
.region-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin: 0;
    color: var(--white);
}
.region-state {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--accent);
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    letter-spacing: 0.08em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.battle-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.battle-list li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 2px solid rgba(168,85,247,0.4);
    transition: border-color 0.2s, background 0.2s;
}
.battle-list li:hover {
    background: rgba(168,85,247,0.08);
    border-left-color: var(--accent);
}
.battle-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
    letter-spacing: 0.02em;
}
.battle-info {
    font-size: 0.74rem;
    color: var(--muted2);
    letter-spacing: 0.02em;
}

/* Titles block */
.titles-block {
    margin-top: 1rem;
}
.titles-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.titles-heading i {
    color: #f5c542;
}

.titles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
}

.title-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}
.title-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.title-gold {
    background: linear-gradient(135deg, rgba(245,197,66,0.1) 0%, rgba(245,197,66,0.04) 100%);
    border-color: rgba(245,197,66,0.3);
}
.title-silver {
    background: linear-gradient(135deg, rgba(192,192,192,0.08) 0%, rgba(192,192,192,0.03) 100%);
    border-color: rgba(192,192,192,0.2);
}

.title-trophy {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.title-gold .title-trophy {
    background: rgba(245,197,66,0.15);
    color: #f5c542;
}
.title-silver .title-trophy {
    background: rgba(192,192,192,0.12);
    color: #c0c0c0;
}

.title-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.title-count {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.title-gold .title-count { color: #f5c542; }
.title-silver .title-count { color: #b0b0b0; }

.title-body strong {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
}
.title-body p {
    font-size: 0.78rem;
    color: var(--muted2);
    margin: 0.1rem 0;
    line-height: 1.5;
}
.title-local {
    font-size: 0.7rem;
    color: var(--muted2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
}
.title-local i { font-size: 0.65rem; opacity: 0.7; }

@media (max-width: 768px) {
    .battles-grid { grid-template-columns: 1fr; }
    .titles-grid { grid-template-columns: 1fr; }
    .conquistas-section { padding: 3rem 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE  (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .about-grid         { gap: 3.5rem; }
    .products-grid      { max-width: 760px; }
    .social-grid        { max-width: 760px; }
}

/* ============================================================
   RESPONSIVE — TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Container */
    .container { padding: 0 1.5rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: 1 / -1; }

    /* Features */
    .feature-item { padding: 0.75rem 1.25rem; }

    /* About */
    .about-grid        { gap: 3rem; }
    .photo-mosaic      { grid-template-rows: 220px 220px; }

    /* Music */
    .spotify-grid      { gap: 1rem; }

    /* Section headers */
    .section-header h2 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); }

    /* Products */
    .products-grid     { max-width: 700px; gap: 1.5rem; }

    /* Social */
    .social-grid       { max-width: 700px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT  (max 900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Hero */
    .hero-title        { font-size: clamp(4rem, 14vw, 10rem); }
    .hero-subtitle     { font-size: clamp(1rem, 2.8vw, 1.8rem); letter-spacing: 0.35em; }

    /* About: collapse to single column */
    .about-grid        { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .photo-mosaic      { grid-template-rows: 200px 200px; }
    .about-stats       { justify-content: center; }
    .about-text .btn-primary { align-self: center; }
    .about-text        { align-items: center; }
    .show-contact      { justify-content: center; }

    /* Music */
    .spotify-grid      { grid-template-columns: 1fr; }

    /* Social */
    .social-grid       { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* ---- Base ---- */
    html { font-size: 15px; }
    .container { padding: 0 1.1rem; }

    /* ---- Navbar ---- */
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.25rem;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        font-size: 2.75rem;
        color: var(--white);
        letter-spacing: 0.12em;
    }
    .nav-links a::after { display: none; }

    /* ---- Hero ---- */
    .hero-content  { padding: 1.25rem 1.25rem; margin-top: 70px; }
    .hero-title    { font-size: clamp(3.5rem, 18vw, 7.5rem); }
    .hero-subtitle { font-size: clamp(0.85rem, 3.5vw, 1.4rem); letter-spacing: 0.3em; margin-bottom: 2rem; }
    .hero-eyebrow  { font-size: 0.68rem; padding: 0.35rem 1rem; }
    .hero-cta      { gap: 0.75rem; }
    .btn-primary,
    .btn-secondary { font-size: 1rem; padding: 0.75rem 1.75rem; }
    .hero-scroll-hint { bottom: 1.75rem; }

    /* ---- Features strip ---- */
    .features-strip   { padding: 0; }
    .features-grid    { flex-direction: column; gap: 0; }
    .feature-divider  { width: 88%; height: 1px; }
    .feature-item     { padding: 1rem 2rem; width: 100%; justify-content: flex-start; }
    .feature-icon     { font-size: 1.3rem; }
    .feature-text strong { font-size: 0.82rem; }
    .feature-text span   { font-size: 0.72rem; }

    /* ---- Ticker ---- */
    .ticker           { padding: 0.65rem 0; }
    .ticker-content   { font-size: 0.82rem; }

    /* ---- Section headers ---- */
    .section-header   { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: clamp(2rem, 10vw, 3.5rem); }
    .section-header p  { font-size: 0.9rem; }
    .eyebrow           { font-size: 0.68rem; letter-spacing: 0.22em; }

    /* ---- Products ---- */
    .products-section  { padding: 4rem 0; }
    .products-grid     { grid-template-columns: 1fr; max-width: 420px; gap: 1.5rem; }

    .product-name      { font-size: 1.6rem; }
    .product-info      { padding: 1.25rem; }
    .size-btn          { width: 38px; height: 38px; font-size: 0.72rem; }
    .price-main        { font-size: 1.35rem; }
    .btn-add           { font-size: 0.95rem; padding: 0.7rem 0.75rem; }

    /* ---- Modal ---- */
    .product-modal     { max-height: 96vh; }
    .modal-content     { grid-template-columns: 1fr; }
    .modal-image       {
        min-height: 240px;
        aspect-ratio: unset;
        border-radius: var(--radius) var(--radius) 0 0;
    }
    .modal-details     { padding: 1.25rem 1.25rem 1.5rem; gap: 1rem; }
    .modal-details h2  { font-size: 2rem !important; }
    .modal-price       { font-size: 1.65rem; }
    .modal-cta-row     { flex-direction: column; }
    .modal-cta-row .btn-primary,
    .modal-cta-row .btn-modal-wa { width: 100%; justify-content: center; }

    /* ---- About ---- */
    .about-section     { padding: 4rem 0; }
    .about-grid        { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .photo-mosaic      { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
    .photo-main        { grid-row: auto; }
    .photo-side        { grid-row: auto; display: flex; flex-direction: row; gap: 0.5rem; }
    .photo-main img    { height: 280px; }
    .photo-side img    { height: 160px; flex: 1; }
    .about-text        { align-items: center; }
    .about-text h2     { font-size: clamp(2rem, 10vw, 3.5rem); }
    .about-text p      { font-size: 0.92rem; }
    .about-stats       { justify-content: center; }
    .stat-item strong  { font-size: 2rem; }
    .about-text .btn-primary { align-self: center; }
    .show-contact      { justify-content: center; }

    /* ---- Music ---- */
    .music-section     { padding: 4rem 0; }
    .spotify-grid      { grid-template-columns: 1fr; }

    /* ---- Social ---- */
    .social-section    { padding: 4rem 0; }
    .social-grid       { grid-template-columns: 1fr; max-width: 380px; gap: 1rem; }
    .social-card       { padding: 2rem 1.5rem; flex-direction: row; gap: 1.25rem; text-align: left; justify-content: flex-start; }
    .social-icon       { font-size: 2rem; flex-shrink: 0; }
    .social-card strong { font-size: 0.95rem; }
    .social-arrow      { margin-left: auto; opacity: 1; transform: translateX(0); }

    /* ---- Footer ---- */
    .footer            { padding-top: 3rem; }
    .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand      { grid-column: unset; }
    .footer-bottom     { flex-direction: column; text-align: center; gap: 0.4rem; }
    .footer-logo       { height: 32px; }

    /* ---- Cart sidebar (full-width on mobile) ---- */
    .cart-sidebar      { width: 100%; }

    /* ---- Cookie banner ---- */
    .cookie-banner     { padding: 1rem 1.25rem; }
    .cookie-actions    { gap: 0.5rem; }
    .cookie-btn-outline, .cookie-btn-accept { font-size: 0.72rem; padding: 0.4rem 0.875rem; }
    .cookie-options    { gap: 0.875rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    html { font-size: 14px; }

    /* ---- Hero ---- */
    .hero-title        { font-size: clamp(3rem, 20vw, 5.5rem); }
    .hero-cta          { flex-direction: column; align-items: center; width: 100%; }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

    /* ---- Navbar ---- */
    .nav-logo img      { height: 30px; }

    /* ---- Products ---- */
    .products-grid     { max-width: 100%; padding: 0 0.25rem; }
    .product-img-area  { aspect-ratio: 4/3.5; }

    /* ---- Cart (drawer from bottom) ---- */
    .cart-drag-handle  { display: block; }
    .cart-sidebar {
        width: 100%;
        height: 88vh;
        bottom: 0;
        top: auto;
        right: 0 !important;
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .cart-sidebar.open { transform: translateY(0); right: 0 !important; }

    /* ---- Modal ---- */
    .modal-overlay     { padding: 0; align-items: flex-end; }
    .product-modal     {
        max-height: 96vh;
        border-radius: 18px 18px 0 0;
        border-bottom: none;
    }
    .modal-image       { min-height: 200px; }
    .modal-details h2  { font-size: 1.75rem !important; }

    /* ---- About ---- */
    .stat-item strong  { font-size: 1.75rem; }

    /* ---- Social ---- */
    .social-card       { padding: 1.25rem 1.1rem; }
    .social-icon       { font-size: 1.6rem; }

    /* ---- WhatsApp float ---- */
    .whatsapp-float    { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.4rem; }

    /* ---- Features ---- */
    .feature-item      { padding: 0.9rem 1.25rem; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL  (max 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-title        { font-size: clamp(2.5rem, 22vw, 4.5rem); }
    .hero-subtitle     { letter-spacing: 0.18em; }
    .size-btn          { width: 34px; height: 34px; }
    .btn-add           { font-size: 0.875rem; }
    .product-name      { font-size: 1.4rem; }
    .social-card strong { font-size: 0.88rem; }
    .nav-links a       { font-size: 2.25rem; }
}
