/* ─────────────────────────────────────────
   css/main.css
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   VARIABLES — paleta, tipografía, espacios
───────────────────────────────────────── */
:root {
    --color-dark:     #2C2C2A;
    --color-gold:     #B8955A;
    --color-gold-dim: rgba(184, 149, 90, 0.6);
    --color-cream:    #F5F0E8;
    --color-bg-alt:   #EDEAE1;
    --color-muted:    #8A877E;
    --color-border:   #D9D5CB;
    --color-white:    #ffffff;

    --font-sans:    'DM Sans', sans-serif;
    --font-serif:   'DM Serif Display', serif;
    --font-display: "LINE Seed JP", sans-serif;
    --font-system:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --section-px:  6%;
    --radius-card: 24px;
}

/* ─────────────────────────────────────────
   RESET BASE
───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--color-cream);
    color: var(--color-dark);
    font-family: var(--font-sans);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    font-size: clamp(2.5rem, 6.5vw, 6rem);
    font-weight: 300;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1em;
    max-width: 90vw;
}

.apple-logo {
    display: inline-block;
    width: 1.2em;
    background-image: url('../img/apple.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    transform: translateY(-8%);
    margin-left: -0.15em;
    margin-right: -0.15em;
    margin-bottom: 0.2em;
}

.hero-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────
   REVEAL (scroll animation)
───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   TIPOGRAFÍA GLOBAL
───────────────────────────────────────── */
.eyebrow {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    max-width: 580px;
    color: var(--color-dark);
}

.sec-title em {
    font-style: italic;
}

.rule {
    width: 32px;
    height: 1px;
    background: #7f6841;
    margin: 20px 0 14px;
}

.sec-sub {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    max-width: 460px;
    line-height: 1.9;
    font-weight: 300;
}

.tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.tag-new  { color: var(--color-gold); }
.tag-used { color: #6A9B7A; }

/* ─────────────────────────────────────────
   BOTONES
───────────────────────────────────────── */
.btn-main {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 13px 34px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.22s;
    text-decoration: none;
}

.btn-main:hover {
    background: var(--color-gold);
}

.btn-main:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.btn-consultar {
    margin-top: auto;
    padding: 10px 25px;
    background-color: #0071e3;
    color: white;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.btn-consultar:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.btn-consultar:focus-visible {
    outline: 2px solid #0071e3;
    outline-offset: 3px;
}

.btn-reset {
    display: inline-block;
    margin-left: 20px;
    font-size: 11px;
    color: var(--color-muted);
    cursor: pointer;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    text-decoration: underline;
    vertical-align: middle;
    padding: 0;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-cream);
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-social:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.btn-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-social:nth-child(1) .btn-dot {
    background: #25D366;
    animation: pulse-wa 2s ease-in-out infinite;
}

.btn-social:nth-child(2) .btn-dot {
    background: #C13584;
    animation: pulse-ig 2s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);  opacity: 1; }
    50%  { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);  opacity: 0.7; }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);    opacity: 1; }
}

@keyframes pulse-ig {
    0%   { box-shadow: 0 0 0 0 rgba(193, 53, 132, 0.6);  opacity: 1; }
    50%  { box-shadow: 0 0 0 6px rgba(193, 53, 132, 0);  opacity: 0.7; }
    100% { box-shadow: 0 0 0 0 rgba(193, 53, 132, 0);    opacity: 1; }
}

/* ─────────────────────────────────────────
   SERVICIOS — fullscreen slider
───────────────────────────────────────── */
#servicios {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    background: var(--color-dark);
}

.svc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .85s ease;
}

.svc-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transition: filter .85s ease;
    filter: brightness(.38) saturate(.75);
}

.svc-slide.active .svc-bg {
    filter: brightness(.48) saturate(.85);
}

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(44, 44, 42, .88) 0%,
            rgba(44, 44, 42, .25) 50%,
            transparent 100%);
}

