@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/poppins-v24-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0)
    }
}
@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px)
    }
}
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
html {
    background: #000;
    scroll-behavior: smooth;
}
.montserrat-heading { font-family: 'Montserrat', sans-serif; }
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, .3);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, .4);
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid #ef4444;
    transition: all .3s ease;
    color: #ef4444;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
}
.btn-secondary:hover {
    background-color: #ef4444;
    border-color: #f87171;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, .3);
}
.btn-pulse {
    animation: pulse-white 2s infinite;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    margin: 10px auto 0;
    border-radius: 2px;
}
#servicios {
    background: linear-gradient(to bottom, #0a0a1a, #0f172a 30%, #0f172a 70%, #0f172a);
}
.service-card {
    background: rgba(10, 10, 26, .6);
    border: 1px solid rgba(65, 105, 225, .2);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    border-bottom: 4px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 450px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.service-card h3 {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}
.service-card .icon-container {
    margin: 0 auto 1.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(65, 105, 225, .3);
    flex-shrink: 0;
}
.service-card.active, .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-bottom-color: #4169E1;
    box-shadow: 0 20px 40px rgba(65, 105, 225, .15);
    background: rgba(65, 105, 225, .05);
}
.service-card.active .icon-container, .service-card:hover .icon-container {
    background: linear-gradient(135deg, #4169E1, #5a82e8);
    color: #fff;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(65, 105, 225, .4);
}
.service-card.hover-green.active, .service-card.hover-green:hover {
    border-bottom-color: #10b981;
    box-shadow: 0 25px 50px rgba(16, 185, 129, .2);
    background: rgba(16, 185, 129, .05);
}
.service-card.hover-green.active .icon-container, .service-card.hover-green:hover .icon-container {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 12px 30px rgba(16, 185, 129, .4);
}
.service-card.hover-red.active, .service-card.hover-red:hover {
    border-bottom-color: #ef4444;
    box-shadow: 0 25px 50px rgba(239, 68, 68, .2);
    background: rgba(239, 68, 68, .05);
}
.service-card.hover-red.active .icon-container, .service-card.hover-red:hover .icon-container {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 12px 30px rgba(239, 68, 68, .4);
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all .3s ease;
}
.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(239, 68, 68, .4);
}
.glass-effect {
    background: rgba(10, 10, 26, .6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(65, 105, 225, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}
.pattern-bg {
    background-color: #f8fafc;
    background-image: none;
}
#presencia {
    color: #334155;
}
#presencia h2 {
    color: #1e293b;
}
#presencia .bg-blue-500 {
    background-color: #4169E1 !important;
}
#presencia .bg-red-500 {
    background-color: #ef4444 !important;
}
#presencia .bg-blue-500:hover,
#presencia .bg-red-500:hover {
    transform: scale(1.05);
    transition: transform .3s ease;
}
.service-accordion {
    transition: all .3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(65, 105, 225, .2);
    border-bottom: 4px solid transparent;
}
.service-accordion.hover-red {
    border-color: rgba(239, 68, 68, .3);
}
.service-accordion.hover-red .accordion-icon {
    color: #ef4444;
}
.service-accordion:hover {
    transform: translateY(-2px);
    border-bottom-color: #4169E1;
    box-shadow: 0 15px 35px rgba(65, 105, 225, .3);
}
.service-accordion.hover-red:hover {
    border-bottom-color: #ef4444;
    box-shadow: 0 15px 35px rgba(239, 68, 68, .3);
}
.accordion-header {
    cursor: pointer;
}
.accordion-content {
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    max-height: 0;
}
.accordion-content.show {
    animation: slideDown .4s ease-out forwards;
}
.accordion-content.hide {
    animation: slideUp .4s ease-out forwards;
}
.accordion-icon {
    transition: transform .3s ease;
}
.accordion-icon.rotated {
    transform: rotate(180deg);
}
.scroller {
    max-width: 1200px;
    margin: auto;
}
.scroller__inner {
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
}
.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
}
.scroller[data-animated="true"]:hover .scroller__inner {
    animation-play-state: paused;
}
.step-item .step-icon {
    transition: all 0.3s ease !important;
}
.step-item:hover .step-icon {
    background-color: #ef4444 !important;
    color: white !important;
    transform: scale(1.1) !important;
}
.step-item:hover h3 {
    color: #ef4444 !important;
}
.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease-in-out, z-index 0.5s ease;
    z-index: 20;
}
.main-image:hover {
    transform: scale(1.05) rotate(1deg);
    z-index: 30 !important;
}
.faq-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.faq-card:hover {
    background-color: #f3f4f6;
}
.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #111827;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.accordion-button:hover {
    color: #1f2937;
}
.accordion-button.open .accordion-icon {
    transform: rotate(180deg);
}
.accordion-content.open {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}
.accordion-content p {
    color: #4b5563;
    margin: 0;
}
.glass-effect .accordion-content p {
    color: #ffffff;
}
.bg-pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}
@media (max-width: 1023px) {
    #content-column {
        order: 2;
        text-align: center;
        margin-top: 2rem;
    }
    #inicio .grid {
        gap: 2rem;
    }
    #image-column {
        order: 1;
    }
    .main-image-container {
        margin: auto;
    }
    .step-item {
        text-align: left;
    }
    .text-3xl {
        font-size: 2rem;
    }
}
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
    color: inherit;
    text-decoration: none;
}
.dark .product-card {
    background: #141414;
    border-color: #2a2a2a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.dark .product-card:hover {
    border-color: #ef4444;
    box-shadow: 0 16px 32px rgba(239, 68, 68, 0.08);
}
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-image img {
    transform: scale(1.08);
}
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
}
.product-badge-inline {
    padding: 0.2rem 0.6rem;
    border-radius: 0.375rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-gratis {
    background: #d1fae5;
    color: #047857;
}
.dark .badge-gratis {
    background: #022c22;
    color: #4ade80;
    border: 1px solid #065f46;
}
.badge-premium {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.dark .badge-premium {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.product-page-wrapper {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}
.dark .product-page-wrapper {
    background: #171717;
    border-color: #404040;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.product-vertical-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}
.dark .product-vertical-card {
    background: #141414;
    border-color: #2a2a2a;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.product-vertical-image {
    width: 100%;
    overflow: hidden;
    background: #f1f5f9;
}
.dark .product-vertical-image {
    background: #0a0a0a;
}
.product-vertical-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 480px;
}
.product-vertical-body {
    padding: 2rem 2.5rem 2.5rem;
}
@media (max-width: 640px) {
    .product-vertical-body {
        padding: 1.5rem;
    }
}
.product-vertical-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0;
}
.dark .product-vertical-header {
    border-color: #2a2a2a;
}
.product-info-unified {
    padding-top: 1.5rem;
}
.product-info-block {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.dark .product-info-block {
    border-color: #2a2a2a;
}
.product-info-block.product-info-block-last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.product-info-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 1rem;
}
.dark .product-info-heading {
    color: #9ca3af;
}
.product-info-heading i {
    font-size: 0.8rem;
    color: #9ca3af;
}
.dark .product-info-heading i {
    color: #525252;
}
.product-info-content {
    padding-left: 0;
}
.product-info-content p {
    text-align: justify;
}
.product-info-content .text-sm {
    text-align: justify;
}
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.product-detail-cell {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.product-detail-cell:nth-child(odd) {
    border-right: 1px solid #f1f5f9;
    padding-right: 1.25rem;
}
.product-detail-cell:nth-child(even) {
    padding-left: 1.25rem;
}
.product-detail-cell:nth-last-child(-n+2) {
    border-bottom: none;
}
.dark .product-detail-cell {
    border-color: #2a2a2a;
}
.product-detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
}
.product-detail-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}
.dark .product-detail-val {
    color: #e5e7eb;
}
.product-checkout-section {
    background: #f3f4f6;
    border: none;
    border-radius: 1rem;
    padding: 1.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.dark .product-checkout-section {
    background: #0f0f0f;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.product-checkout-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #374151;
    text-align: center;
    margin-bottom: 1.25rem;
}
.dark .product-checkout-title {
    color: #d1d5db;
}
.product-checkout-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 1.25rem 0 1rem;
}
.dark .product-checkout-divider {
    background: #2a2a2a;
}
.product-checkout-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.product-category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.category-gfx {
    color: #ea580c;
}
.category-styles {
    color: #7c3aed;
}
.category-audio {
    color: #0891b2;
}
.dark .category-gfx {
    color: #fb923c;
}
.dark .category-styles {
    color: #a78bfa;
}
.dark .category-audio {
    color: #22d3ee;
}
.product-action-area {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}
.dark .product-action-area {
    background: #1a1a1a;
    border-color: #404040;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.store-filter-bar {
    display: inline-flex;
    gap: 0;
    background: white;
    border-radius: 0.75rem;
    padding: 0.35rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}
.dark .store-filter-bar {
    background: #171717;
    border-color: #404040;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.store-tab {
    padding: 0.6rem 1.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: none;
    position: relative;
}
.store-tab:hover {
    color: #1f2937;
    background: #f3f4f6;
}
.store-tab.active {
    color: white;
    background: #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.dark .store-tab {
    color: #9ca3af;
}
.dark .store-tab:hover {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.05);
}
.dark .store-tab.active {
    color: white;
    background: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}
