﻿/* ============================================
   WILDCAMPERS 2026 - PREMIUM DARK DESIGN
   Complete Rebuild - All Classes Supported
   ============================================ */

:root {
    --color-bg: #0a0b0a;
    --color-text: #FFFFFF;
    --color-gray: #B0B0B0;
    --color-light: #1a1d1b;
    --color-accent: #d4af37;
    --color-green: #1f3d2a;
    --color-header-bg: rgba(10, 11, 10, 0.95);
    --color-header-text: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);

    /* Compatibility Variables for Blog Articles */
    --gold: var(--color-accent);
    --forest: var(--color-accent);
    --stone: rgba(255, 255, 255, 0.1);
    --charcoal: #1a1d1b;
    --warm-white: rgba(255, 255, 255, 0.03);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --sage: #4a6741;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
}

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.25rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container,
.wc-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

@media (max-width: 768px) {

    .container,
    .wc-inner {
        padding: 0 1.5rem;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.wc-header,
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.wc-nav,
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.wc-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wc-nav__logo,
.logo {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--color-header-text);
    letter-spacing: -0.03em;
}

.wc-nav__logo img {
    height: 38px;
}

.wc-nav__menu,
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.wc-nav__menu li,
.nav-links li {
    display: inline-block;
}

.wc-nav__menu a,
.nav-links a {
    color: var(--color-header-text);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
}

.wc-nav__menu a::after,
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.wc-nav__menu a:hover::after,
.nav-links a:hover::after {
    width: 100%;
}

.wc-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e8c547 100%);
    color: #0a0b0a;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.wc-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.wc-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.wc-nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-header-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn,
.wc-btn,
.wc-btn--primary,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary,
.wc-btn--primary,
.wc-btn--accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #e8c547 100%);
    color: #0a0b0a;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover,
.wc-btn--primary:hover,
.wc-btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-outline,
.wc-btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline:hover,
.wc-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background: linear-gradient(135deg, rgba(10, 11, 10, 0.85) 0%, rgba(10, 11, 10, 0.7) 100%), url('images/hero-fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    padding: 0.625rem 1.25rem;
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-accent);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
    max-width: 560px;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-image-wrapper {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
    transform: scale(1.1);
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #0a0b0a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section,
.wc-section {
    padding: 6rem 0;
    position: relative;
}

.wc-section--gray {
    background: rgba(255, 255, 255, 0.02);
}

.wc-section--dark {
    background: var(--color-light);
}

.section-header,
.wc-section__header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-header.center,
.wc-section__header--center {
    text-align: center;
}

.wc-section__tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.wc-section__title {
    margin-bottom: 1rem;
}

.wc-section__desc {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    padding: 4rem 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-gray);
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid,
.wc-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature,
.wc-feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.feature:hover,
.wc-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    transform: translateY(-8px);
}

.feature-icon,
.wc-feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.wc-feature-card__icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent);
}

.feature h3,
.wc-feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.feature-content p,
.wc-feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #e8c547);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    color: #0a0b0a;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -3.5rem;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 4px solid var(--color-bg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--color-gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.premium-cta,
.wc-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(31, 61, 42, 0.1) 100%);
    padding: 6rem 0;
    text-align: center;
}

.wc-cta__box {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 700px;
    margin: 0 auto;
}

.wc-cta__box h2,
.wc-cta__box h3 {
    margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.wc-footer {
    background: var(--color-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.wc-footer__brand img {
    margin-bottom: 1rem;
}

.wc-footer__links h4,
.wc-footer__contact h4 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.wc-footer__links ul li {
    margin-bottom: 0.75rem;
}

.wc-footer__links a:hover {
    color: var(--color-accent);
}

.wc-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* ============================================
   PAGE HERO
   ============================================ */
.wc-page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    position: relative;
}

.wc-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.wc-page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wc-page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* ============================================
   BLOG & ARTICLES - ULTRA MINIMAL
   ============================================ */
.wc-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.wc-blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wc-blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.wc-blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid #e8e8e8;
}

.wc-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wc-blog-card:hover .wc-blog-card__image img {
    transform: scale(1.03);
}

.wc-blog-card__content {
    padding: 2rem;
}

.wc-blog-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 500;
}

