/**
 * BTEC Default Theme - CSS Principal
 * Diseño moderno, responsive, profesional
 */

:root {
    --primary: #0b2b4a;
    --primary-light: #0f3a63;
    --primary-dark: #081d33;
    --secondary: #5a8ec2;
    --accent: #e8a33d;
    --accent-light: #f0b95a;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --white: #ffffff;
    --offwhite: #f8f9fa;
    --gray-50: #fafbfc;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #6c757d;
    --gray-800: #495057;
    --gray-900: #212529;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--primary); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; width: 100%; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main); font-size: 0.9375rem; font-weight: 600;
    border: 2px solid transparent; border-radius: var(--radius);
    cursor: pointer; transition: all var(--transition);
    white-space: nowrap; text-decoration: none;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232, 163, 61, 0.4); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-light); }

/* Badges */
.badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.7rem; font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-featured { background: var(--accent); color: var(--primary); }
.badge-sale { background: var(--danger); color: var(--white); }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 2rem;
}

.logo {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--primary); font-weight: 800; font-size: 1.375rem;
    text-decoration: none; flex-shrink: 0;
}
.logo i { font-size: 1.75rem; color: var(--accent); }
.logo-text span { color: var(--accent); }
.logo-img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; gap: 0.25rem; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex; align-items: center; gap: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--gray-700); font-weight: 500; font-size: 0.9375rem;
    border-radius: var(--radius); transition: all var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--accent); background: rgba(232, 163, 61, 0.08); }
.main-nav > ul > li.has-children > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.625rem; }

/* Submenu */
.submenu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 0.5rem; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all var(--transition);
}
.main-nav li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a {
    display: block; padding: 0.5rem 1rem;
    color: var(--gray-700); font-size: 0.875rem;
    border-radius: var(--radius); transition: all var(--transition-fast);
}
.submenu li a:hover { background: var(--gray-100); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Mobile Menu */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--primary); position: relative; transition: all var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 2px; background: var(--primary); transition: all var(--transition); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.mobile-menu-overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 4rem; }
.hero-content { flex: 1; }
.hero-visual { flex: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem; border-radius: 999px;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.03em;
    margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge i { color: var(--accent); }

.hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--white); }
.hero h1 .highlight { color: var(--accent); position: relative; }
.hero-text { font-size: 1.125rem; opacity: 0.85; margin-bottom: 2rem; max-width: 540px; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.hero-actions .btn-primary:hover { background: var(--white); border-color: var(--white); }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; max-width: 400px; margin: 0 auto;
}
.hero-stats .stat {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
}
.hero-stats .stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.hero-stats .stat-label { font-size: 0.8125rem; opacity: 0.8; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.bg-light { background: var(--gray-50); }

.section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap;
}
.section-header h2 { margin-bottom: 0; }
.section-header p { color: var(--gray-600); margin-top: 0.5rem; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.product-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-image .placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; color: var(--gray-400); background: var(--gray-100); }
.product-image .badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.product-image .badge-sale { left: auto; right: 0.75rem; }

.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.product-info h3 a { color: var(--gray-900); }
.product-info h3 a:hover { color: var(--accent); }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.product-price .old-price { font-size: 0.875rem; color: var(--gray-500); text-decoration: line-through; margin-left: 0.5rem; font-weight: 400; }
.product-meta .stock { font-size: 0.8125rem; display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.product-meta .in-stock { color: var(--success); }
.product-meta .out-stock { color: var(--danger); }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2rem;
    text-align: center; transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.service-icon {
    width: 72px; height: 72px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(11, 43, 74, 0.08), rgba(232, 163, 61, 0.12));
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--primary); transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--accent); transform: scale(1.05); }

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }
.service-card p { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 1.25rem; line-height: 1.6; }

.service-features { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.service-features li { padding: 0.375rem 0; font-size: 0.875rem; color: var(--gray-700); display: flex; align-items: center; gap: 0.5rem; }
.service-features li i { color: var(--success); font-size: 0.75rem; }

.service-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.25rem; border-top: 1px solid var(--gray-200);
}
.service-price { font-weight: 700; color: var(--primary); font-size: 0.9375rem; }

