/* public/css/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Apply font to landing components */
.hero-dark,
.franja-info-card,
.benefits-section,
#como-funciona,
#precios,
.accordion-modern,
#contacto {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================================
   HERO — DARK DESIGN (new)
   ========================================================================= */

@keyframes heroAurora {
    0% {
        background-position: 0% 0%;
    }

    33% {
        background-position: 60% 40%;
    }

    66% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* =========================================================================
   HERO — LIGHT DESIGN (new)
   ========================================================================= */

@keyframes heroAurora {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    background: linear-gradient(135deg,
            #eff6ff 0%,
            #dbeafe 25%,
            #93c5fd 55%,
            #3b82f6 80%,
            #1d4ed8 100%);
    background-size: 200% 200%;
    animation: heroAurora 15s ease infinite;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M30 0L0 0 0 30' fill='none' stroke='%230d6efd' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

/* Animación flotante como fondo completo */
.hero-float-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* Gradiente claro sobre la animación para legibilidad del texto */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.75) 45%,
            rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    z-index: 0;
}


.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 48px 28px;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    display: none;
}

/* Logo */
.hero-logo {
    margin-bottom: 16px;
}

.hero-logo-img {
    max-height: 80px;
    max-width: 100%;
    height: auto;
    width: auto;
    margin-left: -17px;
}

.logo-dark-theme {
    display: none;
}

.logo-light-theme {
    display: block;
}

[data-theme="dark"] .logo-dark-theme {
    display: block !important;
}

[data-theme="dark"] .logo-light-theme {
    display: none !important;
}


/* Headline */
.hero-h1 {
    color: #0f172a;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.hero-h1 .text-brand {
    color: #0d6efd;
}

.hero-sub {
    color: #475569;
    font-size: 16px;
    margin: 0 0 18px;
    line-height: 1.65;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hbadge {
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 11px;
    font-weight: 500;
}

.hbadge-green {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 0.5px solid rgba(34, 197, 94, 0.25);
}

.hbadge-blue {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 0.5px solid rgba(13, 110, 253, 0.25);
}

.hbadge-purple {
    background: rgba(147, 51, 234, 0.1);
    color: #7c3aed;
    border: 0.5px solid rgba(147, 51, 234, 0.25);
}

.hbadge-orange {
    background: var(--hbadge-orange-bg);
    color: var(--hbadge-orange-color);
    border: 0.5px solid var(--hbadge-orange-border);
}

/* Tool Cards */
.hero-cards {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.hero-tool-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 16px;
    padding: 14px 14px 12px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-tool-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.08);
}

#htc1:hover {
    border-color: rgba(13, 110, 253, 0.3);
    background: rgba(255, 255, 255, 0.75);
}

#htc2:hover {
    border-color: rgba(255, 163, 72, 0.5);
    background: rgba(255, 255, 255, 0.75);
}

.htc-card-pro {
    border-color: rgba(255, 163, 72, 0.15);
    background: rgba(255, 250, 240, 0.5);
}


.htc-preview {
    background: #0a1828;
    border-radius: 8px;
    height: 110px;
    overflow: hidden;
    margin-bottom: 4px;
    position: relative;
}

#htc2 .htc-preview {
    background: #1a1008;
}

.htc-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.htc-title-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.htc-title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

.htc-plan-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}

.htc-plan-free {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.htc-plan-pro {
    background: rgba(255, 163, 72, 0.15);
    color: #d97706;
    border: 1px solid rgba(255, 163, 72, 0.35);
}

.htc-waste-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    pointer-events: none;
}

.htc-sub-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.htc-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 6px;
    transition: opacity 0.2s;
}

.htc-btn:hover {
    opacity: 0.88;
}

.htc-btn-blue {
    background: #1C6CAA;
    color: #fff;
}

.htc-btn-orange {
    background: rgba(255, 163, 72, 0.12);
    color: #d97706;
    border: 1px solid rgba(255, 163, 72, 0.3);
}

/* Video full width */
.video-full-section {
    width: 100%;
    line-height: 0;
    background: #000;
}

.video-full-section video {
    display: block;
    width: 100%;
}

/* Nesting canvas */
/* Hero floating panels canvas */
.hero-float-canvas {
    display: none;
}

/* Nesting demo — benefits section */
.nesting-demo-wrap {
    width: 100%;
    overflow: hidden;
}

