/* Utility Classes for Inline Style Migration */
.text-gold { color: var(--gold-main); }
.text-muted { color: var(--text-muted); }
.text-muted-alt { color: var(--text-muted-alt); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mb-small { margin-bottom: 0.5rem; }
.mb-medium { margin-bottom: 1rem; }
.mb-large { margin-bottom: 2rem; }
.me-xs { margin-right: 5px; }

.mt-small { margin-top: 1rem; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 4rem; }
.mt-xxl { margin-top: 6rem; }
.mt-huge { margin-top: 8rem; }
.py-huge { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.pt-medium { padding-top: 1rem; }
.pt-large { padding-top: 2rem; }

.gap-10 { gap: 10px; }
.gap-15 { gap: 1.5rem; }
.gap-20 { gap: 2rem; }

.flex-center { display: flex; justify-content: center; align-items: center; }
.text-center { text-align: center; }
.flex-column { display: flex; flex-direction: column; }
.flex-grow-1 { flex-grow: 1; }
.w-full { width: 100%; }

/* Component Classes */
.promo-link {
    color: #0d0f14;
    text-decoration: underline;
    font-weight: 800;
    white-space: nowrap;
}

.main-content-wrapper {
    margin: 4rem auto;
}

.faq-title-xl {
    font-size: 2.6rem;
}

.faq-lead {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-category-card {
    padding: 2rem 2.5rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.faq-icon-spacing {
    margin-right: 10px;
}

/* Typography and Structural Lead Classes */
.page-title-h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-top: 1rem;
    color: var(--text-main);
}

.section-title-h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--text-main);
    border-left: 5px solid var(--gold-main);
    padding-left: 15px;
    margin-bottom: 2rem;
}

.card-title-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-main);
}

.page-lead-p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1rem auto 3rem;
    line-height: 1.6;
}

/* TTS Specific and Semantic Utility Classes */
.tts-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.tts-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.bg-card { background: var(--card-bg); }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.border-gold { border: 1px solid var(--gold-main); }
.border-red-soft { border: 1px solid rgba(255, 50, 50, 0.2); }