/* ===== POSTS ===== */
.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.post-card .post-image { aspect-ratio: 16/9; overflow: hidden; }
.post-card .post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-image img { transform: scale(1.05); }

.post-content { padding: 1.5rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.8125rem; color: var(--gray-500); flex-wrap: wrap; }
.post-meta time { display: flex; align-items: center; gap: 0.375rem; }
.post-category { background: rgba(232, 163, 61, 0.12); color: var(--accent); padding: 0.25rem 0.75rem; border-radius: 999px; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; }
.post-read-time { display: flex; align-items: center; gap: 0.375rem; }
.post-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; line-height: 1.4; }
.post-card h3 a { color: var(--gray-900); }
.post-card h3 a:hover { color: var(--accent); }
.post-card p { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 1rem; }
.read-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.875rem; color: var(--accent);
}
.read-more i { transition: transform var(--transition); }
.read-more:hover i { transform: translateX(4px); }

/* Posts List (Blog) */
.posts-list { display: flex; flex-direction: column; gap: 2rem; }
.post-card-large { display: flex; gap: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.post-card-large:hover { box-shadow: var(--shadow-lg); }
.post-card-large .post-image { flex: 0 0 320px; }
.post-card-large .post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-large .post-content { flex: 1; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.post-card-large h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.post-card-large h2 a { color: var(--gray-900); }
.post-card-large h2 a:hover { color: var(--accent); }
.post-excerpt { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.7; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white); padding: 4rem 0 3rem; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { opacity: 0.85; font-size: 1.125rem; }
.page-header .breadcrumb { margin-bottom: 1rem; font-size: 0.8125rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.5rem; opacity: 0.5; }
.breadcrumb span { opacity: 0.6; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.product-gallery .main-image { border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-100); margin-bottom: 1rem; }
.product-gallery .main-image img { width: 100%; }
.product-gallery .main-image .placeholder { display: flex; align-items: center; justify-content: center; height: 400px; color: var(--gray-400); }
.product-gallery .thumbnails { display: flex; gap: 0.5rem; }
.product-gallery .thumb { width: 80px; height: 80px; border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); background: var(--gray-100); }
.product-gallery .thumb:hover, .product-gallery .thumb.active { border-color: var(--accent); }
.product-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-detail { padding-top: 1rem; }
.product-info-detail .product-meta { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.product-sku { font-family: var(--font-mono); font-size: 0.875rem; color: var(--gray-500); }
.product-price-detail { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.product-price-detail .price,
.product-price-detail .sale-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.product-price-detail .sale-price { color: var(--danger); }
.product-price-detail .original-price { font-size: 1.125rem; color: var(--gray-500); text-decoration: line-through; font-weight: 400; }
.product-price-detail .discount-badge { background: var(--danger); color: var(--white); padding: 0.375rem 0.75rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; }
.product-short-desc { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.7; }

.product-actions { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.quantity-selector { display: flex; align-items: center; gap: 0.75rem; }
.quantity-selector label { font-weight: 500; }
.quantity-input { display: flex; border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.quantity-input .qty-btn { width: 40px; height: 44px; background: var(--gray-100); border: none; font-size: 1.125rem; cursor: pointer; transition: background var(--transition); }
.quantity-input .qty-btn:hover { background: var(--gray-200); }
.quantity-input input { width: 60px; text-align: center; border: none; font-size: 1rem; font-weight: 600; }
.btn-add-cart { flex: 1; min-width: 200px; }

.product-stock { margin-bottom: 1.5rem; }
.product-stock .in-stock { color: var(--success); font-weight: 500; }
.product-stock .out-stock { color: var(--danger); font-weight: 500; }
.product-stock i { margin-right: 0.375rem; }

.product-meta-detail { border-top: 1px solid var(--gray-200); padding-top: 1.5rem; margin-bottom: 1.5rem; }
.product-meta-detail p { margin-bottom: 0.5rem; font-size: 0.9375rem; }

.product-share { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.product-share span { font-weight: 500; color: var(--gray-600); }
.product-share a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gray-100); color: var(--gray-700); transition: all var(--transition); }
.product-share a:hover { background: var(--primary); color: var(--white); }

/* Tabs */
.product-tabs { margin-top: 3rem; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); }
.tab-btn {
    padding: 1rem 1.5rem; background: none; border: none;
    border-bottom: 3px solid transparent; margin-bottom: -2px;
    font-weight: 600; color: var(--gray-500); cursor: pointer;
    transition: all var(--transition); font-size: 0.9375rem;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; padding: 2rem 0; line-height: 1.8; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }

.specs-table { width: 100%; }
.specs-table th, .specs-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-200); text-align: left; }
.specs-table th { width: 200px; font-weight: 600; color: var(--gray-600); }

/* ===== SERVICE DETAIL ===== */
.service-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }
.service-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.service-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.service-meta .service-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.service-text { line-height: 1.8; }
.service-text h3 { margin: 2rem 0 1rem; }