.nesting-demo-canvas {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.nesting-demo-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.nds-badge {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.nds-badge-right {
    flex-direction: row-reverse;
}

.nds-label {
    font-size: 11px;
    color: rgba(74, 158, 255, 0.7);
    font-weight: 600;
}

.nds-val {
    font-size: 16px;
    font-weight: 700;
    color: rgba(30, 30, 50, 0.85);
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.nds-done {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.08);
    border: 0.5px solid rgba(74, 222, 128, 0.4);
    border-radius: 6px;
    padding: 5px 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nds-done--hidden {
    visibility: hidden;
    opacity: 0;
}

.hdb-title {
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.hdb-sub {
    color: rgba(22, 163, 74, 0.6);
    font-size: 9px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .hero-right {
        margin-top: 28px;
    }

    .hero-dark {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-h1 {
        font-size: 26px;
    }

    .hero-sub {
        font-size: 12px;
    }

    .hero-cards {
        flex-direction: column;
    }

    .htc-preview {
        height: 80px;
    }

    .hero-logo-img {
        max-height: 60px;
        margin-left: 0;
    }
}

/* Hero Section — legacy class kept for other pages */
.hero-section {
    position: relative;
}

/* .hero-section .overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.11) 100%);
} */

.ls-2 {
    letter-spacing: 2px;
}

/* Franja Informativa */
.franja-info {
    background: linear-gradient(135deg, #0d6efd 0%, #1a3a5c 100%);
}

/* === CONTENEDOR DE TARJETAS === */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 200px;
    /* Separación entre tarjetas en desktop */
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* === TARJETA INDIVIDUAL === */
.tool-card {
    /* Estructura */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    min-height: 320px;
    padding: 0.8rem 2rem 1.3rem;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.589);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);

    /* Bordes y sombras */
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 4px rgba(255, 255, 255, 0);

    /* Transiciones */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.763);
    border-color: #1C6CAA;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.25),
        inset 0 1px 4px rgba(255, 255, 255, 0);
}

/* Contenido de la tarjeta */
.tool-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

/* Iconos SIN círculo - Solo icono con color */
.tool-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.tool-card-icon i {
    font-size: 4rem;
    /* Icono más grande al no tener círculo */
    color: #0d6efd;
    /* Azul corporativo */
}

.tool-card-icon.info i {
    color: #ffa348ff;
    /* Color cyan para el editor */
}

.tool-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.tool-card p {
    text-align: center;
    color: #303030;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    flex: 1;
}

.tool-card-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #0d6efd;
    border-radius: 50px;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /* margin-top: auto; */
    background-color: #ffffff73;
}

.tool-card-button.info {
    border-color: #ffa348ff;
    color: #3f3f3f;
}

.tool-card:hover .tool-card-button {
    background: #0d6efd;
    color: white;
    transform: scale(1.05);
}

.tool-card:hover .tool-card-button.info {
    background: #ffa348ff;
    color: white;
}

.card-body img {
    width: 100%;
    height: 100%;
    max-height: fit-content;
    object-fit: contain;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .cards-container {
        gap: 30px;
        /* Separación reducida en móvil (en lugar de 200px) */
    }

    .tool-card {
        max-width: 100%;
        min-height: 350px;
        padding: 2rem 1.5rem;
    }

    .tool-card-icon i {
        font-size: 3rem;
        /* Icono más pequeño en móvil */
    }
}

/* section {
    margin-top: 50px;
} */

/* =========================================================================
   ENHANCEMENTS FOR LANDING PAGE (PRICING & FAQ)
   ========================================================================= */

/* SaaS Gradients & Colors */
.bg-gradient-dark-blue {
    background: linear-gradient(135deg, #070c19 0%, #0d1b3e 100%);
    color: white !important;
}

[data-theme="dark"] .benefits-section {
    background-color: #1a1d23 !important;
}

/* =========================================================================
   HOVER LIFT MICRO-INTERACTIONS
   ========================================================================= */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.hover-lift:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="dark"] .hover-lift:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* =========================================================================
   STEP CARD IMAGE ZOOM EFFECT
   ========================================================================= */
.step-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    margin-top: 15px;
    position: relative;
    border: 1px solid var(--border-color);
}

.step-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover .step-img-wrap img {
    transform: scale(1.06);
}

/* =========================================================================
   FRANJA INFORMATIVA (FULL WIDTH)
   ========================================================================= */
.franja-info {
    background: linear-gradient(135deg, #0d6efd 0%, #1e40af 100%);
    padding: 45px 0;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================================================
   TRUSTED BY SECTION
   ========================================================================= */
.trusted-by-section {
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

[data-theme="dark"] .trusted-by-section {
    border-top-color: rgba(255,255,255,0.07);
    border-bottom-color: rgba(255,255,255,0.07);
}

.trusted-logo-item {
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.trusted-logo-item:hover {
    opacity: 0.9;
    transform: scale(1.08);
}

[data-theme="dark"] .trusted-logo-item {
    opacity: 0.5;
}

[data-theme="dark"] .trusted-logo-item:hover {
    opacity: 0.95;
}

.trusted-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Modo claro (predefinido): grises oscuros visibles sobre fondo blanco */
.trusted-logo-img {
    width: 180px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1) brightness(0.65);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Hover: color original sin filtro */
.trusted-logo-img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}

/* Modo oscuro: aclarar los logos para fondos oscuros */
[data-theme="dark"] .trusted-logo-img {
    opacity: 0.75;
    filter: grayscale(1) brightness(1.6);
}

[data-theme="dark"] .trusted-logo-img:hover {
    filter: none;
    opacity: 1;
}

/* =========================================================================
   PRICING TABLES
   ========================================================================= */
.pricing-section {
    position: relative;
    overflow: hidden;
}

/* Base Pricing Card */
.pricing-card {
    background-color: var(--card-bg) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

/* Pro Card (Recommended Highlight) */
.pricing-card-pro {
    background-color: var(--card-bg) !important;
    border: 2px solid #0d6efd !important;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}

/* Reset pricing card text color overrides from dark-mode.css to allow light mode reading */
#precios .pricing-card-pro h1,
#precios .pricing-card-pro h3,
#precios .pricing-card-pro h4,
#precios .pricing-card-pro p,
#precios .pricing-card-pro span,
#precios .pricing-card-pro small,
#precios .pricing-card-pro li,
#precios .pricing-card-pro i {
    color: var(--text-primary) !important;
}

#precios .pricing-card-pro p.small.text-secondary,
#precios .pricing-card-pro span.price-val-subtext,
#precios .pricing-card-pro div.price-sub {
    color: var(--text-secondary) !important;
}

#precios .pricing-card-pro .price-extra-badge {
    color: white !important;
}

/* Ensure check icons stay green */
#precios .pricing-card-pro .pricing-features-list li i.bi-check-circle-fill {
    color: #22c55e !important;
}

#precios .pricing-card-pro .pricing-features-list li.disabled i {
    color: var(--text-muted) !important;
}

#precios .pricing-card-pro .pricing-features-list li.disabled span {
    color: var(--text-muted) !important;
}