.svc-content {
    position: absolute;
    inset: 0;
    padding: 0 var(--section-px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(72px, 10vh, 120px);
}

.svc-content .eyebrow {
    font-size: 9px;
    letter-spacing: .55em;
    margin-bottom: 32px;
    color: rgba(184, 149, 90, .7);
}

.svc-content .sec-title {
    color: var(--color-cream);
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 1.04;
    max-width: 640px;
    letter-spacing: -.01em;
}

.svc-content .rule {
    margin: 32px 0 28px;
    width: 70px;
}

.svc-content .sec-sub {
    color: rgba(245, 240, 232, .38);
    font-size: 12px;
    letter-spacing: .12em;
    line-height: 2.1;
    max-width: 340px;
}

.svc-cta {
    margin-top: 40px;
    align-self: flex-start;
    letter-spacing: .38em;
}

.svc-content .eyebrow,
.svc-content .sec-title,
.svc-content .rule,
.svc-content .sec-sub,
.svc-content .svc-cta {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
}

.svc-slide.active .svc-content .eyebrow  { opacity: 1; transform: translateY(0); transition-delay: .20s; }
.svc-slide.active .svc-content .sec-title { opacity: 1; transform: translateY(0); transition-delay: .36s; }
.svc-slide.active .svc-content .rule     { opacity: 1; transform: translateY(0); transition-delay: .52s; }
.svc-slide.active .svc-content .sec-sub  { opacity: 1; transform: translateY(0); transition-delay: .64s; }
.svc-slide.active .svc-content .svc-cta  { opacity: 1; transform: translateY(0); transition-delay: .80s; }

.svc-nav {
    position: absolute;
    right: var(--section-px);
    bottom: clamp(72px, 10vh, 120px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 5;
}

.svc-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: .3;
    transition: opacity .3s;
    background: none;
    border: none;
    padding: 0;
}

.svc-nav-item:hover,
.svc-nav-item.active {
    opacity: 1;
}

.svc-nav-item:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.svc-nav-label {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--color-cream);
    font-weight: 300;
}

.svc-nav-item.active .svc-nav-label {
    color: var(--color-gold);
}

.svc-nav-bar {
    width: 20px;
    height: 1px;
    background: var(--color-border);
    transition: width .35s, background .35s;
}

.svc-nav-item.active .svc-nav-bar {
    width: 36px;
    background: var(--color-gold);
}

.svc-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: var(--color-gold);
    z-index: 5;
}

.svc-progress.run {
    transition: width 5.5s linear;
    width: 100%;
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

/* ─────────────────────────────────────────
   PRODUCTOS — Carrusel estilo Apple
───────────────────────────────────────── */
#productos {
    background: var(--color-white);
    padding: 96px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.productos-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 var(--section-px);
}

.productos-titulo {
    font-family: var(--font-system);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.slider-arrows {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .slider-arrows {
        display: flex;
    }
}

.slider-arrow {
    pointer-events: auto;
    background: rgba(241, 241, 241, .8);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: background .2s;
}

.slider-arrow:hover {
    background: var(--color-white);
}

.slider-arrow:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

#product-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 var(--section-px) 48px;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--section-px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .product-card {
        min-width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .product-card {
        min-width: calc(25% - 15px);
    }
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 32px;
    transition: transform .5s ease;
}

.product-card:hover .product-img-wrap {
    transform: scale(1.02);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    text-align: center;
}

.product-badge {
    color: #ea580c;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.product-info h3 {
    font-family: var(--font-system);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.product-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    padding: 0 16px;
}