.service-features-full ul { list-style: none; }
.service-features-full li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9375rem; }
.service-features-full li i { color: var(--success); margin-top: 0.25rem; flex-shrink: 0; }

.service-sidebar .sidebar-widget { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.service-sidebar h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.service-cta-widget { background: var(--primary) !important; color: var(--white); }
.service-cta-widget h3 { color: var(--white); }
.service-cta-widget p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.service-cta-widget .btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.service-cta-widget .btn-primary:hover { background: var(--white); border-color: var(--white); }
.service-cta-widget .contact-info { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); }
.service-cta-widget .contact-info p { color: rgba(255,255,255,0.8); margin-bottom: 0.375rem; font-size: 0.875rem; }
.service-cta-widget .contact-info i { margin-right: 0.5rem; }

.related-services { list-style: none; }
.related-services li { margin-bottom: 0.5rem; }
.related-services a { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0.75rem; border-radius: var(--radius); color: var(--gray-700); transition: all var(--transition-fast); font-size: 0.875rem; }
.related-services a:hover { background: var(--gray-200); color: var(--accent); }
.related-services i { width: 20px; text-align: center; color: var(--accent); }

.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.875rem; color: var(--gray-700); }
.benefits-list i { color: var(--success); font-size: 0.75rem; }

/* ===== POST DETAIL ===== */
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.post-header-meta { text-align: left; max-width: 700px; margin: 0 auto; }
.post-categories { display: flex; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; }
.post-meta-detail { display: flex; gap: 1.5rem; font-size: 0.875rem; opacity: 0.8; flex-wrap: wrap; }
.post-meta-detail i { margin-right: 0.375rem; }

.post-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.post-featured-image img { width: 100%; }
.post-content-full { font-size: 1.0625rem; line-height: 1.85; }
.post-content-full h2 { margin: 2.5rem 0 1rem; }
.post-content-full h3 { margin: 2rem 0 0.75rem; }
.post-content-full p { margin-bottom: 1.25rem; }
.post-content-full img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content-full blockquote { border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem; margin: 1.5rem 0; background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--gray-700); }
.post-content-full code { background: var(--gray-100); padding: 0.25rem 0.5rem; border-radius: 4px; font-family: var(--font-mono); font-size: 0.875em; }
.post-content-full pre { background: var(--gray-900); color: #d4d4d4; padding: 1.5rem; border-radius: var(--radius); overflow-x: auto; margin: 1.5rem 0; }
.post-content-full pre code { background: none; color: inherit; padding: 0; }
.post-content-full ul, .post-content-full ol { margin: 1rem 0 1rem 1.5rem; }
.post-content-full li { margin-bottom: 0.5rem; list-style: disc; }
.post-content-full ol li { list-style: decimal; }

.post-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding: 2rem 0; margin-top: 2rem; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
.post-tags { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.post-tags .tag { background: var(--gray-100); padding: 0.375rem 0.75rem; border-radius: var(--radius); font-size: 0.8125rem; color: var(--gray-600); transition: all var(--transition-fast); }
.post-tags .tag:hover { background: var(--accent); color: var(--primary); }
.post-share { display: flex; align-items: center; gap: 0.5rem; }
.post-share span { font-weight: 500; color: var(--gray-600); }
.post-share a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gray-100); color: var(--gray-700); transition: all var(--transition); }
.post-share a:hover { background: var(--primary); color: var(--white); }