/* Golden/Architect Card Highlight */
.pricing-card-architect {
    border: 2px solid #ffa348 !important;
    box-shadow: 0 10px 30px rgba(255, 163, 72, 0.08);
}

/* Badge naranja Architect — sobreescribe el verde genérico de .price-extra-badge */
.price-extra-badge.badge-launch-offer {
    background: var(--color-architect) !important;
    color: var(--color-architect-text) !important;
    font-weight: 700;
}

/* Botón Architect */
.btn-architect {
    background-color: var(--color-architect) !important;
    border-color: var(--color-architect) !important;
    color: var(--color-architect-text) !important;
    font-weight: 700;
}

.btn-architect:hover,
.btn-architect:focus {
    background-color: #e8923a !important;
    border-color: #e8923a !important;
    color: var(--color-architect-text) !important;
}

.btn-architect:active {
    background-color: #d4822e !important;
    border-color: #d4822e !important;
    color: var(--color-architect-text) !important;
}

/* Pricing Card Elements */
.pricing-badge {
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-badge-free {
    background: rgba(108, 117, 125, 0.1);
    color: var(--text-secondary);
}

.pricing-badge-pro {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.pricing-badge-architect {
    background: rgba(255, 163, 72, 0.1);
    color: #ffa348;
}

.price-box {
    margin: 20px 0;
    text-align: center;
}

.price-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.price-val-subtext {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-extra-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: #22c55e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    flex-grow: 1;
}

.pricing-features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-primary);
    text-align: left;
}