.wc-blog-card__content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
}

.wc-blog-card__excerpt {
    color: #666;
    line-height: 1.6;
    font-size: 0.938rem;
}

/* Article Container */
.wc-section--gray {
    background: #fafafa;
}

.wc-about-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.wc-about-block {
    background: none;
    padding: 0;
    margin-bottom: 2rem;
}

/* Typography - ONLY Black/Gray */
.wc-about-block h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    font-family: var(--font-main);
    line-height: 1.3;
}

.wc-about-block h2:first-child {
    margin-top: 0;
}

.wc-about-block h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
    line-height: 1.4;
}

.wc-about-block p {
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 1.063rem;
    margin-bottom: 1.25rem;
    font-family: Georgia, 'Times New Roman', serif;
}

/* Remove ALL inline colors */
.wc-about-block div[style] {
    background: #fafafa !important;
    border: 1px solid #e8e8e8 !important;
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
    color: #4a4a4a !important;
}

.wc-about-block div[style] h3,
.wc-about-block div[style] h2 {
    color: #1a1a1a !important;
}

.wc-about-block div[style] p {
    color: #4a4a4a !important;
}

/* Clean Lists */
.wc-about-block ul,
.wc-about-block ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.wc-about-block ul {
    list-style-type: disc;
    list-style-position: outside;
}

.wc-about-block ol {
    list-style-type: decimal;
}

.wc-about-block li {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.wc-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    background: #f8f8f8;
    border-left: 3px solid #1a1a1a;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
}

.wc-check-list li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.wc-check-list li::before {
    content: '•';
    position: absolute;
    left: -0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Professional Tables */
.wc-about-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 0.938rem;
}

.wc-about-block table th {
    background: #f5f5f5;
    color: #1a1a1a;
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d0d0d0;
}

.wc-about-block table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e8e8e8;
    color: #4a4a4a;
}

.wc-about-block table tr:last-child td {
    border-bottom: none;
}

.wc-about-block table tr:hover {
    background: #fafafa;
}

/* Clean Blockquote */
.wc-about-block blockquote {
    background: #f8f8f8;
    border-left: 3px solid #1a1a1a;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #2a2a2a;
    font-size: 1.125rem;
}

/* Article Images */
.wc-article-hero {
    width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.wc-article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Related Articles */
.wc-related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.wc-related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.wc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wc-related-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wc-related-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wc-related-card__content {
    padding: 1.5rem;
}

.wc-related-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.wc-related-card p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .wc-about-content {
        padding: 2.5rem 1.5rem;
    }

    .wc-about-block h2 {
        font-size: 1.5rem;
    }

    .wc-about-block h3 {
        font-size: 1.25rem;
    }

    .wc-about-block p {
        font-size: 1rem;
    }
}

/* ============================================
   MODELOS PAGE
   ============================================ */
.wc-model__layout {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.wc-model__hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.wc-model__gallery-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-xl);
}

.wc-model__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wc-model__gallery-main:hover img {
    transform: scale(1.05);
}

.wc-model__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.wc-model__thumb {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.wc-model__thumb:hover,
.wc-model__thumb.active {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.wc-model__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-model__info-col h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wc-model__price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wc-price-current {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
}

.wc-price-old {
    text-decoration: line-through;
    color: var(--color-gray);
    font-size: 1.5rem;
}

.wc-model__specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.wc-spec-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.wc-spec-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.wc-spec-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.wc-spec-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wc-spec-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.25rem;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
@media (max-width: 768px) {
    .wc-nav__toggle {
        display: flex;
    }

    .wc-nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 11, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .wc-nav__menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateX(0);
    }

    .wc-nav__menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .wc-nav__menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .wc-nav__menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .wc-nav__menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .wc-nav__menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .wc-nav__menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .wc-nav__menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .wc-nav__menu.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .wc-nav__menu a {
        font-size: 1.5rem;
    }

    .wc-nav__cta {
        display: none;
    }

    .wc-nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .wc-nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .wc-nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .wc-model__hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wc-model__info-col {
        order: -1;
    }

    .wc-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.animate:nth-child(3) {
    animation-delay: 0.3s;
}

.animate:nth-child(4) {
    animation-delay: 0.4s;
}