.store-price-tag {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.01em;
}
.dark .store-price-tag {
    color: #f3f4f6;
}
.store-price-free {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #d1fae5;
    color: #047857;
}
.dark .store-price-free {
    background: rgba(4, 120, 87, 0.35);
    color: #4ade80;
}
.store-price-free-sm {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #d1fae5;
    color: #047857;
}
.dark .store-price-free-sm {
    background: rgba(4, 120, 87, 0.35);
    color: #4ade80;
}
.product-card-top {
    padding: 0.85rem 1rem 0.6rem;
}
.product-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.badge-premium-product {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.dark .badge-premium-product {
    background: white;
    color: #1f2937;
    border-color: #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.store-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    width: fit-content;
}
.dark .store-breadcrumb {
    background: #171717;
    border-color: #404040;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.store-breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
}
.store-breadcrumb-link:hover {
    color: #ef4444;
}
.store-breadcrumb-link i {
    font-size: 0.75rem;
}
.dark .store-breadcrumb-link {
    color: #9ca3af;
}
.dark .store-breadcrumb-link:hover {
    color: #ef4444;
}
.store-breadcrumb-sep {
    font-size: 0.6rem;
    color: #d1d5db;
    margin: 0 0.75rem;
}
.dark .store-breadcrumb-sep {
    color: #525252;
}
.store-breadcrumb-current {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
}
.dark .store-breadcrumb-current {
    color: #f3f4f6;
}
.store-grid {
    position: relative;
}
.product-detail-image {
    overflow: hidden;
    background: #f1f5f9;
}
.dark .product-detail-image {
    background: #1a1a1a;
}
.product-detail-image img {
    width: 100%;
    display: block;
}
@media (min-width: 1024px) {
    .product-page-wrapper {
        overflow: clip;
    }
    .product-page-wrapper > .grid {
        align-items: start;
    }
    .product-detail-image {
        border-radius: 1.5rem 0 0 1.5rem;
        aspect-ratio: 1;
    }
    .product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.5rem 0 0 0;
    }
}
@media (max-width: 1023px) {
    .product-detail-image {
        border-radius: 1.5rem 1.5rem 0 0;
    }
    .product-detail-image img {
        height: auto;
    }
}
.product-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
    line-height: 1;
}
.dark .product-detail-price {
    color: #f3f4f6;
}
.product-detail-free {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #d1fae5;
    color: #047857;
}
.dark .product-detail-free {
    background: rgba(4, 120, 87, 0.4);
    color: #4ade80;
    border: 1px solid #065f46;
}
@media (max-width: 768px) {
    .service-accordion .accordion-header {
        padding: 1rem;
    }
    .service-accordion .accordion-header h3 {
        font-size: 1.125rem;
    }
    .service-accordion .accordion-content {
        padding: 0 1rem 1rem;
    }
    #presencia .grid {
        gap: 2rem;
    }
    #presencia h2 {
        font-size: 1.875rem;
    }
}
.product-unified-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
}
.dark .product-unified-card {
    background: #171717;
    border-color: #333;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.product-unified-tabs {
    display: flex;
    gap: 0;
    padding: 0.75rem 0.75rem 0;
    background: #f1f5f9;
    border-bottom: none;
}
.dark .product-unified-tabs {
    background: #0f0f0f;
}
.product-unified-tab {
    flex: 1;
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #9ca3af;
    background: transparent;
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}
.product-unified-tab i {
    font-size: 0.85rem;
}
.product-unified-tab:hover {
    color: #6b7280;
    background: rgba(255, 255, 255, 0.5);
}
.product-unified-tab.active {
    color: #1f2937;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
}
.product-unified-tab[data-panel="desc"].active {
    color: #1e40af;
}
.product-unified-tab[data-panel="desc"].active i {
    color: #3b82f6;
}
.product-unified-tab[data-panel="features"].active {
    color: #065f46;
}
.product-unified-tab[data-panel="features"].active i {
    color: #10b981;
}
.product-unified-tab[data-panel="details"].active {
    color: #5b21b6;
}
.product-unified-tab[data-panel="details"].active i {
    color: #8b5cf6;
}
.dark .product-unified-tab {
    color: #525252;
}
.dark .product-unified-tab:hover {
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.03);
}
.dark .product-unified-tab.active {
    color: #f3f4f6;
    background: #171717;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.dark .product-unified-tab[data-panel="desc"].active i {
    color: #60a5fa;
}
.dark .product-unified-tab[data-panel="features"].active i {
    color: #34d399;
}
.dark .product-unified-tab[data-panel="details"].active i {
    color: #a78bfa;
}
.product-unified-body {
    padding: 2rem;
}
.product-unified-panel {
    display: none;
}
.product-unified-panel.active {
    display: block;
    animation: unifiedFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes unifiedFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-unified-panel .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.product-unified-panel .detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.1rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.product-unified-panel .detail-item:nth-child(odd) {
    border-right: 1px solid #f1f5f9;
    padding-right: 1.25rem;
}
.product-unified-panel .detail-item:nth-child(even) {
    padding-left: 1.25rem;
}
.product-unified-panel .detail-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.dark .product-unified-panel .detail-item {
    border-color: #2a2a2a;
}
.product-unified-panel .detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
}
.product-unified-panel .detail-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}
.dark .product-unified-panel .detail-value {
    color: #e5e7eb;
}
.product-page-wrapper .buttons-horizontal-container {
    margin-top: 0;
}
.buttons-horizontal-container .trust-badges-row {
    margin-top: 0;
    width: 100%;
}
.download-section {
    background: #f3f4f6;
    border: none;
    border-radius: 1rem;
    padding: 1.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.dark .download-section {
    background: #0f0f0f;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.download-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #374151;
    text-align: center;
    margin-bottom: 1.25rem;
}
.dark .download-section-title {
    color: #d1d5db;
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}
.download-info {
    margin-top: 1.25rem;
}
.download-info-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 1rem;
}
.dark .download-info-divider {
    background: #2a2a2a;
}
.download-info-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.download-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    background: #e5e7eb;
    padding: 0.45rem 0.9rem;
    border-radius: 0.5rem;
}
.download-info-item i {
    font-size: 0.65rem;
    color: #6b7280;
}
.dark .download-info-item {
    color: #9ca3af;
    background: #262626;
}
.dark .download-info-item i {
    color: #9ca3af;
}
.download-info-sep {
    display: none;
}
.dark .download-info-sep {
    display: none;
}
.gracias-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}
.dark .gracias-card {
    background: #141414;
    border-color: #2a2a2a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.gracias-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.gracias-icon-wrap i {
    font-size: 4rem;
    color: #22c55e;
}
.dark .gracias-icon-wrap i {
    color: #4ade80;
}
.gracias-product-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
.dark .gracias-product-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}
.gracias-product-image img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.75rem;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .product-unified-tab {
        font-size: 0.7rem;
        padding: 0.85rem 0.75rem;
        gap: 0.35rem;
    }
    .product-unified-tab i {
        font-size: 0.75rem;
    }
    .product-details-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-cell:nth-child(odd) {
        border-right: none;
        padding-right: 0.75rem;
    }
    .product-detail-cell:nth-child(even) {
        padding-left: 0.75rem;
    }
    .product-detail-cell:nth-last-child(2) {
        border-bottom: 1px solid #f1f5f9;
    }
    .dark .product-detail-cell:nth-last-child(2) {
        border-bottom-color: #2a2a2a;
    }
    .download-buttons {
        flex-direction: column;
    }
    .btn-new {
        min-width: auto;
        width: 100%;
    }
    .product-checkout-badges {
        flex-direction: column;
        align-items: center;
    }
    .product-card-price-row {
        flex-wrap: nowrap;
    }
}
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}
.dark .trust-badges-row {
    border-color: #333333;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    letter-spacing: 0.02em;
}
.dark .trust-badge {
    background: #262626;
    color: #9ca3af;
}
.trust-badge i {
    font-size: 0.65rem;
    opacity: 0.7;
}

