:root {
    --brand: #fb7305;
    --brand-dark: #e06505;
    --brand-light: #ff9d42;
    --brand-2: #ff9d42;
    --dark: #0f1216;
    --text: #23262b;
    --muted: #6b7280;
    --light: #f6f7fb;
    --white: #f5f5f5;
    --success: #16a34a;
    --soft: #f6f7fb;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--text);
}

.section-padding {
    padding: 35px 0;
}

.section-title {
    font-weight: 800;
}

    .section-title .brand {
        color: var(--brand);
    }

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
    }

.navbar.scrolled {
    background: rgba(15, 18, 22, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand span {
    letter-spacing: 0.3px;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 84px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

    .hero .hero-badges span {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0, 0, 0, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.22);
        padding: 0.45rem 0.8rem;
        border-radius: 999px;
        font-size: 0.9rem;
    }

.rounded-4 {
    border-radius: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        display: flex;
        align-items: center;
        margin: 0.55rem 0;
        color: #111;
    }

    .feature-list i {
        color: var(--brand);
        margin-right: 0.6rem;
    }

#faq {
    position: relative;
}

.faq-image-box img {
    border-radius: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}

    .faq-image-box img:hover {
        transform: scale(1.03);
        box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
    }

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
    overflow: hidden;
    transition: 0.3s;
}

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
    }

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    background: linear-gradient(90deg, #fff 0, #f0f0f0 100%);
    padding: 1.1rem 1.2rem;
}

    .accordion-button:not(.collapsed) {
        color: var(--brand);
        background: linear-gradient(90deg, rgba(251, 115, 5, 0.08) 0, rgba(255, 157, 66, 0.08) 100%);
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    }

    .accordion-button::after {
        filter: invert(48%) sepia(90%) saturate(500%) hue-rotate(350deg);
    }

.accordion-body {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.soft-divider {
    border: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
    transition: 0.3s ease;
}

    .benefit-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
    }

.benefit-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: 14px;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(251, 115, 5, 0.25);
    transition: 0.3s ease;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.1) rotate(-3deg);
}

.bg-light {
    background: #f9fafb !important;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    transition: 0.25s;
}

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
    }

.step-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: left;
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
    transition: 0.3s;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.bg-soft-testimonios {
    background: linear-gradient(180deg, #f6f7fb 0%, #f5f5f5 100%);
}

.testimonial {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 40px 32px;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(6px);
    position: relative;
    text-align: center;
    transition: 0.3s ease;
}

    .testimonial:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
    }

    .testimonial .quote {
        font-size: 1.15rem;
        font-style: italic;
        color: var(--dark);
        line-height: 1.7;
        position: relative;
        padding-left: 24px;
        padding-right: 24px;
    }

        .testimonial .quote::before {
            content: "“";
            font-size: 5rem;
            color: var(--brand);
            position: absolute;
            left: 10px;
            top: -24px;
            opacity: 0.1;
            z-index: 0;
        }

    .testimonial .author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }

        .testimonial .author img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .testimonial .author h6 {
            font-weight: 700;
            margin: 0;
            color: var(--dark);
        }

        .testimonial .author small {
            color: var(--muted);
            font-size: 0.85rem;
        }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--brand);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.2) saturate(1.2);
}

.price-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

    .price-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
    }

.price-header {
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.price-card .price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 5px 0 0;
    color: var(--text);
}

    .price-card .price-tag small {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--muted);
    }

.price-card.vip h3,
.text-brand {
    color: var(--brand);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .price-card ul li {
        margin: 0.55rem 0;
        font-size: 0.95rem;
        color: var(--text);
        display: flex;
        align-items: center;
    }

        .price-card ul li i {
            color: #16a34a;
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }

.price-card .btn {
    border-radius: 14px;
    padding: 0.8rem 1.3rem;
    font-weight: 600;
}

.price-card.vip {
    border: 2px solid var(--brand);
    box-shadow: 0 14px 32px rgba(251, 115, 5, 0.18);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: none;
}

    .btn-brand:hover {
        background: var(--brand-2);
        color: #fff;
    }

.bg-impacto {
    background: linear-gradient(180deg, #f9fafb 0%, #f5f5f5 100%);
}

.impact-panel {
    border: 1px solid rgba(251, 115, 5, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
    text-align: center;
    transition: 0.3s;
}

    .impact-panel h3 {
        font-size: 1.6rem;
    }

    .impact-panel img {
        max-height: 40px;
        object-fit: contain;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

        .impact-panel img:hover {
            opacity: 1;
        }

.trust-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
    text-align: center;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

    .trust-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(90deg, var(--brand), var(--brand-2));
    }

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(251, 115, 5, 0.25);
    transition: transform 0.3s;
}

.about-list i {
    color: var(--brand);
    margin-right: 0.6rem;
    font-size: 0.95rem;
    transition: transform 0.3s;
}

.about-list li:hover i {
    transform: scale(1.2);
}

.about-cta {
    margin-top: 1.6rem;
}

.about-image {
    position: relative;
    border-radius: 0.95rem;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}

    .about-image:hover {
        transform: scale(1.03);
        box-shadow: 0 16px 42px rgba(17, 24, 39, 0.15);
    }



body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

.navbar {
    transition: all 0.3s ease;
    padding: 0.95rem 0;
}

.nav-blur {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 18, 22, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0;
}

.navbar-brand {
    font-weight: 700;
}

    .navbar-brand span {
        color: var(--brand);
    }

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: var(--brand) !important;
    }

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
}

    .btn-primary:hover {
        background: #e06505;
        border-color: #e06505;
    }

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 84px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
    display: flex;
    align-items: center;
}

    .hero .display-4 {
        font-weight: 800;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero .lead {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
    }

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(60rem 20rem at 50% 0%, rgba(251, 115, 5, 0.15), transparent 60%);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.95rem;
    position: relative;
    text-align: center;
    color: var(--dark);
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: var(--brand);
        margin: 0.95rem auto 1.6rem;
        border-radius: 2px;
    }

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-section {
    padding: 70px 0;
    background-color: #fff;
}

.about-subtitle {
    font-size: 0.95rem;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-description {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0;
}

    .about-list li {
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        color: var(--text);
        margin: 0.65rem 0;
        border-bottom: 1px dashed #eee;
        padding-bottom: 0.5rem;
    }

        .about-list li:last-child {
            border-bottom: none;
        }

    .about-list i {
        color: var(--brand);
        margin-right: 0.6rem;
        font-size: 0.95rem;
    }

.about-image {
    border-radius: 0.95rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bg-soft {
    background: linear-gradient(180deg, #f5f5f5 0%, #f7f7fb 100%);
}

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: left;
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
    transition: 0.3s;
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
    }

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(-6deg) scale(1.05);
}

.benefit-card h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.bg-warning-subtle {
    background-color: #fff9db !important;
}

.stat {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

    .stat .num {
        font-weight: 800;
        font-size: 1.6rem;
        color: var(--brand);
    }

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .req-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        margin: 0.75rem 0;
    }

    .req-list i {
        color: #16a34a;
        margin-top: 0.1rem;
    }

.info-box {
    display: flex;
    gap: 0.8rem;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05);
}

    .info-box i {
        color: var(--brand);
        font-size: 1.1rem;
    }

.trust-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
    text-align: center;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .trust-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
    }

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(251, 115, 5, 0.25);
    transition: transform 0.3s;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(4deg);
}

.trust-card h6 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-card p {
    font-size: 0.91rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(251, 115, 5, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--brand);
    text-align: center;
}

    .pricing-card::before {
        content: "RECOMENDADO";
        position: absolute;
        top: 15px;
        right: -30px;
        background: var(--brand);
        color: white;
        padding: 0.3rem 2.5rem;
        font-size: 0.75rem;
        font-weight: 700;
        transform: rotate(45deg);
    }

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #eee;
}

.pricing-card-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

.pricing-card-description {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
}

.pricing-card-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.95rem;
}

.price-currency {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand);
    margin: 0 0.1rem;
}

.price-period {
    font-size: 1.1rem;
    color: var(--muted);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.commission-comparison {
    background: rgba(251, 115, 5, 0.08);
    border-radius: 12px;
    padding: 1.3rem;
    margin: 1.6rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.commission-standard,
.commission-vip {
    text-align: center;
}

.commission-value {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.commission-standard .commission-value {
    color: #dc3545;
}

.commission-vip .commission-value {
    color: var(--success);
}

.commission-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.commission-arrow {
    font-size: 1.6rem;
    color: var(--brand);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

    .pricing-card-features li {
        display: flex;
        align-items: center;
        margin-bottom: 0.95rem;
        color: var(--text);
        font-size: 0.95rem;
    }

        .pricing-card-features li i {
            color: var(--success);
            margin-right: 0.8rem;
            font-size: 1.3rem;
            width: 25px;
        }

.pricing-card-cta {
    text-align: center;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--brand);
    border: none;
    color: white;
}

    .btn-pricing:hover {
        background: var(--brand-dark);
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(251, 115, 5, 0.3);
        color: white;
    }

.support-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf8f3 0%, #fefefe 100%);
    position: relative;
}

.support-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--brand);
    text-align: center;
}

    .support-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 115, 5, 0.1);
    color: var(--brand);
    font-size: 1.6rem;
    margin: 0 auto 1.3rem;
}

.support-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.95rem;
    color: var(--dark);
}

.support-card-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

.support-availability {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    border-left: 4px solid var(--brand);
    text-align: center;
}

.availability-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: var(--dark);
}