.benefit-title {
    font-weight: 600;
    color: var(--gold-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glass-section-container {
    padding: 3rem;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    border-radius: 2rem;
}

/* Error Pages Styling */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 24px;
    position: relative;
    overflow: hidden;
}

.error-section .glass-section-container {
    position: relative;
    z-index: 10;
}

.error-bg-text {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    margin-bottom: 0;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.error-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem !important;
}

.error-message {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem !important;
    line-height: 1.6;
}

.badge-error {
    margin-bottom: 2rem !important;
}

.badge-error-500 {
    background: rgba(204, 51, 51, 0.1);
    color: #cc3333;
}

.border-error-top {
    border-top: 4px solid #cc3333 !important;
}

/* Original Content follows... */
:root {
    --bg-body: #fefcf8;
    --text-main: #1e1e2a;
    --text-muted: #3a3a44;
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.6);
    --card-shadow: rgba(0, 0, 0, 0.08);
    --gold-main: #c6a022;
    --gold-light: #e0bc4a;
    --btn-text: #ffffff;
    --btn-bg: linear-gradient(135deg, #1F2B3D 0%, #0F1722 100%);
    --header-bg: rgba(255, 253, 248, 0.26);
    --glass-blur: 16px;
    --border-highlight: rgba(212, 175, 55, 0.2);
    --badge-bg: rgba(0, 0, 0, 0.04);
}

/* Clases de Utilidad y Componentes Refactorizados */
.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-align-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-gold { color: var(--gold-main) !important; }
.text-center { text-align: center; }
.text-muted-alt { color: var(--text-muted); }

.margin-y-large { margin: 3rem 0; }
.margin-y-xl { margin: 6rem 0; }
.margin-top-xl { margin-top: 6rem !important; }
.margin-bottom-small { margin-bottom: 1rem; }

.disclaimer-box {
    background: var(--badge-bg);
    padding: 1.2rem;
    border-radius: 1.2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    border-left: 4px solid var(--gold-main);
    line-height: 1.5;
}

.card-highlight-top {
    padding: 2.5rem;
    background: var(--card-bg);
    border-top: 4px solid var(--gold-main);
}

/* LP Specific Utilities */
.text-white { color: #ffffff !important; }
.border-white { border-color: #ffffff !important; }
.badge-hero-white { color: #ffffff !important; border-color: rgba(255,255,255,0.4) !important; background: rgba(212, 175, 55, 0.2) !important; }
.mb-2rem { margin-bottom: 2rem !important; }
.mb-3rem { margin-bottom: 3rem !important; }
.mb-large { margin-bottom: 2.5rem !important; }
.max-w-800 { max-width: 800px !important; }
.max-w-850 { max-width: 850px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.text-shadow-hero { text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important; }
.text-shadow-gold { text-shadow: 0 2px 20px rgba(212, 175, 55, 0.6) !important; }
.bg-white { background-color: #ffffff !important; }
.bg-white-important { background-color: #ffffff !important; color: var(--gold-dark) !important; border: none !important; }
.fs-2rem { font-size: 2rem !important; }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100% !important; }
.d-block { display: block !important; }

/* LP Hero Components */
.hero-tagline-lp {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-p-lp {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    background: rgba(198, 160, 34, 0.05);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(198, 160, 34, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(198, 160, 34, 0.1);
    border-color: var(--gold-main);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

.hero-tagline {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 1.5rem 0 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.info-highlight-box {
    background: rgba(198, 160, 34, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(198, 160, 34, 0.2);
}

.info-highlight-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.badge-percent {
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.badge-percent-negative {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.badge-percent-positive {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}
.logo-img {
    height: 50px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

.header-btn {
    padding: 8px 20px;
}

[data-theme="dark"] .logo-img {
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(201, 162, 39, 0.35));
}

.p-4 { padding: 2rem !important; }
.p-5 { padding: 2.5rem !important; }

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    color: var(--text-main);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.6rem;
}

.hero-p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.matrix-card {
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    border-top: 3px solid var(--gold-main, #d4af37);
}

.matrix-card:hover {
    transform: translateY(-5px);
}

.matrix-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.matrix-suggestion {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
}

/* Matrix Accent Colors - Fixing "Purple" issue */
.accent-red { border-top: 4px solid #c0392b !important; }
.accent-blue { border-top: 4px solid #2980b9 !important; }
.accent-pink { border-top: 4px solid #d81b60 !important; }
.accent-yellow { border-top: 4px solid #f39c12 !important; }
.accent-green { border-top: 4px solid #27ae60 !important; }

.text-red { color: #c0392b !important; }
.text-blue { color: #2980b9 !important; }
.text-pink { color: #d81b60 !important; } /* High end Dark Rose/Pink */
.text-yellow { color: #f39c12 !important; }
.text-green { color: #27ae60 !important; }

.filter-btn-group {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-price-row {
    margin: 2rem 0;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.cert-item {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
}

.cert-icon {
    font-size: 2rem;
    color: var(--gold-main);
    margin-bottom: 0.8rem;
}

.income-card-highlight {
    border-top: 4px solid var(--gold-main);
}

/* Section for Mobile Sticky CTA updated below */

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* Matrix section spacing */

footer .stats-grid {
    text-align: left;
    margin-bottom: 3rem;
}

footer li i {
    color: var(--gold-main);
    width: 20px;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}


[data-theme="dark"] {
    --bg-body: #0d0f14;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --card-bg: rgba(18, 22, 31, 0.4);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-shadow: rgba(0, 0, 0, 0.3);
    --gold-main: #d4af37;
    --gold-light: #f5d061;
    --btn-text: #ffffff;
    --btn-bg: linear-gradient(135deg, #2b394d 0%, #1e293b 100%);
    --header-bg: rgba(13, 15, 20, 0.377);
    --glass-blur: 24px;
    --border-highlight: rgba(212, 175, 55, 0.4);
    --badge-bg: rgba(255, 255, 255, 0.06);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Efectos modernos y animaciones globales */
.fade-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px var(--card-shadow), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-card>* {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 45px -15px var(--card-shadow), 0 2px 4px rgba(0, 0, 0, 0.04);
    border-color: var(--border-highlight);
}

.glass-card h3 {
    color: var(--gold-main) !important;
}

.glass-card p {
    color: var(--text-muted) !important;
}

.glass-card ul,
.glass-card ol {
    color: var(--text-muted) !important;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-bg);
    color: var(--btn-text);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 14px var(--card-shadow);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-modern i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg) translateY(100%);
    transition: 0.6s;
}

.btn-modern:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 26px -8px var(--card-shadow);
}

.btn-modern:hover i {
    transform: translateX(4px);
}

.btn-gold {
    background: linear-gradient(95deg, var(--gold-main), var(--gold-light)) !important;
    color: #0f1722 !important;
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.25) !important;
}

.btn-outline {
    background: transparent !important;
    color: var(--text-main) !important;
    border: 1px solid var(--gold-main) !important;
    box-shadow: none !important;
}

.btn-gold:hover {
    background: linear-gradient(95deg, var(--gold-light), var(--gold-main)) !important;
    color: #0a0f18 !important;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(95deg, var(--gold-main), var(--gold-light));
    color: #0d0f14;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    position: relative;
    z-index: 101;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* header fijo elegante con logo real */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--card-border);
    padding: 0.8rem 0;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-header img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* hero */
.hero {
    position: relative;
    padding: 6rem 0 7rem 0;
    background-color: var(--bg-body);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(198, 160, 34, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(31, 43, 61, 0.06) 0%, transparent 50%);
    z-index: -1;
    transition: all 0.5s ease;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(58, 134, 225, 0.06) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, var(--bg-body) 100%);
    z-index: -1;
}

.badge-tech {
    background: var(--badge-bg);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    backdrop-filter: blur(4px);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--text-main);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero p {
    color: var(--text-muted) !important;
}

/* grid productos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.2rem;
    margin: 2.5rem 0;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 1.75rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px -15px var(--card-shadow);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 40px -20px var(--card-shadow);
    border-color: var(--border-highlight);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--badge-bg);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.6rem 1.8rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-main);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0 1.2rem;
}

.price-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
    margin: 1.2rem 0 1.5rem;
}

.price-pvp {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.price-offer {
    background: rgba(198, 160, 34, 0.08);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-main);
    border: 1px solid rgba(198, 160, 34, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .price-offer {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-main);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-discount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-top: 0.2rem;
}

.btn-buy-card {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    border-radius: 60px;
    padding: 14px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.income-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.income-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 1.8rem;
    padding: 2.2rem;
    flex: 1;
    min-width: 220px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.income-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-highlight);
    box-shadow: 0 20px 30px -10px var(--card-shadow);
}

.income-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.income-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.income-card i {
    color: var(--gold-main);
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.grid-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.grid-fit>div p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.4rem;
}

.section-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.section-row>div h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

footer {
    background-color: var(--card-bg);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
    margin-top: 5rem;
    border-top: 1px solid var(--card-border);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold-main);
}

footer p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Toggle Tema */
.theme-toggle {
    background: var(--badge-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 16px;
}

.theme-toggle:hover {
    background: var(--card-border);
    transform: scale(1.1) rotate(15deg);
}

@media (max-width: 780px) {
    .container {
        padding: 0 20px;
    }

    /* Compact promo banner on mobile */
    .promo-banner {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
        line-height: 1.3;
    }

    /* Auto-hide header on scroll down (mobile only) */
    .promo-banner.header-hidden {
        transform: translateY(-100%);
    }

    .header-sticky.header-hidden {
        transform: translateY(-100%);
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .hero-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }

    /* Compact header layout on mobile */
    .header-sticky {
        padding: 0.4rem 0;
    }

    .header-sticky .container {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .logo-header img {
        height: 36px;
    }

    .header-actions {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .header-btn {
        padding: 5px 10px;
        font-size: 0.72rem;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 0;
    }

    .two-column-grid,
    .grid-fit {
        grid-template-columns: 1fr !important;
    }

    .section-row {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .income-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Filtros */
.filter-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    border-color: var(--gold-main);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold-main);
    color: #0f1722;
    border-color: var(--gold-main);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Video Thumbnails & Overlays */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px var(--card-shadow), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 45px -15px var(--card-shadow), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.video-poster-img,
.video-thumbnail video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    border-radius: 2rem;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--gold-main);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.15);
}

/* Video Modal Additions */
.video-modal-overlay {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-container {
    width: 90%;
    max-width: 1100px;
    border-radius: 1.5rem;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.video-modal-overlay.open .video-modal-container {
    transform: scale(1);
}

.video-modal-container video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 1.4rem;
    outline: none;
}

/* Close button for video modal */
.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: var(--gold-main);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}


.modal-container {
    background: var(--bg-body);
    width: 90%;
    max-width: 900px;
    border-radius: 2rem;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    overflow: hidden;
}

.modal-overlay.open .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.modal-close:hover {
    background: var(--gold-main);
    color: #fff;
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-col {
    background: rgba(0, 0, 0, 0.02);
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-col {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.hover-overlay i,
.hover-icon-xl {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.product-img-wrapper:hover .hover-overlay {
    opacity: 1;
}

.product-img-wrapper:hover .hover-overlay i {
    transform: scale(1.05);
}

@media (max-width: 800px) {
    .modal-content-grid {
        grid-template-columns: 1fr;
    }

    .modal-image-col {
        height: 250px;
    }

    .modal-info-col {
        padding: 2rem 1.5rem;
    }
}

/* Carousel */
.carousel-track {
    position: relative;
    min-height: 200px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: static;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-border);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dot.active {
    background: var(--gold-main);
    transform: scale(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    /* Force override */
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b858;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        /* Elevated on mobile to dodge sticky cta */
        right: 20px;
        font-size: 32px;
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #c6a022, #e0bc4a, #c6a022);
    background-size: 200% auto;
    color: #0f1722;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: gradient-scroll 3s linear infinite;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

/* Mobile auto-hide header on scroll down */
@media (max-width: 780px) {
    .promo-banner.header-hidden {
        transform: translateY(-100%);
        opacity: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
    }

    .header-sticky {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-sticky.header-hidden {
        transform: translateY(-100%);
    }
}

@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0 10px;
}

.faq-item:hover {
    background: rgba(198, 160, 34, 0.03);
    border-bottom-color: var(--gold-main);
    transform: translateX(4px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--gold-main);
}

.faq-question i {
    color: var(--gold-main);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question.active + .faq-answer {
    max-height: 500px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mobile Sticky CTA unificado */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--card-border);
    padding: 12px 20px;
    display: none; /* Se activa vía JS o Media Query */
    justify-content: center;
    z-index: 1000; /* Asegurar que esté por encima de todo */
    transform: translateY(0);
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}

/* Isometric Patch Diagram */
.isometric-container {
    perspective: 1200px;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 2rem 0;
}

.isometric-patch {
    position: relative;
    width: 160px;
    height: 160px;
    margin-top: 110px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
}

.patch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.layer-1 {
    transform: translate(-30px, -30px) translateZ(90px);
    background: rgba(198, 160, 34, 0.2);
    border-color: rgba(198, 160, 34, 0.6);
}

.layer-2 {
    transform: translate(-10px, -10px) translateZ(60px);
    background: rgba(58, 163, 225, 0.2);
    border-color: rgba(58, 163, 225, 0.6);
}

.layer-3 {
    transform: translate(10px, 10px) translateZ(30px);
    background: rgba(124, 179, 66, 0.2);
    border-color: rgba(124, 179, 66, 0.6);
}

.layer-4 {
    transform: translate(30px, 30px) translateZ(0px);
    background: rgba(220, 220, 220, 0.2);
    border-color: rgba(220, 220, 220, 0.6);
}

.patch-layer:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-main) !important;
}

.layer-1:hover {
    background: rgba(198, 160, 34, 0.6);
}

.layer-2:hover {
    background: rgba(58, 163, 225, 0.6);
}

.layer-3:hover {
    background: rgba(124, 179, 66, 0.6);
}

.layer-4:hover {
    background: rgba(220, 220, 220, 0.6);
}

.layer-info-box {
    position: absolute;
    top: 0;
    width: 90%;
    left: 5%;
    text-align: center;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.3s;
    z-index: 10;
}

/* Clases específicas para sección Tecnología */
.tech-highlight-box {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    border-left: 4px solid var(--gold-main);
    margin-bottom: 3rem;
    background: var(--badge-bg);
    gap: 2rem;
    align-items: center;
    border-radius: 12px;
}

.tech-highlight-box > div:first-child {
    flex: 1 1 42%;
    min-width: 320px;
}

.tech-highlight-box > div:last-child {
    flex: 0 0 58%;
    min-width: 320px;
    max-width: 620px;
}

.tech-highlight-box img {
    width: 100%;
    max-width: 100%;
    display: block;
}

@media (max-width: 900px) {
    .tech-highlight-box {
        padding: 1.5rem;
    }

    .tech-highlight-box > div:first-child,
    .tech-highlight-box > div:last-child {
        flex: 1 1 100%;
    }
}

.tech-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.tech-list {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.tech-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.tech-list.list-compact li {
    margin-bottom: 0.5rem;
}

.tech-list i {
    color: var(--gold-main);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 4px; /* Manual alignment for icon with text line-height */
    min-width: 20px;
    display: flex;
    justify-content: center;
}

.comparison-box {
    background: rgba(198, 160, 34, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(198, 160, 34, 0.2);
}

.comparison-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.comparison-label {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.comparison-value {
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.comparison-desc {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    line-height: 1.5;
}

/* Cookie Banner Styles */
#cookieConsentContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateY(150%);
    transition: transform 0.5s ease-out;
    max-width: 1000px;
    margin: 0 auto;
}

#cookieConsentContainer.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1 1 600px;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--gold-main);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cookie-accept {
    background: var(--btn-bg);
    color: var(--btn-text);
}

.btn-cookie-accept:hover {
    background: var(--gold-main);
    color: #fff;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-cookie-reject:hover {
    background: rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    #cookieConsentContainer {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        padding: 1.2rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}

/* Testimonios Premium - Rediseño Total */
.testimonial-card-container {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 4rem auto 4rem;
    position: relative;
    overflow: hidden;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--gold-main);
    opacity: 0.2;
    margin-bottom: -1rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-box {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    width: 60%;
    margin: 0 auto;
}

.testimonial-name {
    display: block;
    font-weight: 800;
    color: var(--gold-main);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted-alt);
    margin-top: 0.3rem;
    display: block;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold-main);
    width: 25px;
    border-radius: 5px;
}


/* Global Utility Classes */
.gap-1 { gap: 1rem; }
.gap-08 { gap: 0.8rem; }
.fs-15 { font-size: 1.5rem; }
.p-0 { padding: 0; }
.m-0 { margin: 0; }
.list-none { list-style: none; }
.text-gold { color: var(--gold-main); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 800; }
.no-underline { text-decoration: none; }
.underline { text-decoration: underline; }
.nowrap { white-space: nowrap; }

/* Footer specific components */
.footer-nav-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    font-size: 1.5rem;
    color: var(--text-muted-alt);
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--gold-main);
}

.footer-legal-section {
    border-top: 1px solid var(--border-highlight);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3rem;
}

.footer-legal-links {
    margin-top: 1rem;
}

.footer-legal-link {
    color: var(--text-muted-alt);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--gold-main);
}

.copyright-text {
    margin-top: 1rem;
}

/* Common Section spacing */
.p-large { padding: 4rem 2rem; }
.rounded-shadow { border-radius: 2.5rem; box-shadow: 0 20px 40px rgba(198,160,34,0.1); }
.bg-card { background: var(--card-bg); }
.border-gold { border: 2px solid var(--border-highlight); }

/* FAQ specific */
.faq-title-xl { font-size: 3.5rem; }
.faq-category-title { font-size: 2.2rem; font-weight: 800; color: var(--text-main); }
.faq-lead { font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.mw-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Página Legal - Estilos unificados */
.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--gold-main);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content ul {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.cookie-table-container {
    overflow-x: auto;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cookie-table th, .cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-highlight);
    text-align: left;
}

.cookie-table th {
    background-color: var(--badge-bg);
    color: var(--text-main);
    font-weight: 700;
}