/* ============================================
   ESTILOS DEL BLOG
   ============================================ */

body {
    font-family: 'Inter', sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}
.dark ::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #a3a3a3;
    border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #404040;
}
::-webkit-scrollbar-thumb:hover {
    background: #737373;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #525252;
}
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.dark .header-scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.no-scroll {
    overflow: hidden;
}
[x-cloak] {
    display: none;
}
.hidden-content {
    display: none;
}
.prose p {
    text-align: justify;
    margin-bottom: 1.5rem;
}
.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
    color: #111827;
}
.dark .prose h2 {
    border-bottom-color: #262626;
    color: white;
}
.prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.dark .prose h3 {
    color: #e5e5e5;
}
.prose h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: #374151;
}
.dark .prose h4 {
    color: #d4d4d4;
}
.prose blockquote {
    border-left: 4px solid #6b7280;
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
    background-color: #f3f4f6;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #1f2937;
}
.dark .prose blockquote {
    background-color: #262626;
    border-color: #525252;
    color: #d4d4d4;
}
.prose blockquote footer {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: normal;
}
.dark .prose blockquote footer {
    color: #9ca3af;
}
mark {
    background-color: #fef08a;
    color: black;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    border-radius: 0.25rem;
}
.dark mark {
    background-color: #a16207;
    color: white;
}
.code-block-container {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #1e1e1e;
    border: 1px solid #e5e5e5;
}
.dark .code-block-container {
    border-color: #262626;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background-color: #2d2d2d;
    border-bottom: 1px solid #404040;
}
.code-lang {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.code-content {
    position: relative;
    padding: 1.5rem;
    overflow-x: auto;
}
.code-content pre {
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d4d4d4;
    white-space: pre;
}
.code-content pre.wrap-text {
    white-space: pre-wrap;
    word-break: break-word;
}
.copy-btn-text {
    background: transparent;
    border: 1px solid #525252;
    color: #d4d4d4;
    padding: 0.35rem 0.85rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.copy-btn-text:hover {
    background-color: #404040;
    color: white;
    border-color: #737373;
}
.copy-btn-text.copied {
    background-color: #22c55e;
    border-color: #22c55e;
    color: white;
}
.token-tag { color: #569cd6; }
.token-attr { color: #9cdcfe; }
.token-string { color: #ce9178; }
.token-comment { color: #6a9955; font-style: italic; }
.token-selector { color: #d7ba7d; }
.token-property { color: #9cdcfe; }
.token-number { color: #b5cea8; }
.token-keyword { color: #c586c0; }
.token-function { color: #dcdcaa; }
.token-operator { color: #d4d4d4; }
.token-plain { color: #d4d4d4; }
.buttons-horizontal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: #f3f4f6;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    width: 100%;
    margin: 2.5rem auto 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.dark .buttons-horizontal-container {
    background-color: #050505;
    border-color: #262626;
    box-shadow: none;
}
.buttons-horizontal-container h4 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dark .buttons-horizontal-container h4 {
    color: #a3a3a3;
    border-bottom-color: #262626;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}
.btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 30px;
    min-width: 180px;
    text-decoration: none !important;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1;
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-new:active {
    transform: translateY(-1px) scale(0.98);
}
.btn-new i {
    margin-right: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.btn-new:hover i {
    transform: scale(1.1);
}
.btn-mega {
    background: linear-gradient(145deg, #e52d27, #b31217);
}
.btn-mega:hover {
    background: linear-gradient(145deg, #ff413a, #c11f24);
}
.btn-mediafire {
    background: linear-gradient(145deg, #1a73e8, #1558b3);
}
.btn-mediafire:hover {
    background: linear-gradient(145deg, #2a8dff, #1c6ce0);
}
.btn-google-drive {
    background: linear-gradient(145deg, #fbbc05, #f29900);
    color: #202124 !important;
}
.btn-google-drive i {
    color: #202124;
}
.btn-google-drive:hover {
    background: linear-gradient(145deg, #ffca28, #f5a623);
}
.btn-general {
    background: linear-gradient(145deg, #171717, #000000);
    color: white !important;
}
.btn-general:hover {
    background: linear-gradient(145deg, #262626, #0a0a0a);
}
.dark .btn-general {
    background: linear-gradient(145deg, #ffffff, #e5e5e5);
    color: #000000 !important;
}
.dark .btn-general:hover {
    background: linear-gradient(145deg, #f5f5f5, #d4d4d4);
}
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}
.dark .table-wrapper {
    border-color: #262626;
}
.table-standard {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.table-standard th,
.table-standard td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}
.dark .table-standard th,
.dark .table-standard td {
    border-bottom-color: #262626;
    border-right-color: #262626;
}
.table-standard th:last-child,
.table-standard td:last-child {
    border-right: none;
}
.table-standard tbody tr:last-child td {
    border-bottom: none;
}
.table-cards {
    width: 100%;
    border-collapse: collapse;
}
.table-cards th,
.table-cards td {
    padding: 1rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #e5e5e5;
}
.dark .table-cards th,
.dark .table-cards td {
    border-color: #262626;
}
.table-cards .td-main {
    width: 60%;
}
.table-cards .card-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.table-cards .card-info img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e5e5e5;
}
.dark .table-cards .card-info img {
    background-color: #262626;
}
.table-cards .card-info .text-content {
    display: flex;
    flex-direction: column;
}
.table-cards .card-info strong {
    color: #171717;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.dark .table-cards .card-info strong {
    color: #ffffff;
}
.table-cards .card-info span {
    font-size: 0.9rem;
    color: #525252;
}
.dark .table-cards .card-info span {
    color: #a3a3a3;
}
.btn-action-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: white;
    color: #171717;
    border: 1px solid #d4d4d4;
}
.btn-action-view:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-1px);
}
.dark .btn-action-view {
    background-color: transparent;
    color: #e5e5e5;
    border: 1px solid #404040;
}
.dark .btn-action-view:hover {
    background-color: #e5e5e5;
    color: #000000;
    border-color: #e5e5e5;
}
.btn-action-view i {
    font-size: 0.8rem;
}
@media (max-width: 640px) {
    .table-cards thead {
        display: none;
    }
    .table-cards tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        overflow: hidden;
        background-color: white;
    }
    .dark .table-cards tr {
        border-color: #262626;
        background-color: #0a0a0a;
    }
    .table-cards td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border-bottom: 1px solid #f5f5f5;
        padding: 1rem;
    }
    .dark .table-cards td {
        border-bottom-color: #262626;
    }
    .table-cards td:last-child {
        border-bottom: none;
        background-color: #fafafa;
        justify-content: center;
    }
    .dark .table-cards td:last-child {
        background-color: #171717;
    }
    .table-cards td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #525252;
        font-size: 0.85rem;
        margin-right: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .dark .table-cards td::before {
        color: #a3a3a3;
    }
    .table-cards .td-main {
        width: 100%;
        display: block;
        text-align: left;
    }
    .table-cards .td-main::before {
        display: none;
    }
}
.image-gallery-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item-v2,
.gallery-item-single {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}
.dark .gallery-item-v2,
.dark .gallery-item-single {
    border-color: #262626;
}
.gallery-item-v2 img,
.gallery-item-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item-v2:hover img,
.gallery-item-single:hover img {
    transform: scale(1.1);
}
.gallery-item-single {
    border-radius: 0.5rem;
}
@media (max-width: 767px) {
    .image-gallery-v2 {
        grid-template-columns: 1fr;
    }
}
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}
.image-modal.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.image-modal.show .modal-image {
    transform: scale(1);
}
.modal-close,
.modal-nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    z-index: 1002;
}
.modal-close:hover {
    background: #ef4444;
}
.modal-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    z-index: 1001;
    opacity: 0.7;
}
.modal-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}
.modal-nav.prev {
    left: 10px;
}
.modal-nav.next {
    right: 10px;
}
.toTop {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    opacity: 0;
    transform: translateY(2rem);
    pointer-events: none;
}
.dark .toTop {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}
.toTop.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.toTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.toTop svg {
    stroke-width: 3px;
    stroke: currentColor;
    fill: none;
    width: 20px;
    height: 20px;
}
.sidebar-card {
    background-color: #ffffff;
}
.dark .sidebar-card {
    background-color: #171717;
}
.sidebar-title {
    color: #111827;
}
.dark .sidebar-title {
    color: #ffffff;
}
.sidebar-border-bottom {
    border-bottom: 1px solid #e5e5e5;
}
.dark .sidebar-border-bottom {
    border-bottom: 1px solid #262626;
}
.sidebar-input {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #111827;
}
.dark .sidebar-input {
    background-color: #262626;
    border-color: #404040;
    color: #ffffff;
}
.sidebar-text-sub {
    color: #4b5563;
}
.dark .sidebar-text-sub {
    color: #a3a3a3;
}
.sidebar-img-bg {
    background-color: #e5e5e5;
}
.dark .sidebar-img-bg {
    background-color: #262626;
}
.sidebar-category-bg {
    background-color: #f9fafb;
    color: #374151;
}
.dark .sidebar-category-bg {
    background-color: rgba(38, 38, 38, 0.5);
    color: #d1d5db;
}
.sidebar-category-count {
    background-color: #e5e5e5;
    color: #4b5563;
}
.dark .sidebar-category-count {
    background-color: #404040;
    color: #a3a3a3;
}
#social-widget-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}
#social-widget-container .social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
#social-widget-container .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#social-widget-container .social-link .icon {
    width: 20px;
    text-align: center;
    margin-right: 15px;
}
#social-widget-container .social-link .username {
    flex-grow: 1;
    text-align: left;
}
#social-widget-container .social-link .followers {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 15px;
    font-size: 0.9rem;
}
#social-widget-container .facebook { background-color: #1877F2; }
#social-widget-container .tiktok { background-color: #000000; }
#social-widget-container .youtube { background-color: #FF0000; }
#social-widget-container .payhip { background-color: #6a0dad; }