.availability-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
}

.entrepreneur-message {
    background: rgba(251, 115, 5, 0.08);
    border-radius: 12px;
    padding: 1.3rem;
    margin-top: 1.6rem;
}

    .entrepreneur-message i {
        font-size: 2.5rem;
        color: var(--brand);
        margin-bottom: 0.95rem;
    }

    .entrepreneur-message h4 {
        font-weight: 700;
        margin-bottom: 0.95rem;
        color: var(--dark);
    }

    .entrepreneur-message p {
        color: var(--muted);
        margin-bottom: 0;
    }

.support-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.95rem;
    color: var(--dark);
}

.support-cta-text {
    color: var(--muted);
    margin-bottom: 1.6rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.footer {
    background: #0b0d11;
    font-size: 0.9rem;
}

.dev-link,
.footer-menu a {
    color: #c8ccd3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .dev-link:hover,
    .footer-menu a:hover {
        color: var(--brand);
    }

.footer-menu .highlight {
    color: var(--brand);
    font-weight: 600;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.footer-socials a {
    color: #c8ccd3;
    font-size: 0.95rem;
    transition: transform 0.2s, color 0.3s;
}

    .footer-socials a:hover {
        color: var(--brand);
        transform: translateY(-2px);
    }

/* Responsive Design */

@media (max-width: 992px) {
    .pricing-card {
        padding: 2.5rem;
    }

    .commission-comparison {
        flex-direction: column;
        gap: 1.3rem;
    }

    .commission-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero .display-4 {
        font-size: 2.5rem;
    }

    .hero-badges span {
        margin: 0.5rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .support-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-card::before {
        right: -35px;
        font-size: 0.7rem;
        padding: 0.3rem 1.6rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 1.6rem 1.3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-currency {
        font-size: 1.3rem;
    }

    .pricing-card-name {
        font-size: 1.7rem;
    }

    .pricing-card::before {
        right: -40px;
        padding: 0.3rem 1.6rem;
        font-size: 0.65rem;
    }

    .support-card {
        padding: 1.6rem;
    }

    .support-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

/*Estilos personales*/
.fade-up-style {
    font-size: 2.5rem;
    font-weight: 800
}

.style-confianza {
    font-size: 2.5rem;
    font-weight: 800
}


/* =========================================================
   Tripwin Landing Pro Max Claro - Hero a Footer
   Ajuste: menos negro, fuentes más controladas, premium cálido
   ========================================================= */
:root {
    --tw-orange: #fb7305;
    --tw-orange-dark: #d95f04;
    --tw-orange-soft: #fff0df;
    --tw-gold: #f4ba64;
    --tw-ink: #2a2926;
    --tw-ink-soft: #3f3a34;
    --tw-muted: #746c63;
    --tw-cream: #fffaf2;
    --tw-cream-2: #f7efe3;
    --tw-linen: #fbf4ea;
    --tw-mist: #f3f6f8;
    --tw-card: rgba(255, 255, 255, 0.86);
    --tw-line: rgba(99, 83, 66, 0.13);
    --tw-bronze: #5a4330;
    --tw-cocoa: #332b24;
    --tw-footer: #2f2a24;
    --tw-shadow: 0 24px 60px rgba(73, 58, 43, 0.13);
    --tw-shadow-hover: 0 32px 74px rgba(73, 58, 43, 0.19);
}

body {
    color: var(--tw-ink);
    background: var(--tw-cream);
}

/* NAVBAR: deja de sentirse negro pesado */
.nav-blur,
.navbar.scrolled {
    background: rgba(255, 250, 242, 0.90) !important;
    border-bottom: 1px solid rgba(99, 83, 66, 0.12);
    box-shadow: 0 16px 40px rgba(55, 45, 34, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar {
    padding: 0.78rem 0;
}

.navbar-brand span {
    color: var(--tw-orange) !important;
    letter-spacing: -0.02em;
}

.navbar-dark .navbar-nav .nav-link,
.nav-link {
    color: rgba(42, 41, 38, 0.78) !important;
    font-weight: 750;
    font-size: 0.94rem;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .nav-link:hover {
        color: var(--tw-orange) !important;
    }

.navbar-dark .navbar-toggler {
    border-color: rgba(42, 41, 38, 0.25);
}

.navbar-dark .navbar-toggler-icon {
    filter: invert(1);
}

.btn-primary,
.tw-btn-primary {
    border: 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--tw-orange), #ff9b42) !important;
    box-shadow: 0 14px 30px rgba(251, 115, 5, 0.26);
}

    .btn-primary:hover,
    .tw-btn-primary:hover {
        color: #fff !important;
        background: linear-gradient(135deg, var(--tw-orange-dark), var(--tw-orange)) !important;
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(251, 115, 5, 0.33);
    }

.btn-outline-light {
    color: var(--tw-ink) !important;
    border-color: rgba(42, 41, 38, 0.26) !important;
    background: rgba(255, 255, 255, 0.68);
}

    .btn-outline-light:hover {
        color: #fff !important;
        border-color: var(--tw-orange) !important;
        background: var(--tw-orange) !important;
    }

.tw-section {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.tw-heading {
    color: var(--tw-ink);
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.tw-heading-inverse {
    color: #fff8ee;
}

.tw-lead {
    color: var(--tw-muted);
    font-size: clamp(0.98rem, 1.18vw, 1.08rem);
    line-height: 1.75;
}

.tw-lead-inverse {
    color: rgba(255, 248, 238, 0.76);
}

.tw-section-center {
    max-width: 820px;
    margin: 0 auto 1.3rem;
    text-align: center;
}

.tw-kicker,
.tw-mini-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 850;
}

.tw-kicker {
    padding: 0.71rem 0.91rem;
}

.tw-kicker-soft,
.tw-kicker-warm {
    color: var(--tw-orange-dark);
    background: rgba(251, 115, 5, 0.09);
    border: 1px solid rgba(251, 115, 5, 0.16);
}

.tw-kicker-inverse {
    color: #fff3df;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.tw-mini-label {
    color: var(--tw-orange-dark);
    margin-bottom: 0.8rem;
}

.tw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.81rem 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: 0.25s ease;
}

.tw-btn-ghost,
.tw-btn-outline {
    color: var(--tw-ink) !important;
    border: 1px solid rgba(42, 41, 38, 0.18) !important;
    background: rgba(255, 255, 255, 0.70) !important;
    box-shadow: 0 14px 34px rgba(73, 58, 43, 0.08);
}

    .tw-btn-ghost:hover,
    .tw-btn-outline:hover {
        color: var(--tw-orange-dark) !important;
        border-color: rgba(251, 115, 5, 0.35) !important;
        transform: translateY(-2px);
    }

/* HERO */
.hero,
.tw-hero-pro {
    min-height: 100vh;
}

.tw-hero-pro {
    position: relative;
    display: flex;
    align-items: center;
    padding: 9.5rem 0 6.5rem;
    color: var(--tw-ink);
    isolation: isolate;
    background: linear-gradient(90deg, rgba(255, 250, 242, 0.95) 0%, rgba(255, 250, 242, 0.90) 44%, rgba(255, 246, 232, 0.58) 100%), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

    .tw-hero-pro::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 150px;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255, 250, 242, 0), var(--tw-cream));
        z-index: -1;
    }

.tw-hero-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(3px);
}

.tw-hero-shape-one {
    width: 310px;
    height: 310px;
    left: 5%;
    top: 18%;
    background: radial-gradient(circle, rgba(251, 115, 5, 0.22), transparent 68%);
}

.tw-hero-shape-two {
    width: 250px;
    height: 250px;
    right: 10%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(244, 186, 100, 0.26), transparent 70%);
}

.tw-hero-title {
    max-width: 820px;
    color: var(--tw-ink);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.tw-hero-copy {
    max-width: 720px;
    color: var(--tw-ink-soft);
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
    line-height: 1.75;
}

.tw-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

    .tw-hero-trust span {
        display: inline-flex;
        align-items: center;
        gap: 0.50rem;
        padding: 0.58rem 0.81rem;
        border-radius: 999px;
        color: var(--tw-ink-soft);
        background: rgba(255, 255, 255, 0.70);
        border: 1px solid rgba(99, 83, 66, 0.14);
        box-shadow: 0 10px 28px rgba(73, 58, 43, 0.08);
        font-size: 0.93rem;
    }

    .tw-hero-trust i {
        color: var(--tw-orange);
    }

.tw-hero-panel {
    position: relative;
    padding: clamp(1.3rem, 3vw, 1.9rem);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--tw-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.tw-panel-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tw-orange-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tw-hero-panel h2 {
    margin: 0.95rem 0 0.8rem;
    color: var(--tw-ink);
    font-size: clamp(1.55rem, 2.6vw, 2.3rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.tw-hero-panel p {
    color: var(--tw-muted);
    line-height: 1.65;
}

.tw-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1.35rem 0;
}

    .tw-hero-metrics div {
        padding: 0.95rem 0.8rem;
        border-radius: 18px;
        background: linear-gradient(180deg, #fff, #fff7ed);
        border: 1px solid rgba(251, 115, 5, 0.12);
    }

    .tw-hero-metrics strong,
    .tw-hero-metrics span {
        display: block;
    }

    .tw-hero-metrics strong {
        color: var(--tw-orange);
        font-size: 1.35rem;
        line-height: 1;
    }

    .tw-hero-metrics span {
        margin-top: 0.35rem;
        color: var(--tw-muted);
        font-size: 0.84rem;
        line-height: 1.35;
    }

.tw-mini-progress {
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.85);
    border: 1px solid rgba(99, 83, 66, 0.12);
    color: var(--tw-muted);
}

    .tw-mini-progress strong {
        color: var(--tw-orange-dark);
    }

.tw-progress-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(99, 83, 66, 0.13);
}

    .tw-progress-track span {
        display: block;
        width: 78%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--tw-orange), var(--tw-gold));
    }

/* SOBRE */
.tw-about-pro {
    background: radial-gradient(circle at 92% 10%, rgba(251, 115, 5, 0.10), transparent 30%), linear-gradient(180deg, var(--tw-cream) 0%, #fff 100%);
}

.tw-about-image-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--tw-shadow);
    border: 1px solid rgba(255, 255, 255, 0.82);
}

    .tw-about-image-wrap img {
        width: 100%;
        min-height: 420px;
        object-fit: cover;
        display: block;
    }

.tw-floating-note {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding: 0.95rem;
    border-radius: 20px;
    background: rgba(255, 250, 242, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 44px rgba(73, 58, 43, 0.15);
    backdrop-filter: blur(14px);
}

    .tw-floating-note i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        flex: 0 0 44px;
        border-radius: 15px;
        color: #fff;
        background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
    }

    .tw-floating-note strong,
    .tw-floating-note span {
        display: block;
    }

    .tw-floating-note strong {
        color: var(--tw-ink);
        line-height: 1.2;
    }

    .tw-floating-note span {
        color: var(--tw-muted);
        font-size: 0.9rem;
        margin-top: 0.18rem;
    }

.tw-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

    .tw-check-grid div {
        padding: 0.9rem 0.95rem;
        border-radius: 18px;
        color: var(--tw-ink-soft);
        background: #fff;
        border: 1px solid var(--tw-line);
        box-shadow: 0 14px 34px rgba(73, 58, 43, 0.06);
    }

    .tw-check-grid i {
        color: var(--tw-orange);
        margin-right: 0.45rem;
    }

/* BENEFICIOS */
.tw-benefits-pro {
    background: radial-gradient(circle at 10% 8%, rgba(251, 115, 5, 0.13), transparent 30%), radial-gradient(circle at 88% 6%, rgba(244, 186, 100, 0.17), transparent 28%), linear-gradient(180deg, #fff 0%, var(--tw-linen) 100%);
}

.tw-benefit-highlight,
.tw-benefit-card,
.tw-requirement-item,
.tw-verification-panel,
.tw-experience-card,
.tw-trust-item,
.tw-support-card,
.tw-support-commitment,
.tw-final-cta-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tw-benefit-highlight {
    padding: 1.55rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 236, 0.86));
    border: 1px solid rgba(251, 115, 5, 0.15);
    box-shadow: var(--tw-shadow);
}

    .tw-benefit-highlight h3 {
        color: var(--tw-ink);
        font-size: clamp(1.25rem, 1.9vw, 1.7rem);
        line-height: 1.12;
        font-weight: 850;
        letter-spacing: -0.035em;
        margin-bottom: 0.85rem;
    }

    .tw-benefit-highlight p {
        color: var(--tw-muted);
        line-height: 1.68;
        margin: 0;
    }

.tw-benefit-card {
    position: relative;
    min-height: 258px;
    padding: 1.45rem;
    border-radius: 26px;
    color: var(--tw-ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 83, 66, 0.12);
    box-shadow: 0 18px 46px rgba(73, 58, 43, 0.08);
    transition: 0.28s ease;
}

    .tw-benefit-card:hover {
        transform: translateY(-8px);
        border-color: rgba(251, 115, 5, 0.22);
        box-shadow: var(--tw-shadow-hover);
    }

.tw-card-number {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    color: rgba(251, 115, 5, 0.18);
    font-weight: 950;
    font-size: 1.35rem;
}

.tw-icon,
.tw-support-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
    box-shadow: 0 14px 30px rgba(251, 115, 5, 0.22);
}

.tw-benefit-card .tw-icon {
    margin-bottom: 1.25rem;
}

.tw-benefit-card h3,
.tw-experience-card h3,
.tw-trust-item h3,
.tw-support-card h3 {
    color: var(--tw-ink);
    font-size: 1.06rem;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.tw-benefit-card p,
.tw-experience-card p,
.tw-trust-item p,
.tw-support-card p {
    color: var(--tw-muted);
    font-size: 0.95rem;
    line-height: 1.64;
    margin: 0;
}

.tw-benefit-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 83, 66, 0.12);
    box-shadow: 0 14px 34px rgba(73, 58, 43, 0.06);
}

    .tw-benefit-strip div {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: var(--tw-ink-soft);
        font-size: 0.93rem;
    }

    .tw-benefit-strip i {
        color: var(--tw-orange);
    }