.pricing-features-list li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features-list li i {
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features-list li i.bi-check-circle-fill {
    color: #22c55e;
}

.pricing-features-list li i.bi-x-circle {
    color: var(--text-muted);
}

/* Modern Accordion */
.accordion-modern .accordion-item {
    border: none;
    background: var(--card-bg);
    border-radius: 12px !important;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

[data-theme="dark"] .accordion-modern .accordion-item {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.accordion-modern .accordion-button {
    background: var(--card-bg);
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: none;
    padding: 1.25rem;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: var(--bg-tertiary);
    color: #0d6efd;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-modern .accordion-body {
    background-color: var(--card-bg) !important;
    color: var(--text-primary) !important;
}

.accordion-modern .accordion-body strong {
    color: var(--text-primary) !important;
}

/* LOGO STRIP */
.logo-strip {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-strip:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Redes Sociales Footer */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    opacity: 1 !important;
    transform: translateY(-3px) scale(1.2);
    color: #3b82f6 !important;
    /* Azul suave */
}

.social-icon-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-disabled:hover {
    opacity: 0.8 !important;
    transform: translateY(-1px);
}

/* Accesibilidad: sin animaciones si el usuario las desactiva */
@media (prefers-reduced-motion: reduce) {
    .hero-float-canvas {
        max-width: 100%;
    }

    .htc-canvas {
        display: none;
    }
}

/* =========================================================================
   HERO — DARK THEME OVERRIDES
   ========================================================================= */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg,
            #142c6b 0%,
            #122550 18%,
            #163060 36%,
            #0e2244 50%,
            #131a50 65%,
            #0d1e3c 80%,
            #0e2661 100%) !important;
    background-size: 300% 300% !important;
    animation: heroAurora 18s ease infinite !important;
}

[data-theme="dark"] .hero-grid-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M30 0L0 0 0 30' fill='none' stroke='%234a9eff' stroke-width='0.5'/%3E%3C/svg%3E") !important;
    opacity: 0.035 !important;
}

[data-theme="dark"] .hero-float-bg {
    opacity: 0.32 !important;
}

[data-theme="dark"] .hero-section::after {
    background: linear-gradient(105deg,
            rgba(7, 12, 25, 0.92) 0%,
            rgba(7, 12, 25, 0.78) 45%,
            rgba(7, 12, 25, 0.25) 100%) !important;
}

[data-theme="dark"] .hero-logo-img {
    filter: none !important;
}

[data-theme="dark"] .hero-h1 {
    color: #fff !important;
}

[data-theme="dark"] .hero-h1 .text-brand {
    color: #4a9eff !important;
}

[data-theme="dark"] .hero-sub {
    color: rgba(255, 255, 255, 0.61) !important;
}

[data-theme="dark"] .hbadge-green {
    background: rgba(74, 222, 128, 0.1) !important;
    color: #4ade80 !important;
    border: 0.5px solid rgba(74, 222, 128, 0.25) !important;
}

[data-theme="dark"] .hbadge-blue {
    background: rgba(74, 158, 255, 0.1) !important;
    color: #60a5fa !important;
    border: 0.5px solid rgba(74, 158, 255, 0.25) !important;
}

[data-theme="dark"] .hbadge-purple {
    background: rgba(168, 85, 247, 0.1) !important;
    color: #c084fc !important;
    border: 0.5px solid rgba(192, 132, 252, 0.25) !important;
}

[data-theme="dark"] .hbadge-orange {
    background: var(--hbadge-orange-bg) !important;
    color: var(--hbadge-orange-color) !important;
    border: 0.5px solid var(--hbadge-orange-border) !important;
}

[data-theme="dark"] .hero-tool-card {
    background: rgba(80, 114, 177, 0.164) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

[data-theme="dark"] .hero-tool-card:hover {
    border-color: rgba(74, 158, 255, 0.5) !important;
    background: rgba(88, 145, 250, 0.164) !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] #htc2:hover {
    border-color: rgba(255, 163, 72, 0.55) !important;
    background: rgba(143, 101, 59, 0.322) !important;
}

[data-theme="dark"] .htc-card-pro {
    border-color: rgba(255, 163, 72, 0.25) !important;
    background: rgba(90, 66, 42, 0.322) !important;
}

[data-theme="dark"] .htc-title {
    color: #fff !important;
}

[data-theme="dark"] .htc-sub-text {
    color: rgba(255, 255, 255, 0.50) !important;
}

[data-theme="dark"] .htc-plan-free {
    background: rgba(74, 222, 128, 0.18) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(74, 222, 128, 0.35) !important;
}

[data-theme="dark"] .htc-plan-pro {
    background: rgba(255, 163, 72, 0.18) !important;
    color: #ffa348 !important;
    border: 1px solid rgba(255, 163, 72, 0.40) !important;
}

[data-theme="dark"] .htc-btn-orange {
    background: rgba(255, 163, 72, 0.15) !important;
    color: #ffa348 !important;
    border: 1px solid rgba(255, 163, 72, 0.35) !important;
}

[data-theme="dark"] .nds-val {
    color: rgba(255, 255, 255, 0.95) !important;
}