.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.post-navigation a { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: all var(--transition); }
.post-navigation a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.post-navigation a:hover small { color: rgba(255,255,255,0.7); }
.post-navigation .nav-next { text-align: right; justify-content: flex-end; }
.post-navigation small { display: block; font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.25rem; }

.post-sidebar .sidebar-widget { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.post-sidebar h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.recent-posts { list-style: none; }
.recent-posts li { margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.recent-posts li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-posts a { display: block; transition: all var(--transition-fast); }
.recent-posts a:hover .recent-title { color: var(--accent); }
.recent-posts .recent-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); margin-bottom: 0.5rem; }
.recent-posts .recent-title { display: block; font-weight: 500; font-size: 0.875rem; color: var(--gray-800); line-height: 1.4; }
.recent-posts .recent-date { font-size: 0.75rem; color: var(--gray-500); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-cloud a { background: var(--gray-100); padding: 0.375rem 0.75rem; border-radius: var(--radius); font-size: 0.8125rem; color: var(--gray-600); }
.tag-cloud a:hover { background: var(--accent); color: var(--primary); }

.newsletter-form input[type="email"] { width: 100%; padding: 0.625rem 1rem; border: 1px solid var(--gray-300); border-radius: var(--radius); margin-bottom: 0.75rem; font-size: 0.875rem; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent); }

/* ===== SIDEBAR ===== */
.products-layout, .blog-layout, .services-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; }
.products-sidebar, .blog-sidebar, .services-sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-widget { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 1rem; }

.category-list { list-style: none; }
.category-list li { margin-bottom: 0.25rem; }
.category-list a { display: block; padding: 0.5rem 0.75rem; color: var(--gray-700); font-size: 0.875rem; border-radius: var(--radius); transition: all var(--transition-fast); }
.category-list a:hover, .category-list a.active { background: var(--primary); color: var(--white); }

.price-filter .form-group { margin-bottom: 0.75rem; }
.price-filter label { font-size: 0.875rem; }
.price-filter input { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--gray-300); border-radius: var(--radius); margin-top: 0.375rem; }

.checkbox-list { list-style: none; }
.checkbox-list li { margin-bottom: 0.5rem; }
.checkbox-list label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }

/* Products Toolbar */
.products-toolbar, .products-list-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.results-count { font-size: 0.875rem; color: var(--gray-600); }
.sort-options { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.sort-options select { padding: 0.5rem 0.75rem; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 0.875rem; }

/* ===== PAGE CONTENT ===== */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h1 { margin-bottom: 1rem; }
.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.8; }
.page-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.page-content ul, .page-content ol { margin: 1rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; list-style: disc; }
.page-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
.contact-form-wrapper h2, .contact-info-wrapper h2 { margin-bottom: 1.5rem; }

.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; margin-bottom: 0.375rem; font-weight: 500; font-size: 0.9375rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300); border-radius: var(--radius);
    font-size: 0.9375rem; font-family: var(--font-main);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.15); }
.contact-form .error { display: block; color: var(--danger); font-size: 0.8125rem; margin-top: 0.375rem; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.contact-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: all var(--transition); }
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; background: var(--primary); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.contact-card h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.contact-map iframe { display: block; }

/* ===== SEARCH ===== */
.search-form-large { max-width: 700px; margin: 0 auto 3rem; }
.search-input-group { display: flex; gap: 0; margin-bottom: 1rem; }
.search-input-group input { flex: 1; padding: 1rem 1.25rem; border: 2px solid var(--gray-300); border-radius: var(--radius) 0 0 var(--radius); font-size: 1rem; }
.search-input-group input:focus { outline: none; border-color: var(--accent); }
.search-input-group .btn { border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.5rem; }
.search-filters { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.search-filters label { display: flex; align-items: center; gap: 0.375rem; cursor: pointer; font-size: 0.9375rem; }
.search-filters input[type="radio"] { accent-color: var(--accent); }

.search-section { margin-bottom: 3rem; }
.search-section h2 { margin-bottom: 1.5rem; font-size: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.search-section h2 i { color: var(--accent); }

.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 4rem; color: var(--gray-300); margin-bottom: 1rem; }
.empty-state h3 { color: var(--gray-700); margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-500); }