/* REQUISITOS */
.tw-requirements-pro {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 236, 0.82)), radial-gradient(circle at 95% 20%, rgba(251, 115, 5, 0.11), transparent 32%), var(--tw-mist);
}

.tw-requirement-list {
    display: grid;
    gap: 0.85rem;
}

.tw-requirement-item {
    display: flex;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 83, 66, 0.12);
    box-shadow: 0 12px 30px rgba(73, 58, 43, 0.06);
    transition: 0.25s ease;
}

    .tw-requirement-item:hover {
        transform: translateX(5px);
        box-shadow: var(--tw-shadow);
    }

    .tw-requirement-item > span {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: linear-gradient(135deg, #34a853, #8bdc91);
        box-shadow: 0 12px 28px rgba(52, 168, 83, 0.20);
    }

    .tw-requirement-item h3 {
        margin: 0 0 0.1rem;
        color: var(--tw-ink);
        font-size: 0.98rem;
        font-weight: 850;
    }

    .tw-requirement-item p {
        margin: 0;
        color: var(--tw-muted);
        line-height: 1.5;
        font-size: 0.91rem;
    }

.tw-verification-panel {
    padding: clamp(1.45rem, 4vw, 2.25rem);
    border-radius: 32px;
    background: radial-gradient(circle at 90% 4%, rgba(251, 115, 5, 0.18), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 246, 232, 0.86));
    border: 1px solid rgba(251, 115, 5, 0.14);
    box-shadow: var(--tw-shadow);
}

    .tw-verification-panel h3 {
        color: var(--tw-ink);
        font-size: clamp(1.35rem, 2.4vw, 1.6rem);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 1.25rem;
    }

.tw-timeline {
    display: grid;
    gap: 0.9rem;
}

.tw-timeline-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    position: relative;
}

    .tw-timeline-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 20px;
        top: 46px;
        width: 1px;
        height: calc(100% - 16px);
        background: linear-gradient(to bottom, rgba(251, 115, 5, 0.32), transparent);
    }

    .tw-timeline-step > span {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        font-weight: 900;
        background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
        box-shadow: 0 12px 28px rgba(251, 115, 5, 0.22);
    }

    .tw-timeline-step h4 {
        margin: 0 0 0.1rem;
        color: var(--tw-ink);
        font-size: 0.98rem;
        font-weight: 850;
    }

    .tw-timeline-step p {
        margin: 0;
        color: var(--tw-muted);
        line-height: 1.55;
        font-size: 0.93rem;
    }

.tw-panel-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    padding: 0.95rem;
    border-radius: 18px;
    color: var(--tw-muted);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(99, 83, 66, 0.11);
}

    .tw-panel-note i {
        color: var(--tw-orange);
        margin-top: 0.18rem;
    }

    .tw-panel-note p {
        margin: 0;
        line-height: 1.55;
    }

/* EXPERIENCIA */
.tw-experience-pro {
    background: radial-gradient(circle at 12% 8%, rgba(251, 115, 5, 0.10), transparent 30%), linear-gradient(180deg, #fff 0%, #f2f6f8 100%);
}

.tw-experience-card {
    height: 100%;
    padding: 1.3rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 83, 66, 0.11);
    box-shadow: 0 18px 46px rgba(73, 58, 43, 0.07);
    transition: 0.25s ease;
}

    .tw-experience-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--tw-shadow);
    }