/* ─────────────────────────────────────────
   WHY (section-why) — bento grid
───────────────────────────────────────── */
.section-why {
    background: radial-gradient(circle at center, #1a1a18 0%, #0a0a0a 100%);
    position: relative;
    padding: 96px var(--section-px);
    overflow: hidden;
}

.section-why-header {
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-large {
        grid-row: unset;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

.bento-item {
    background: #0f0f0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    background: #181816;
    border-color: rgba(184, 149, 90, 0.3);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-item:hover .bento-glow {
    opacity: 1;
}

.bento-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.bento-map-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 0;
}

.bento-map-img {
    position: absolute;
    right: 0;
    bottom: 6%;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 0;
    opacity: 0.95;
    mix-blend-mode: lighten;
    transform: rotate(2deg) translate(5%, 8%);
    transform-origin: bottom right;
}

.bento-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #0f0f0d 0%,
            #0f0f0d 25%,
            rgba(15, 15, 13, 0.7) 50%,
            rgba(15, 15, 13, 0.1) 100%);
    z-index: 1;
}

.bento-map-inner {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.cell-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.cell-body {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: .03em;
}

/* ─────────────────────────────────────────
   SELL v3 — selector compra/venta
───────────────────────────────────────── */
.sell-section {
    background: var(--color-cream);
}

.sell-selector-wrap {
    max-width: 100%;
    padding: 0 var(--section-px);
}

.sell-header {
    margin-bottom: 40px;
}

.sell-inner {
    max-width: 900px;
    margin: 0 auto;
}

.sell-inner--header {
    padding: 96px var(--section-px) 40px;
}

.sell-inner--flows {
    padding: 0 var(--section-px) 96px;
}

.sell-inner .sec-title {
    max-width: 100%;
    font-size: clamp(22px, 3vw, 48px);
}

.sell-inner .sec-sub {
    max-width: 100%;
}

.sell-selector-outer {
    padding: 0 var(--section-px) 64px;
}

.flow-back {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.flow-back:hover {
    color: var(--color-gold);
}

.flow-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 40px;
    line-height: 1.15;
}

.sell-selector {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.sel-btn {
    flex: 1;
    min-width: 260px;
    min-height: clamp(420px, 60vh, 680px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    background-size: cover;
    background-position: center;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sel-btn:hover {
    transform: scale(1.01);
}

.sel-btn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 15, 13, 0.92) 0%,
            rgba(15, 15, 13, 0.55) 50%,
            rgba(15, 15, 13, 0.25) 100%);
    transition: background 0.3s;
    z-index: 1;
}

.sel-btn:hover .sel-btn-overlay {
    background: linear-gradient(to top,
            rgba(15, 15, 13, 0.95) 0%,
            rgba(15, 15, 13, 0.65) 50%,
            rgba(15, 15, 13, 0.3) 100%);
}

.sel-btn-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 10px;
}

.sel-btn-tag {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.sel-btn-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.2;
}

.sel-btn-desc {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.5);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.sel-btn-arrow {
    font-size: 20px;
    color: rgba(184, 149, 90, 0.7);
    margin-top: 6px;
    transition: transform 0.2s;
}

.sel-btn:hover .sel-btn-arrow {
    transform: translateX(5px);
}

.sell-flow {
    display: none;
}

.sell-flow.active {
    display: block;
}

/* ─────────────────────────────────────────
   QUIZ (cotizador)
───────────────────────────────────────── */
.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}

.quiz-dot {
    width: 24px;
    height: 2px;
    background: var(--color-border);
    transition: background 0.35s;
}

.quiz-dot.done {
    background: var(--color-gold);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quiz-opt {
    padding: 11px 22px;
    border: 1px solid var(--color-border);
    background: transparent;
    font-size: 13px;
    font-weight: 300;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.quiz-opt:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.quiz-opt:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.quiz-opt.selected {
    background: var(--color-dark);
    color: var(--color-cream);
    border-color: var(--color-dark);
}

.quiz-result {
    display: none;
    margin-top: 8px;
}

.quiz-result.active {
    display: block;
}

.quiz-summary {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 300;
}

.quiz-summary strong {
    color: var(--color-dark);
    font-weight: 400;
}

/* Pasos comprar */
.buy-steps {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-bottom: 30px;
}

.buy-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 24px;
    padding-bottom: 32px;
    align-items: center;
}

.buy-step:last-child {
    padding-bottom: 0;
}

.step-line-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle-dark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    flex-shrink: 0;
    background: var(--color-white);
}

.step-connector-dark {
    width: 1px;
    flex: 1;
    background: var(--color-border);
    margin-top: 10px;
}

.step-text {
    padding-top: 7px;
}