.search-suggestions { text-align: center; padding: 3rem; }
.search-suggestions h3 { margin-bottom: 1rem; }
.popular-searches { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.popular-searches a { background: var(--gray-100); padding: 0.5rem 1.25rem; border-radius: 999px; color: var(--gray-700); font-size: 0.875rem; transition: all var(--transition-fast); }
.popular-searches a:hover { background: var(--accent); color: var(--primary); }

.pages-list { list-style: none; }
.pages-list li { border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.pages-list a { display: block; }
.pages-list h3 { font-size: 1.125rem; margin-bottom: 0.375rem; color: var(--gray-900); }
.pages-list p { color: var(--gray-600); font-size: 0.9375rem; margin: 0; }
.pages-list a:hover h3 { color: var(--accent); }

/* ===== CTA ===== */
.section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white); text-align: center;
    position: relative; overflow: hidden;
}
.section-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.5rem, 4vw, 2.5rem); }
.cta-content p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.125rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-content .btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.cta-content .btn-primary:hover { background: var(--white); border-color: var(--white); }

/* ===== ALERTS ===== */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; display: flex; align-items: center; }
.alert-success { background: rgba(39, 174, 96, 0.1); color: var(--success); border: 1px solid rgba(39, 174, 96, 0.25); }
.alert-error { background: rgba(231, 76, 60, 0.1); color: var(--danger); border: 1px solid rgba(231, 76, 60, 0.25); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 0.375rem; justify-content: center; margin-top: 3rem; }
.pagination a {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 0.75rem;
    border: 1px solid var(--gray-300); border-radius: var(--radius);
    color: var(--gray-700); font-size: 0.875rem; font-weight: 500;
    transition: all var(--transition-fast);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination a.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.pagination .ellipsis { display: flex; align-items: center; padding: 0 0.5rem; color: var(--gray-500); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark); color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
}

.footer-about h3 { color: var(--white); margin-bottom: 1rem; }
.footer-about p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--accent); border-radius: 1px; }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: all var(--transition-fast); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact address { font-style: normal; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9375rem; }
.footer-contact i { color: var(--accent); margin-top: 0.25rem; flex-shrink: 0; width: 16px; text-align: center; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-links a:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }

.footer-bottom {
    margin-top: 3rem; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.875rem;
}
.footer-powered i { color: var(--danger); }