.tw-experience-card-featured {
    background: linear-gradient(145deg, #fff, #fff1df);
    border-color: rgba(251, 115, 5, 0.18);
}

.tw-experience-card i {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.15rem;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
}

/* CONFIANZA */
.tw-trust-pro {
    background: radial-gradient(circle at 90% 10%, rgba(244, 186, 100, 0.13), transparent 30%), linear-gradient(180deg, #f2f6f8 0%, var(--tw-cream) 100%);
}

.tw-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.tw-trust-item {
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(99, 83, 66, 0.11);
    box-shadow: 0 18px 46px rgba(73, 58, 43, 0.07);
    transition: 0.25s ease;
}

    .tw-trust-item:hover {
        transform: translateY(-7px);
        box-shadow: var(--tw-shadow);
    }

    .tw-trust-item div {
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        margin-bottom: 0.95rem;
        border-radius: 17px;
        color: #fff;
        background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
        box-shadow: 0 12px 28px rgba(251, 115, 5, 0.18);
    }

/* PLAN VIP */
.tw-plan-pro {
    background: radial-gradient(circle at 78% 12%, rgba(255, 208, 130, 0.26), transparent 30%), radial-gradient(circle at 10% 30%, rgba(251, 115, 5, 0.20), transparent 32%), linear-gradient(135deg, #463526 0%, #5a4633 48%, #373834 100%);
}

.tw-plan-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

    .tw-plan-pills span {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.71rem 0.91rem;
        border-radius: 999px;
        color: rgba(255, 248, 238, 0.82);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tw-plan-pills i {
        color: #ffd18c;
    }

.tw-plan-card {
    position: relative;
    padding: clamp(1.6rem, 4vw, 2.35rem);
    border-radius: 32px;
    color: var(--tw-ink);
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 28px 72px rgba(39, 31, 24, 0.24);
}

.tw-plan-badge {
    display: inline-flex;
    padding: 0.51rem 0.81rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
}

.tw-plan-card-header {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(99, 83, 66, 0.13);
}

    .tw-plan-card-header p,
    .tw-plan-card-header span {
        color: var(--tw-muted);
        margin: 0;
    }

    .tw-plan-card-header h3 {
        color: var(--tw-ink);
        font-size: clamp(1.8rem, 3.8vw, 2.8rem);
        line-height: 0.95;
        font-weight: 950;
        letter-spacing: -0.06em;
        margin: 0.28rem 0 0.5rem;
    }

.tw-plan-features {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 0 0 1.35rem;
    list-style: none;
}

    .tw-plan-features li {
        display: flex;
        gap: 0.71rem;
        color: var(--tw-ink-soft);
        line-height: 1.5;
    }

    .tw-plan-features i {
        color: var(--tw-orange);
        margin-top: 0.23rem;
    }

.tw-plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    background: linear-gradient(135deg, var(--tw-orange), var(--tw-gold));
    box-shadow: 0 18px 42px rgba(251, 115, 5, 0.25);
    transition: 0.25s ease;
}

    .tw-plan-cta:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 24px 56px rgba(251, 115, 5, 0.32);
    }

/* SOPORTE */
.tw-support-pro {
    background: radial-gradient(circle at 10% 10%, rgba(251, 115, 5, 0.10), transparent 28%), linear-gradient(180deg, var(--tw-cream) 0%, #fff 100%);
}

.tw-support-card {
    padding: 1.45rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(99, 83, 66, 0.11);
    box-shadow: 0 18px 46px rgba(73, 58, 43, 0.07);
    transition: 0.25s ease;
}

    .tw-support-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--tw-shadow);
    }

.tw-support-icon {
    margin-bottom: 1.15rem;
}

.tw-support-card span {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    color: var(--tw-orange-dark);
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 0.95rem;
}

.tw-support-commitment {
    margin-top: 1.6rem;
    padding: clamp(1.3rem, 4vw, 2.4rem);
    border-radius: 32px;
    color: var(--tw-ink);
    background: radial-gradient(circle at 92% 8%, rgba(251, 115, 5, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 247, 236, 0.88));
    border: 1px solid rgba(251, 115, 5, 0.14);
    box-shadow: var(--tw-shadow);
}

    .tw-support-commitment h3 {
        color: var(--tw-ink);
        font-size: clamp(1.45rem, 2.5vw, 2.05rem);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.04em;
    }

    .tw-support-commitment p {
        color: var(--tw-muted);
        line-height: 1.65;
        margin-bottom: 0;
    }

.tw-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.78rem;
}

    .tw-commitment-grid div,
    .tw-hours-box {
        border-radius: 17px;
        background: rgba(255, 255, 255, 0.70);
        border: 1px solid rgba(99, 83, 66, 0.11);
    }

    .tw-commitment-grid div {
        padding: 0.9rem;
        color: var(--tw-ink-soft);
    }

    .tw-commitment-grid i,
    .tw-hours-box i {
        color: var(--tw-orange);
        margin-right: 0.5rem;
    }

.tw-hours-box {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-top: 0.9rem;
    padding: 0.9rem;
}

    .tw-hours-box h4 {
        margin: 0 0 0.1rem;
        color: var(--tw-ink);
        font-size: 0.98rem;
        font-weight: 850;
    }

    .tw-hours-box p {
        margin: 0;
    }

/* CTA FINAL */
.tw-final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: radial-gradient(circle at 50% 0%, rgba(251, 115, 5, 0.16), transparent 36%), linear-gradient(180deg, #fff 0%, var(--tw-linen) 100%);
}

.tw-final-cta-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.6rem, 5vw, 3.5rem);
    text-align: center;
    border-radius: 34px;
    color: var(--tw-ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 83, 66, 0.12);
    box-shadow: var(--tw-shadow);
}

    .tw-final-cta-card h2 {
        color: var(--tw-ink);
        font-size: clamp(1.9rem, 4vw, 3.35rem);
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -0.05em;
        margin: 0.9rem auto;
        max-width: 850px;
    }

    .tw-final-cta-card p {
        max-width: 680px;
        margin: 0 auto 1.7rem;
        color: var(--tw-muted);
        line-height: 1.7;
        font-size: 1.01rem;
    }

/* FOOTER */
.tw-footer {
    position: relative;
    padding: 4.1rem 0 1.35rem;
    background: radial-gradient(circle at 12% 0%, rgba(251, 115, 5, 0.16), transparent 30%), linear-gradient(180deg, #3a332b 0%, var(--tw-footer) 100%);
}

.tw-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

    .tw-footer-brand img {
        border-radius: 11px;
        box-shadow: 0 12px 30px rgba(251, 115, 5, 0.16);
    }

    .tw-footer-brand h2 {
        margin: 0;
        color: #fff8ee;
        font-size: 1.28rem;
        font-weight: 900;
        letter-spacing: -0.03em;
    }

    .tw-footer-brand p,
    .tw-footer-copy {
        color: rgba(255, 248, 238, 0.64);
        margin: 0;
    }

.tw-footer-copy {
    max-width: 470px;
    line-height: 1.7;
}

.tw-footer-title {
    color: #fff8ee;
    font-size: 0.81rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.95rem;
}

.tw-footer-links,
.tw-footer-contact {
    display: grid;
    gap: 0.71rem;
}

    .tw-footer-links a,
    .tw-footer-bottom a {
        color: rgba(255, 248, 238, 0.62);
        text-decoration: none;
        transition: 0.22s ease;
    }

        .tw-footer-links a:hover,
        .tw-footer-bottom a:hover {
            color: #ffd18c;
        }

    .tw-footer-contact span {
        display: flex;
        gap: 0.61rem;
        align-items: center;
        color: rgba(255, 248, 238, 0.62);
    }

    .tw-footer-contact i {
        color: #ffb36a;
    }

.tw-footer-socials {
    display: flex;
    gap: 0.71rem;
    margin-top: 1.25rem;
}

    .tw-footer-socials a {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff8ee;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.13);
        transition: 0.22s ease;
    }

        .tw-footer-socials a:hover {
            transform: translateY(-3px);
            background: rgba(251, 115, 5, 0.28);
        }

.tw-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 2.8rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 248, 238, 0.12);
    color: rgba(255, 248, 238, 0.52);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .tw-hero-pro {
        padding-top: 8rem;
        text-align: left;
    }

    .navbar-collapse {
        margin-top: 0.9rem;
        padding: 0.95rem;
        border-radius: 22px;
        background: rgba(255, 250, 242, 0.96);
        border: 1px solid rgba(99, 83, 66, 0.12);
    }

    .tw-trust-grid,
    .tw-commitment-grid,
    .tw-check-grid {
        grid-template-columns: 1fr;
    }

    .tw-benefit-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .tw-section {
        padding: 3.7rem 0;
    }

    .tw-hero-pro {
        min-height: auto;
        padding: 7.4rem 0 4rem;
    }

    .tw-hero-title,
    .tw-heading,
    .tw-final-cta-card h2 {
        letter-spacing: -0.035em;
    }

    .tw-hero-metrics {
        grid-template-columns: 1fr;
    }

    .tw-benefit-highlight,
    .tw-benefit-card,
    .tw-verification-panel,
    .tw-support-commitment,
    .tw-final-cta-card,
    .tw-plan-card {
        border-radius: 24px;
    }

    .tw-benefit-strip {
        justify-content: flex-start;
    }

    .tw-requirement-item {
        transform: none !important;
    }

    .tw-timeline-step {
        grid-template-columns: 38px 1fr;
    }

        .tw-timeline-step > span {
            width: 38px;
            height: 38px;
        }

        .tw-timeline-step:not(:last-child)::after {
            left: 18px;
            top: 42px;
        }
}

/* Topbar black on scroll */
.tw-navbar.sticky-top {
    background-color: #000 !important;
}


/* =========================================================
   Ajuste UX Pro Max - Hero balanceado, menos fondos claros
   Base: mantener footer original y topbar negro
   ========================================================= */
:root {
    --tw-deep: #0b0d10;
    --tw-deep-2: #16120f;
    --tw-warm-bg: #eee4d7;
    --tw-warm-bg-2: #e7dccd;
    --tw-warm-card: #fbf3e8;
    --tw-warm-card-2: #f4e8d8;
    --tw-border-warm: rgba(91, 70, 48, 0.18);
}

body {
    background: var(--tw-warm-bg);
}

/* Navbar negra fija y en scroll */
.nav-blur,
.navbar,
.navbar.scrolled {
    background: rgba(7, 9, 12, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar {
    padding: 0.62rem 0;
}

    .navbar.scrolled {
        padding: 0.52rem 0;
    }

.navbar-brand img {
    height: 40px;
}

.navbar-brand span {
    color: var(--tw-orange) !important;
}

.navbar-dark .navbar-nav .nav-link,
.nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.9rem;
    font-weight: 700;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .nav-link:hover {
        color: var(--tw-orange) !important;
    }

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.22);
}

.navbar-dark .navbar-toggler-icon {
    filter: none;
}