.step-title-dark {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.step-body-dark {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.85;
}

.sell-note {
    font-size: 11px;
    color: var(--color-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 16px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────
   BATERÍA INPUT
───────────────────────────────────────── */
.bateria-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.bateria-input {
    width: 96px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    color: var(--color-dark);
    font-size: 14px;
}

.bateria-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.bateria-input.border-red-500 {
    border-color: #ef4444;
}

.bateria-pct {
    color: var(--color-muted);
}

.bateria-next {
    margin-top: 16px;
}

/* ─────────────────────────────────────────
   ACCESORIOS
───────────────────────────────────────── */
#accesorios {
    background: var(--color-cream);
    padding: 48px var(--section-px) 96px;
}

.grid-accesorios-mejorado {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(184, 149, 90, .15);
    border: 1px solid rgba(184, 149, 90, .15);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .grid-accesorios-mejorado {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tarjeta-accesorio {
    background: var(--color-white);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.tarjeta-accesorio:hover {
    background: #ffffffc4;
}

.tarjeta-accesorio .btn-main {
    font-size: 9px;
    padding: 10px 22px;
    letter-spacing: 0.25em;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
}

@media (min-width: 768px) {
    .tarjeta-accesorio {
        flex-direction: row;
        text-align: left;
        gap: 28px;
    }

    .tarjeta-accesorio .btn-main {
        margin-top: 0;
        width: auto;
    }
}

.icono-wrapper {
    width: 64px;
    height: 64px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tarjeta-accesorio:hover .icono-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.acc-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: rgba(184, 149, 90, .25);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .acc-divider {
        display: block;
    }
}

.acc-info {
    flex: 1;
}

.acc-name-new {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.acc-body-new {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* Legacy — no usadas en el HTML actual pero se conservan por precaución */
.acc-cell {
    padding: 32px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.25s;
}

@media (min-width: 1024px) {
    .acc-cell { border-bottom: none; }
}

.acc-cell:hover { background: var(--color-white); }
.acc-icon  { font-size: 26px; margin-bottom: 12px; display: block; }
.acc-name  { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 5px; }
.acc-body  { font-size: 12px; color: var(--color-muted); font-weight: 300; letter-spacing: 0.04em; }
.acc-num   { font-family: var(--font-serif); font-size: 32px; color: rgba(184,149,90,.35); font-weight: 400; flex-shrink: 0; letter-spacing: -0.02em; line-height: 1; }

/* ─────────────────────────────────────────
   TESTIMONIOS
───────────────────────────────────────── */
#testimonios {
    background: var(--color-bg-alt);
    padding: 48px var(--section-px) 96px;
}

.grid-resenas-mejorado {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 50px;
    width: 100%;
    align-items: stretch;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid-resenas-mejorado {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .grid-resenas-mejorado {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.tarjeta-resena-new {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: clamp(20px, 4.5vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    box-sizing: border-box;
}

.tarjeta-resena-new:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.stars-new {
    color: var(--color-gold);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.quote-new {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.cliente-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--color-cream);
}

.avatar-new {
    width: 42px;
    height: 42px;
    background: var(--color-dark);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Legacy testimonios */
.stars      { font-size: 11px; letter-spacing: 0.2em; color: var(--color-gold); margin-bottom: 16px; }
.test-quote { font-family: var(--font-serif); font-size: 15px; font-style: italic; line-height: 1.8; color: var(--color-dark); margin-bottom: 20px; }
.reviewer   { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--color-border); padding-top: 18px; }
.avatar     { width: 36px; height: 36px; border-radius: 50%; background: var(--color-dark); color: var(--color-cream); display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: 0.08em; flex-shrink: 0; }
.rev-name   { font-size: 13px; letter-spacing: 0.08em; color: var(--color-dark); }
.rev-loc    { font-size: 11px; color: var(--color-muted); font-weight: 300; margin-top: 2px; }

/* ─────────────────────────────────────────
   CONTACTO
───────────────────────────────────────── */
#contacto {
    background: var(--color-dark);
    padding: 120px var(--section-px);
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .contacto-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contacto-detalles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.contacto-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-dim);
    margin-bottom: 12px;
}

.contact-val {
    color: rgba(245, 240, 232, 0.8);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.mapa-frame {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    filter: grayscale(0.5) contrast(1.1) brightness(0.8);
    transition: filter 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mapa-frame:hover {
    filter: grayscale(0) contrast(1) brightness(1);
}

.label-mapa {
    margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
    background: #000;
    padding: 60px var(--section-px) 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-line {
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-dev {
    font-size: 10px;
    letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
   CARDS GENÉRICAS
───────────────────────────────────────── */
.card-cell {
    padding: 40px 32px;
    border-bottom: 1px solid var(--color-border);
    background: inherit;
    transition: background 0.25s;
}

.card-cell:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .card-cell {
        border-bottom: none;
    }
}

.card-cell:hover {
    background: var(--color-white);
}

@media (min-width: 1024px) {
    .card-cell-dark {
        border-bottom: none;
    }
}

/* ─────────────────────────────────────────
   UTILIDADES
───────────────────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.snap-center   { scroll-snap-align: center; }
.rounded-apple { border-radius: 2.5rem; }

/* ─────────────────────────────────────────
   RESPONSIVE MÓVIL (max 450px)
───────────────────────────────────────── */
@media (max-width: 450px) {
    .svc-content .sec-title {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.1;
        max-width: 100%;
    }

    .svc-content {
        padding-bottom: 160px;
    }

    .svc-nav {
        right: 4%;
        bottom: 80px;
    }

    .svc-nav-label {
        display: none;
    }

    .svc-nav-bar {
        width: 12px;
        height: 2px;
    }

    .svc-nav-item.active .svc-nav-bar {
        width: 24px;
    }

    .svc-content .sec-sub {
        font-size: 13px;
        line-height: 1.6;
        max-width: 280px;
        color: rgba(245, 240, 232, 0.5);
    }

    .hero-text {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}