/* ===== ERROR PAGE ===== */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--gray-50); }
.error-container { text-align: center; padding: 2rem; }
.error-code { font-size: 8rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 1rem; font-family: var(--font-mono); opacity: 0.15; }
.error-content h1 { margin-bottom: 0.75rem; }
.error-content p { color: var(--gray-600); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.error-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.error-links { display: flex; gap: 1.5rem; justify-content: center; }
.error-links a { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-600); font-size: 0.9375rem; }
.error-links a:hover { color: var(--accent); }
.maintenance-icon { font-size: 4rem; color: var(--accent); margin-bottom: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.maintenance-progress { max-width: 400px; margin: 2rem auto; }
.maintenance-progress .progress-bar { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.maintenance-progress .progress-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 1s ease; }
.progress-text { text-align: center; margin-top: 0.75rem; font-weight: 600; color: var(--gray-600); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn 0.5s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-text { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { width: 100%; }
    .hero-stats { max-width: 100%; }

    .product-detail-layout { grid-template-columns: 1fr; }
    .service-detail-layout { grid-template-columns: 1fr; }
    .post-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .btn { display: none; }
    .mobile-menu-toggle { display: block; }

    .main-nav.open {
        display: flex; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column; padding: 1rem;
        z-index: 999; overflow-y: auto;
    }
    .main-nav.open > ul { flex-direction: column; width: 100%; }
    .main-nav.open > ul > li > a { padding: 1rem; font-size: 1.0625rem; }
    .main-nav.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; background: var(--gray-50); border: none; box-shadow: none; padding: 0.5rem 0 0.5rem 1rem; }

    .products-layout, .blog-layout, .services-layout { grid-template-columns: 1fr; }
    .products-sidebar, .blog-sidebar, .services-sidebar { position: static; order: -1; }

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .posts-grid { grid-template-columns: 1fr; }
    .post-card-large { flex-direction: column; }
    .post-card-large .post-image { flex: none; }
    .post-navigation { grid-template-columns: 1fr; }

    .contact-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .hero { padding: 4rem 0 3rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .section { padding: 3rem 0; }
    .hero-slider { height: 500px; }
    .slide-content { height: 500px; max-width: 100%; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .slider-arrow { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-slider { height: 420px; }
    .slide-content { height: 420px; padding: 0 1rem; }
    .slide-content h1 { font-size: 1.6rem; }
    .slide-content p { font-size: 0.9rem; }
    .slider-dots { bottom: 16px; }
    .product-actions { flex-direction: column; }
    .product-actions .btn-add-cart { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Hero Slider */
.video-embed { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-slider { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); height: 720px; overflow: hidden; background: var(--primary-dark); }
.slider-wrapper { position: relative; width: 100%; height: 100%; }

.slide { position: absolute; inset: 0; opacity: 0; z-index: 1; pointer-events: none; transition: none; }
.slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.slide.prev { opacity: 1; z-index: 2; }

.slide-bg { position: absolute; inset: -20px; background-size: cover; background-position: center; background-color: var(--primary); opacity: 0; transition: opacity 1.2s ease; }
.slide-bg.bg-active { opacity: 1; animation: kenBurns 8s ease-out forwards; }

@keyframes kenBurns {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,43,74,0.92) 0%, rgba(11,43,74,0.55) 50%, rgba(11,43,74,0.15) 100%); }

.slide-content { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; height: 720px; color: var(--white); max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.slide-content h1 { font-size: 3.25rem; font-weight: 800; margin-bottom: 1.25rem; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); opacity: 0; transform: translateY(40px); }
.slide.active .slide-content h1 { animation: slideUp 0.7s ease forwards 0.1s; }

.slide-content p { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; line-height: 1.7; opacity: 0; transform: translateY(30px); }
.slide.active .slide-content p { animation: slideUp 0.7s ease forwards 0.35s; }

.slide-content .btn { opacity: 0; transform: translateY(20px); }
.slide.active .slide-content .btn { animation: slideUp 0.7s ease forwards 0.55s; }
.slide-content .btn + .btn { margin-left: 1rem; }

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 54px; height: 54px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); background: rgba(11,43,74,0.4); color: var(--white); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; backdrop-filter: blur(8px); }
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.12); box-shadow: 0 4px 20px rgba(232,163,61,0.4); }
.slider-prev { left: 32px; }
.slider-next { right: 32px; }

.slider-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 14px; }
.slider-dot { width: 40px; height: 4px; border-radius: 2px; border: none; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.4s; padding: 0; position: relative; overflow: hidden; }
.slider-dot.active { background: rgba(255,255,255,0.3); width: 60px; }
.slider-dot.active::after { content: ''; position: absolute; inset: 0; background: var(--accent); border-radius: 2px; animation: dotProgress 5s linear forwards; }
@keyframes dotProgress { 0% { width: 0; } 100% { width: 100%; } }

.hero-slider:hover .slider-arrow { opacity: 1; }
.slider-arrow { opacity: 0.6; }

/* Light overlay - texto oscuro para fondos claros */
.hero-slider .overlay-light .slide-overlay { background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.4) 50%, rgba(0,0,0,0.05) 100%); }
.hero-slider .overlay-light .slide-content h1 { color: var(--primary); }
.hero-slider .overlay-light .slide-content p { color: var(--gray-700); }
.hero-slider .overlay-light .slide-content .btn-primary { background: var(--primary); border-color: var(--primary); color: var(--white); }
.hero-slider .overlay-light .slide-content .btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.hero-slider .overlay-light .slide-content .btn-outline { border-color: var(--primary); color: var(--primary); }
.hero-slider .overlay-light .slide-content .btn-outline:hover { background: var(--primary); color: var(--white); }
.hero-slider .overlay-light .slider-arrow { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.1); color: var(--primary); }
.hero-slider .overlay-light .slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.hero-slider .overlay-light .slider-dot { background: rgba(0,0,0,0.2); }
.hero-slider .overlay-light .slider-dot.active { background: rgba(0,0,0,0.3); }
.hero-slider .overlay-light .slider-dot.active::after { background: var(--primary); }