.btn-outline-light {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.36) !important;
    background: transparent !important;
}

    .btn-outline-light:hover {
        background: var(--tw-orange) !important;
        border-color: var(--tw-orange) !important;
    }

.btn-primary,
.tw-btn-primary {
    background: var(--tw-orange) !important;
    border-color: var(--tw-orange) !important;
    box-shadow: 0 12px 26px rgba(251, 115, 5, 0.24) !important;
}

    .btn-primary:hover,
    .tw-btn-primary:hover {
        background: var(--tw-orange-dark) !important;
        border-color: var(--tw-orange-dark) !important;
        box-shadow: 0 14px 32px rgba(251, 115, 5, 0.28) !important;
    }

.tw-section {
    padding: clamp(2.75rem, 5vw, 4.6rem) 0;
}

.tw-heading {
    font-size: clamp(1.45rem, 2.45vw, 2.35rem);
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.tw-lead {
    font-size: clamp(0.93rem, 1vw, 1rem);
    line-height: 1.65;
}

.tw-section-center {
    max-width: 760px;
}

.tw-kicker, .tw-mini-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.tw-kicker {
    padding: 0.48rem 0.68rem;
}

.tw-btn {
    padding: 0.68rem 1.05rem;
    font-size: 0.92rem;
}

.tw-btn-ghost,
.tw-btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    box-shadow: none !important;
}

.tw-about-pro .tw-btn-outline,
.tw-requirements-pro .tw-btn-outline,
.tw-final-cta .tw-btn-outline {
    color: var(--tw-ink) !important;
    background: rgba(255, 250, 242, 0.64) !important;
    border-color: var(--tw-border-warm) !important;
}

/* Hero: oscuro, equilibrado y sin bloque blanco invasivo */
.tw-hero-pro,
.tw-hero-pro-balanced {
    min-height: 720px;
    padding: 7.25rem 0 4.25rem;
    color: #fff7ee;
    background: linear-gradient(90deg, rgba(8, 10, 13, 0.92) 0%, rgba(22, 18, 14, 0.86) 48%, rgba(68, 39, 18, 0.58) 100%), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

    .tw-hero-pro::after {
        height: 90px;
        background: linear-gradient(to bottom, rgba(11, 13, 16, 0), var(--tw-warm-bg));
    }

.tw-hero-shape,
.tw-hero-shape-one,
.tw-hero-shape-two {
    display: none !important;
}

.tw-hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.tw-hero-title {
    max-width: 680px;
    color: #fff8ef;
    font-size: clamp(2rem, 3.55vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.048em;
    font-weight: 880;
}

.tw-hero-copy {
    max-width: 650px;
    color: rgba(255, 248, 239, 0.78);
    font-size: clamp(0.96rem, 1.08vw, 1.08rem);
    line-height: 1.68;
}

.tw-hero-actions .btn {
    min-height: 44px;
}

.tw-hero-trust {
    gap: 0.55rem;
    max-width: 680px;
}

    .tw-hero-trust span {
        padding: 0.46rem 0.68rem;
        color: rgba(255, 248, 239, 0.82);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
        font-size: 0.84rem;
    }

    .tw-hero-trust i {
        color: #ffae63;
    }

.tw-kicker-warm {
    color: #ffd0a3;
    background: rgba(251, 115, 5, 0.16);
    border-color: rgba(251, 115, 5, 0.25);
}

.tw-hero-showcase {
    max-width: 480px;
    margin-left: auto;
    padding: 1.2rem;
    border-radius: 26px;
    background: rgba(12, 14, 18, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tw-showcase-top,
.tw-showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: rgba(255, 248, 239, 0.78);
    font-size: 0.82rem;
}

    .tw-showcase-top span,
    .tw-showcase-footer span {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
    }

    .tw-showcase-top strong {
        color: var(--tw-orange);
    }

.tw-showcase-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0;
    min-height: 210px;
    padding: 1.15rem;
    border-radius: 22px;
    background: linear-gradient(0deg, rgba(8, 10, 13, 0.72), rgba(8, 10, 13, 0.16)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat;
}

    .tw-showcase-main small {
        display: block;
        color: #ffb36a;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 850;
        font-size: 0.68rem;
        margin-bottom: 0.45rem;
    }

    .tw-showcase-main h2 {
        max-width: 300px;
        margin: 0;
        color: #fff8ef;
        font-size: clamp(1.25rem, 2.1vw, 1.65rem);
        line-height: 1.12;
        letter-spacing: -0.035em;
        font-weight: 850;
    }

    .tw-showcase-main > i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        flex: 0 0 44px;
        border-radius: 14px;
        color: #fff;
        background: var(--tw-orange);
    }

.tw-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

    .tw-showcase-grid div {
        padding: 0.8rem 0.7rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .tw-showcase-grid strong,
    .tw-showcase-grid span {
        display: block;
    }

    .tw-showcase-grid strong {
        color: #ffae63;
        font-size: 1rem;
        line-height: 1;
    }

    .tw-showcase-grid span {
        margin-top: 0.35rem;
        color: rgba(255, 248, 239, 0.72);
        font-size: 0.76rem;
        line-height: 1.28;
    }

.tw-showcase-footer {
    justify-content: flex-start;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .tw-showcase-footer i {
        color: var(--tw-orange);
    }

/* Menos blanco invasivo: alternancia cálida y sólida */
.tw-about-pro {
    background: var(--tw-warm-bg);
}

.tw-benefits-pro {
    background: #e9ddce;
}

.tw-requirements-pro {
    background: #eee6dc;
}

.tw-experience-pro {
    background: #e7edf0;
}

.tw-trust-pro {
    background: #e8dfd3;
}

.tw-support-pro {
    background: #efe5d8;
}

.tw-final-cta {
    background: #e7dccd;
}

.tw-about-image-wrap,
.tw-benefit-highlight,
.tw-benefit-card,
.tw-requirement-item,
.tw-verification-panel,
.tw-experience-card,
.tw-trust-item,
.tw-support-card,
.tw-support-commitment,
.tw-final-cta-card,
.tw-check-grid div {
    background: var(--tw-warm-card);
    border-color: var(--tw-border-warm);
    box-shadow: 0 16px 42px rgba(58, 45, 32, 0.10);
}

.tw-benefit-highlight,
.tw-verification-panel,
.tw-support-commitment,
.tw-experience-card-featured {
    background: var(--tw-warm-card-2);
}

.tw-icon,
.tw-support-icon,
.tw-experience-card i,
.tw-trust-item div,
.tw-floating-note i,
.tw-timeline-step > span {
    background: var(--tw-orange) !important;
    box-shadow: 0 10px 24px rgba(251, 115, 5, 0.20);
}

.tw-floating-note {
    background: rgba(251, 243, 232, 0.90);
    border-color: var(--tw-border-warm);
}

/* Plan VIP más pulido: exclusivo, sólido y compacto */
.tw-plan-pro {
    background: #352a22;
    padding: clamp(3rem, 5vw, 4.8rem) 0;
}

    .tw-plan-pro .row {
        align-items: center;
    }

.tw-heading-inverse {
    font-size: clamp(1.65rem, 2.8vw, 2.55rem);
    line-height: 1.14;
}

.tw-lead-inverse {
    font-size: 0.98rem;
    line-height: 1.62;
}

.tw-plan-pills {
    gap: 0.55rem;
}

    .tw-plan-pills span {
        padding: 0.5rem 0.72rem;
        background: rgba(255, 255, 255, 0.07);
        font-size: 0.84rem;
    }

.tw-plan-card {
    max-width: 560px;
    margin-left: auto;
    padding: clamp(1.25rem, 3vw, 1.85rem);
    border-radius: 26px;
    background: #f8efe4;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.tw-plan-badge {
    padding: 0.38rem 0.62rem;
    background: var(--tw-orange);
    font-size: 0.68rem;
}

.tw-plan-card-header {
    padding-bottom: 0.95rem;
    margin-bottom: 0.95rem;
}

    .tw-plan-card-header h3 {
        font-size: clamp(1.45rem, 2.6vw, 2.05rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

.tw-plan-features {
    gap: 0.62rem;
    margin-bottom: 1rem;
}

    .tw-plan-features li {
        font-size: 0.92rem;
        line-height: 1.42;
    }

.tw-plan-cta {
    padding: 0.76rem 1rem;
    border-radius: 14px;
    background: var(--tw-orange);
    box-shadow: 0 12px 28px rgba(251, 115, 5, 0.24);
    font-size: 0.92rem;
}

/* Footer original: dos filas y fondo negro */
.footer {
    background: #050608 !important;
    font-size: 0.88rem;
}

    .footer a,
    .footer-menu a,
    .dev-link {
        color: rgba(255,255,255,0.72);
        text-decoration: none;
    }

        .footer a:hover,
        .footer-menu a:hover,
        .dev-link:hover {
            color: var(--tw-orange);
        }

.footer-menu .highlight {
    color: var(--tw-orange);
    font-weight: 700;
}

.footer-divider {
    border-color: rgba(255,255,255,0.10);
    opacity: 1;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 1199.98px) {
    .tw-hero-title {
        font-size: clamp(1.9rem, 3.8vw, 3rem);
    }

    .tw-hero-showcase {
        max-width: 450px;
    }
}

@media (max-width: 991.98px) {
    .tw-hero-pro,
    .tw-hero-pro-balanced {
        min-height: auto;
        padding: 6.6rem 0 3.5rem;
    }

    .tw-hero-showcase {
        max-width: 100%;
        margin: 0;
    }

    .navbar-collapse {
        background: rgba(7, 9, 12, 0.98) !important;
        border-color: rgba(255,255,255,0.10) !important;
    }
}

@media (max-width: 767.98px) {
    .tw-section {
        padding: 2.6rem 0;
    }

    .tw-hero-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }

    .tw-hero-copy {
        font-size: 0.95rem;
    }

    .tw-showcase-main {
        min-height: 170px;
    }

    .tw-showcase-grid {
        grid-template-columns: 1fr;
    }

    .tw-hero-actions .btn {
        width: 100%;
    }

    .tw-hero-trust span {
        width: 100%;
        justify-content: center;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start !important;
    }
}



@media (max-width: 992px) {
    .tw-hero-showcase {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .tw-hero-showcase {
        padding: 1rem;
    }
}


/* Hero showcase optimizado */
.tw-hero-showcase {
    max-width: 48rem; /* ancho máximo para no romper layout */
    width: 100%;
    padding: 2rem 1.5rem; /* espacio interno controlado */
    margin: 0 auto; /* centrado */
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .tw-hero-showcase {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .tw-hero-showcase {
        padding: 1rem 0.8rem;
    }
}


/* Showcase grid: horizontal en PC, vertical en móvil */
.tw-showcase-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
}

    .tw-showcase-grid > div {
        flex: 1 1 0;
        text-align: center;
    }

@media (max-width: 768px) {
    .tw-showcase-grid {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 1rem;
    }

        .tw-showcase-grid > div {
            flex: 1 1 100%;
        }
}

/* =============================================================
   FIX 26 - Footer institucional inicio-principal
   - Mantiene el look premium del inicio.
   - Retira el menú de anclas del footer para ganar espacio.
   - Integra soporte, desarrollo y logotipo institucional.
   ============================================================= */
.tw-public-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(2.4rem, 4vw, 3.8rem) 0 1.15rem;
    color: #fff7ed;
    background:
        radial-gradient(circle at 8% 0%, rgba(251, 115, 5, 0.24), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(255, 180, 92, 0.14), transparent 30%),
        linear-gradient(135deg, #17110d 0%, #241a14 48%, #0c0b0a 100%);
}

    .tw-public-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 78%);
        opacity: 0.32;
    }

.tw-public-footer .container {
    position: relative;
    z-index: 1;
}

.tw-public-footer-shell {
    display: grid;
    grid-template-columns: minmax(300px, 1.3fr) minmax(230px, 0.85fr) minmax(260px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.tw-public-footer-brand,
.tw-public-footer-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.068);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.tw-public-footer-brand {
    display: grid;
    gap: 1.05rem;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border-radius: 26px;
}

.tw-public-footer-brand-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: flex-start;
}

.tw-public-footer-tripwin-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.09);
    padding: 0.36rem;
    box-shadow: 0 16px 34px rgba(251, 115, 5, 0.22);
}

.tw-public-footer-kicker,
.tw-public-footer-developer > span {
    display: inline-flex;
    margin-bottom: 0.35rem;
    color: #ffbe7a;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tw-public-footer-brand h2,
.tw-public-footer-contact-card h3 {
    margin: 0;
    color: #fff9f1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.tw-public-footer-brand h2 {
    font-size: clamp(1.22rem, 2.2vw, 1.65rem);
    line-height: 1.12;
}

.tw-public-footer-brand p,
.tw-public-footer-contact-card p,
.tw-public-footer-developer small {
    margin: 0;
    color: rgba(255, 249, 241, 0.68);
    line-height: 1.65;
    font-size: 0.91rem;
}

.tw-public-footer-developer {
    padding: 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.tw-public-footer-dev-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
}

    .tw-public-footer-dev-content img {
        width: 56px;
        height: 56px;
        object-fit: contain;
        border-radius: 18px;
        background: #fff;
        padding: 0.28rem;
        box-shadow: 0 14px 28px rgba(0,0,0,0.16);
    }

    .tw-public-footer-dev-content strong {
        display: block;
        color: #fff9f1;
        font-size: 0.98rem;
        margin-bottom: 0.1rem;
    }

.tw-public-footer-contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    padding: clamp(1rem, 1.8vw, 1.25rem);
    border-radius: 24px;
}

.tw-public-footer-contact-card-alt {
    background: rgba(251, 115, 5, 0.105);
}

.tw-public-footer-card-icon {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #fb7305, #ff9e3d);
    box-shadow: 0 14px 26px rgba(251, 115, 5, 0.28);
}

.tw-public-footer-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.38rem;
}

.tw-public-footer-contact-card a,
.tw-public-footer-bottom a {
    color: #ffd3a4;
    font-weight: 750;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .tw-public-footer-contact-card a:hover,
    .tw-public-footer-bottom a:hover {
        color: #ffffff;
    }

.tw-public-footer-contact-list {
    display: grid;
    gap: 0.46rem;
    margin-top: 0.68rem;
}

    .tw-public-footer-contact-list a {
        display: inline-flex;
        align-items: center;
        gap: 0.48rem;
        color: rgba(255, 249, 241, 0.78);
        font-size: 0.9rem;
        font-weight: 700;
        word-break: break-word;
    }

    .tw-public-footer-contact-list i {
        color: #ffb36a;
        width: 16px;
    }

.tw-public-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 249, 241, 0.12);
    color: rgba(255, 249, 241, 0.58);
    font-size: 0.86rem;
}

.tw-public-footer-socials {
    display: inline-flex;
    gap: 0.55rem;
}

    .tw-public-footer-socials a {
        width: 36px;
        height: 36px;
        display: inline-grid;
        place-items: center;
        border-radius: 999px;
        color: #fff9f1;
        background: rgba(255,255,255,0.10);
        border: 1px solid rgba(255,255,255,0.12);
    }

@media (max-width: 1199.98px) {
    .tw-public-footer-shell {
        grid-template-columns: 1fr 1fr;
    }

    .tw-public-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .tw-public-footer {
        padding-top: 2rem;
    }

    .tw-public-footer-shell {
        grid-template-columns: 1fr;
    }

    .tw-public-footer-brand-main,
    .tw-public-footer-dev-content,
    .tw-public-footer-contact-card {
        grid-template-columns: 1fr;
    }

    .tw-public-footer-tripwin-logo,
    .tw-public-footer-dev-content img,
    .tw-public-footer-card-icon {
        margin-bottom: 0.15rem;
    }

    .tw-public-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =============================================================
   FIX 27 - Footer público compacto e institucional
   Objetivo: recuperar el footer original de inicio-principal,
   integrando soporte, desarrollo y logo sin tarjetas altas.
   ============================================================= */
.footer.footer-institucional {
    background:
        radial-gradient(circle at 12% 0%, rgba(251, 115, 5, 0.12), transparent 34%),
        linear-gradient(180deg, #090b0f 0%, #050608 100%) !important;
    border-top: 1px solid rgba(251, 115, 5, 0.22);
    font-size: 0.86rem;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.22);
}

.footer.footer-institucional .footer-top {
    min-height: 48px;
}

.footer-brand-compact img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 8px 16px rgba(251, 115, 5, 0.22));
}

.footer-brand-text {
    display: grid;
    gap: 0.1rem;
    line-height: 1.15;
}

.footer-brand-text strong {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.footer-brand-text span,
.footer-info-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-info-group {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.footer-support-compact {
    padding: 0.58rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-support-compact a,
.footer-contact-compact a,
.footer-dev-compact strong {
    color: rgba(255, 255, 255, 0.86) !important;
    font-weight: 700;
    text-decoration: none;
}

.footer-support-compact a:hover,
.footer-contact-compact a:hover,
.footer-social-link:hover {
    color: var(--tw-orange) !important;
}

.footer-dev-compact {
    padding: 0.48rem 0.72rem;
    border-radius: 16px;
    background: rgba(251, 115, 5, 0.09);
    border: 1px solid rgba(251, 115, 5, 0.16);
}

.footer-dev-compact img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    padding: 4px;
}

.footer-dev-compact > div {
    display: grid;
    gap: 0.08rem;
    line-height: 1.15;
}

.footer.footer-institucional .footer-divider {
    border-color: rgba(255, 255, 255, 0.10);
    opacity: 1;
    margin-top: 0.85rem !important;
    margin-bottom: 0.85rem !important;
}

.footer-contact-compact {
    color: rgba(255, 255, 255, 0.62);
}

.footer-contact-compact i,
.footer-info-label i {
    color: var(--tw-orange);
}

.footer-social-link {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78) !important;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(251, 115, 5, 0.36);
}

@media (max-width: 991.98px) {
    .footer.footer-institucional .footer-top,
    .footer.footer-institucional .footer-bottom {
        align-items: flex-start !important;
    }

    .footer-support-compact {
        border-radius: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .footer.footer-institucional {
        text-align: left;
    }

    .footer-brand-compact,
    .footer-info-group,
    .footer-contact-compact,
    .footer-copy {
        width: 100%;
    }

    .footer-dev-compact,
    .footer-support-compact {
        justify-content: flex-start;
    }

    .footer-contact-compact {
        gap: 0.7rem !important;
    }
}


/* =============================================================
   FIX 28 - Footer inicio sutil
   Objetivo: conservar la fuente y proporción original de inicio-principal,
   usando menos negrilla y una presencia institucional compacta.
   ============================================================= */
.footer.footer-inicio-refinado {
    background: #050608 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0;
}

.footer.footer-inicio-refinado .footer-top,
.footer.footer-inicio-refinado .footer-bottom {
    line-height: 1.45;
}

.footer.footer-inicio-refinado .footer-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: none;
    border-radius: 0;
}

.footer.footer-inicio-refinado .footer-brand-line {
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0;
}

.footer.footer-inicio-refinado a,
.footer.footer-inicio-refinado .footer-soft-link,
.footer.footer-inicio-refinado .footer-contact a,
.footer.footer-inicio-refinado .dev-link {
    color: rgba(255, 255, 255, 0.70) !important;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.footer.footer-inicio-refinado a:hover,
.footer.footer-inicio-refinado .footer-soft-link:hover,
.footer.footer-inicio-refinado .footer-contact a:hover {
    color: var(--tw-orange) !important;
}

.footer.footer-inicio-refinado .footer-meta {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.footer.footer-inicio-refinado .footer-soft-link i,
.footer.footer-inicio-refinado .footer-contact i {
    color: rgba(251, 115, 5, 0.82);
}

.footer.footer-inicio-refinado .footer-dev-inline {
    font-weight: 400;
    letter-spacing: 0;
}

.footer.footer-inicio-refinado .footer-dev-inline img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px;
}

.footer.footer-inicio-refinado .footer-divider {
    border-color: rgba(255, 255, 255, 0.09);
    opacity: 1;
}

.footer.footer-inicio-refinado .footer-bottom {
    color: rgba(255, 255, 255, 0.52) !important;
}

.footer.footer-inicio-refinado .footer-social-sutil {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72) !important;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.095);
    transform: none;
}

.footer.footer-inicio-refinado .footer-social-sutil:hover {
    color: var(--tw-orange) !important;
    border-color: rgba(251, 115, 5, 0.28);
    transform: none;
}

@media (max-width: 991.98px) {
    .footer.footer-inicio-refinado .footer-top,
    .footer.footer-inicio-refinado .footer-bottom {
        align-items: flex-start !important;
    }

    .footer.footer-inicio-refinado .footer-meta {
        width: 100%;
        gap: 0.8rem !important;
    }
}

@media (max-width: 575.98px) {
    .footer.footer-inicio-refinado {
        font-size: 0.84rem;
    }

    .footer.footer-inicio-refinado .footer-logo,
    .footer.footer-inicio-refinado .footer-meta,
    .footer.footer-inicio-refinado .footer-contact,
    .footer.footer-inicio-refinado .footer-copy {
        width: 100%;
    }

    .footer.footer-inicio-refinado .footer-brand-line {
        font-size: 0.82rem;
    }

    .footer.footer-inicio-refinado .footer-contact {
        gap: 0.65rem !important;
    }
}

/* =============================================================
   FIX 29 - Footer inicio elevado y sutil
   Objetivo: mejorar el look sin aumentar altura, sin tarjetas pesadas
   y conservando la fuente original de inicio-principal.
   ============================================================= */
.footer.footer-inicio-elevado {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #08090c 0%, #050608 100%) !important;
    color: rgba(255, 255, 255, 0.74);
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0;
    padding: 1.15rem 0 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer.footer-inicio-elevado::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 115, 5, 0.68) 18%, rgba(251, 115, 5, 0.22) 48%, transparent 84%);
    pointer-events: none;
}

.footer.footer-inicio-elevado::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -80px;
    width: 280px;
    height: 160px;
    background: radial-gradient(circle, rgba(251, 115, 5, 0.12), transparent 70%);
    pointer-events: none;
}

.footer-elevado-shell {
    position: relative;
    z-index: 1;
}

.footer-elevado-main {
    display: grid;
    grid-template-columns: minmax(220px, 1.05fr) minmax(210px, .85fr) minmax(220px, .95fr) minmax(280px, 1.2fr);
    align-items: center;
    gap: 1.1rem 1.25rem;
}

.footer-elevado-brand,
.footer-elevado-dev {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.footer-elevado-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-elevado-dev img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    flex: 0 0 auto;
    padding: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-elevado-brand span,
.footer-elevado-dev p {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.25;
}

.footer-elevado-brand p,
.footer-elevado-support,
.footer-elevado-dev .footer-elevado-label,
.footer-elevado-bottom {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 400;
}

.footer-elevado-label {
    display: block;
    margin-bottom: 0.12rem;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.015em;
}

.footer-elevado-label i,
.footer-elevado-contact i {
    color: rgba(251, 115, 5, 0.78);
    font-size: 0.82rem;
}

.footer.footer-inicio-elevado a {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    font-weight: 400;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer.footer-inicio-elevado a:hover {
    color: var(--tw-orange) !important;
}

.footer-elevado-support a {
    font-size: 0.86rem;
}

.footer-elevado-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.42rem 1rem;
    min-width: 0;
}

.footer-elevado-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    font-size: 0.8rem;
}

.footer-elevado-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.85rem;
    padding-top: 0.82rem;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-elevado-social {
    width: 29px;
    height: 29px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-elevado-social:hover {
    background: rgba(251, 115, 5, 0.10);
    border-color: rgba(251, 115, 5, 0.30);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .footer-elevado-main {
        grid-template-columns: minmax(220px, 1fr) minmax(210px, 1fr);
    }

    .footer-elevado-contact {
        justify-content: flex-start;
        grid-column: 1 / -1;
        padding-top: 0.2rem;
    }
}

@media (max-width: 767.98px) {
    .footer.footer-inicio-elevado {
        padding: 1rem 0;
        font-size: 0.84rem;
    }

    .footer-elevado-main {
        grid-template-columns: 1fr;
        gap: 0.82rem;
    }

    .footer-elevado-contact {
        gap: 0.42rem 0.85rem;
    }

    .footer-elevado-contact a {
        white-space: normal;
    }

    .footer-elevado-bottom {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .footer-elevado-bottom {
        flex-direction: column;
        gap: 0.72rem;
    }
}

/* =============================================================
   FIX 30 - Footer inicio: desarrollo en fila inferior
   Objetivo: ganar espacio en la fila principal y alinear la
   atribución de desarrollo con el copyright sin aumentar altura.
   ============================================================= */
.footer-elevado-main {
    grid-template-columns: minmax(230px, 1fr) minmax(220px, .82fr) minmax(360px, 1.35fr);
    gap: 0.9rem 1.25rem;
}

.footer-elevado-bottom {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) minmax(280px, auto) 32px;
    align-items: center;
    gap: 0.95rem 1.25rem;
    margin-top: 0.72rem;
    padding-top: 0.72rem;
}

.footer-elevado-copy {
    min-width: 0;
}

.footer-elevado-dev-bottom {
    justify-self: center;
    gap: 0.58rem;
    opacity: 0.92;
}

.footer-elevado-dev-bottom img {
    width: 27px;
    height: 27px;
}

.footer-elevado-dev-bottom .footer-elevado-label {
    display: inline;
    margin: 0 0.28rem 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.46);
}

.footer-elevado-dev-bottom p {
    display: inline;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 400;
}

.footer-elevado-social {
    justify-self: end;
}

@media (max-width: 1199.98px) {
    .footer-elevado-main {
        grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.25fr);
    }

    .footer-elevado-support {
        justify-self: start;
    }

    .footer-elevado-contact {
        grid-column: 1 / -1;
    }

    .footer-elevado-bottom {
        grid-template-columns: 1fr auto 32px;
    }
}

@media (max-width: 767.98px) {
    .footer-elevado-main {
        grid-template-columns: 1fr;
    }

    .footer-elevado-bottom {
        grid-template-columns: 1fr 32px;
        gap: 0.62rem 0.9rem;
    }

    .footer-elevado-dev-bottom {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
    }

    .footer-elevado-social {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 575.98px) {
    .footer-elevado-bottom {
        grid-template-columns: 1fr;
    }

    .footer-elevado-social {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
    }

    .footer-elevado-dev-bottom {
        grid-column: auto;
        grid-row: auto;
    }
}

/* =========================================================
   FIX 35 - Topbar inicio premium refinado
   - Glass real al cargar, oscuro solo al hacer scroll/menú.
   - Menú menos redondo, mejor respiración y alineación.
   - Bloque autenticado renderizado desde Razor + sincronización JS.
   ========================================================= */
:root {
    --tw-nav-orange: #fb7305;
    --tw-nav-orange-2: #ff9b42;
    --tw-nav-ink: #ffffff;
    --tw-nav-dark: rgba(11, 13, 16, 0.88);
    --tw-nav-dark-solid: rgba(10, 12, 15, 0.94);
    --tw-nav-glass: rgba(255, 255, 255, 0.045);
    --tw-nav-line: rgba(255, 255, 255, 0.13);
    --tw-nav-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.navbar.tw-public-navbar,
.nav-blur.tw-public-navbar {
    min-height: 76px;
    padding: 0 !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, min-height 0.28s ease, transform 0.28s ease;
}

.navbar.tw-public-navbar.scrolled,
.nav-blur.tw-public-navbar.scrolled,
.navbar.tw-public-navbar.menu-open {
    min-height: 68px;
    background: var(--tw-nav-dark-solid) !important;
    border-bottom-color: rgba(255, 255, 255, 0.11) !important;
    box-shadow: var(--tw-nav-shadow) !important;
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

.tw-public-navbar-container {
    min-height: inherit;
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.6vw, 1.35rem);
}

.tw-public-brand {
    min-width: 0;
    display: inline-flex !important;
    align-items: center;
    gap: 0.72rem;
    margin-right: clamp(0.3rem, 1.3vw, 1rem);
    color: #fff !important;
    text-decoration: none;
}

.tw-public-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(251, 115, 5, 0.23));
}

.tw-public-brand-copy {
    min-width: 0;
    display: grid;
    line-height: 1.04;
}

.tw-public-brand-copy strong {
    color: var(--tw-nav-orange) !important;
    font-size: clamp(1rem, 1.34vw, 1.22rem);
    font-weight: 720;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.tw-public-brand-copy small {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.70rem;
    font-weight: 480;
    letter-spacing: 0.012em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.tw-public-collapse {
    min-width: 0;
    align-items: center;
}

.tw-public-nav {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    flex-wrap: nowrap;
}

.tw-public-nav .nav-link,
.navbar-dark .tw-public-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.44rem 0.78rem !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 0.86rem;
    font-weight: 610;
    letter-spacing: -0.012em;
    white-space: nowrap;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tw-public-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.78rem;
    right: 0.78rem;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tw-nav-orange), var(--tw-nav-orange-2));
    opacity: 0;
    transform: scaleX(0.42);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tw-public-nav .nav-link:hover,
.tw-public-nav .nav-link:focus,
.tw-public-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.026);
}

.tw-public-nav .nav-link:hover::after,
.tw-public-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.tw-public-actions,
.tw-public-user {
    margin-left: clamp(0.5rem, 1.2vw, 0.95rem);
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.tw-public-user.d-none,
.tw-public-actions.d-none {
    display: none !important;
}

.tw-public-btn {
    min-height: 39px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    padding: 0.50rem 0.92rem !important;
    border-radius: 14px !important;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tw-public-btn:hover {
    transform: translateY(-1px);
}

.tw-public-btn-primary {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    background: linear-gradient(135deg, var(--tw-nav-orange), var(--tw-nav-orange-2)) !important;
    box-shadow: 0 12px 26px rgba(251, 115, 5, 0.28);
}

.tw-public-btn-ghost,
.tw-public-btn-panel {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.19) !important;
    background: rgba(255, 255, 255, 0.055) !important;
}

.tw-public-btn-ghost:hover,
.tw-public-btn-panel:hover {
    border-color: rgba(251, 115, 5, 0.48) !important;
    background: rgba(251, 115, 5, 0.15) !important;
}

.tw-public-btn-logout {
    width: 39px;
    min-width: 39px;
    padding: 0 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.17) !important;
    background: rgba(255, 255, 255, 0.062) !important;
}

.tw-public-btn-logout span {
    display: none;
}

.tw-public-btn-logout:hover {
    border-color: rgba(251, 115, 5, 0.56) !important;
    background: rgba(251, 115, 5, 0.19) !important;
}

.tw-public-user-panel {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    min-width: 0;
    max-width: 292px;
    padding: 0.38rem 0.72rem 0.38rem 0.42rem;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tw-public-user-panel:hover {
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.112), rgba(255,255,255,0.065));
    border-color: rgba(251, 115, 5, 0.42);
    transform: translateY(-1px);
}

.tw-public-user-avatar {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 720;
    background: linear-gradient(135deg, var(--tw-nav-orange), var(--tw-nav-orange-2));
    box-shadow: 0 10px 24px rgba(251, 115, 5, 0.25);
}

.tw-public-user-info {
    min-width: 0;
    display: grid;
    line-height: 1.04;
}

.tw-public-user-label {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.61rem;
    font-weight: 580;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    margin-bottom: 0.12rem;
}

.tw-public-user-info strong {
    max-width: 185px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 650;
    letter-spacing: -0.012em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tw-public-user-info small {
    max-width: 185px;
    margin-top: 0.14rem;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 0.68rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tw-public-toggler {
    width: 43px;
    height: 39px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0 !important;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    background: rgba(255, 255, 255, 0.075) !important;
    box-shadow: none !important;
}

.tw-public-toggler span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.tw-public-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tw-public-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.tw-public-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1200px) {
    .tw-public-navbar .container {
        max-width: 1320px;
    }
}

@media (max-width: 1299.98px) and (min-width: 992px) {
    .tw-public-brand-copy small {
        max-width: 150px;
    }

    .tw-public-nav {
        gap: 0.22rem;
    }

    .tw-public-nav .nav-link {
        padding-left: 0.56rem !important;
        padding-right: 0.56rem !important;
        font-size: 0.80rem;
    }

    .tw-public-actions,
    .tw-public-user {
        gap: 0.38rem;
        margin-left: 0.40rem;
    }

    .tw-public-btn {
        padding-left: 0.68rem !important;
        padding-right: 0.68rem !important;
        font-size: 0.80rem;
    }

    .tw-public-user-panel {
        max-width: 230px;
    }

    .tw-public-user-info strong,
    .tw-public-user-info small {
        max-width: 145px;
    }
}

@media (max-width: 991.98px) {
    .navbar.tw-public-navbar,
    .nav-blur.tw-public-navbar {
        min-height: 68px;
        background: rgba(255, 255, 255, 0.045) !important;
    }

    .navbar.tw-public-navbar.scrolled,
    .nav-blur.tw-public-navbar.scrolled,
    .navbar.tw-public-navbar.menu-open {
        background: rgba(10, 12, 15, 0.94) !important;
    }

    .tw-public-navbar-container {
        min-height: 68px;
        justify-content: space-between;
    }

    .tw-public-brand-logo {
        width: 38px;
        height: 38px;
    }

    .tw-public-brand-copy strong {
        font-size: 1rem;
    }

    .tw-public-brand-copy small {
        max-width: 180px;
        font-size: 0.68rem;
    }

    .tw-public-toggler {
        display: inline-flex;
    }

    .tw-public-collapse {
        width: 100%;
        margin-top: 0.65rem;
        padding: 0.82rem;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 20px;
        background: rgba(11, 13, 16, 0.96) !important;
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .tw-public-nav {
        align-items: stretch !important;
        gap: 0.25rem;
    }

    .tw-public-nav .nav-link {
        justify-content: flex-start;
        min-height: 40px;
        padding: 0.62rem 0.78rem !important;
        border-radius: 14px;
    }

    .tw-public-actions,
    .tw-public-user {
        width: 100%;
        margin: 0.75rem 0 0;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .tw-public-actions .tw-public-btn,
    .tw-public-user .tw-public-btn {
        flex: 1 1 auto;
    }

    .tw-public-user-panel {
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
        border-radius: 17px;
        padding: 0.56rem 0.62rem;
    }

    .tw-public-user-info strong,
    .tw-public-user-info small {
        max-width: none;
    }

    .tw-public-btn-logout {
        width: auto;
        min-width: 0;
        padding-left: 0.95rem !important;
        padding-right: 0.95rem !important;
    }

    .tw-public-btn-logout span {
        display: inline;
    }
}

@media (max-width: 575.98px) {
    .tw-public-brand-copy small {
        max-width: 145px;
    }

    .tw-public-actions,
    .tw-public-user {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tw-public-actions .tw-public-btn,
    .tw-public-user .tw-public-btn {
        width: 100%;
    }
}

/* Confirmación profesional de cierre de sesión */
.swal2-popup.tw-logout-modal {
    border-radius: 24px !important;
    border: 1px solid rgba(251, 115, 5, 0.14) !important;
    box-shadow: 0 24px 70px rgba(25, 18, 12, 0.20) !important;
}

.swal2-confirm.tw-logout-confirm,
.swal2-styled.tw-logout-confirm {
    border-radius: 999px !important;
    background: linear-gradient(135deg, #fb7305, #ff9b42) !important;
    box-shadow: 0 14px 28px rgba(251, 115, 5, 0.25) !important;
}

.swal2-cancel.tw-logout-cancel,
.swal2-styled.tw-logout-cancel {
    border-radius: 999px !important;
    color: #2a2926 !important;
    background: #f3eee7 !important;
}


/* =========================================================
   FIX 36 - Topbar público: navegación precisa y cuenta sin redundancia
   ========================================================= */
.tw-public-nav .nav-link {
    border-radius: 10px !important;
}

.tw-public-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.052) !important;
}

.tw-public-nav .nav-link.active::after {
    left: 0.78rem;
    right: 0.78rem;
    bottom: 0.18rem;
}

.tw-public-user {
    gap: 0.48rem;
}

.tw-public-user-panel {
    border-radius: 12px !important;
}

.tw-public-btn-logout {
    border-radius: 12px !important;
}

.tw-public-btn-panel {
    display: none !important;
}

@media (max-width: 991.98px) {
    .tw-public-nav .nav-link {
        border-radius: 11px !important;
    }

    .tw-public-user-panel {
        border-radius: 13px !important;
    }
}


/* =========================================================
   FIX 37 - Topbar público: nombre humano y lema estable
   ========================================================= */
.tw-public-brand-copy small.tw-public-brand-tagline {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 470;
    letter-spacing: 0.006em;
}

.tw-public-user-info strong {
    max-width: 205px;
}

.tw-public-user-info small {
    max-width: 205px;
}

@media (max-width: 1299.98px) and (min-width: 992px) {
    .tw-public-brand-copy small.tw-public-brand-tagline {
        max-width: 235px;
    }

    .tw-public-user-info strong,
    .tw-public-user-info small {
        max-width: 155px;
    }
}

@media (max-width: 991.98px) {
    .tw-public-brand-copy small.tw-public-brand-tagline {
        max-width: 260px;
        font-size: 0.66rem;
    }
}

@media (max-width: 575.98px) {
    .tw-public-brand-copy small.tw-public-brand-tagline {
        max-width: 170px;
    }
}
