﻿:root {
    --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-font-sans-serif);
}

/*Etapas de Compra*/
.step {
    text-align: center;
}

.step-circle {
    border-radius: 50%;
    background-color: var(--bs-secondary-bg-subtle);
    width: 40px;
    height: 40px;
}

.step-circle-active {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity));
}

.step-number {
   
    color: white;
    font-size: 1.2rem;
}

.step-caption {
    font-size: 0.9rem;
    font-weight: bold;
}

.step-barra {
    background-color: var(--bs-secondary-bg-subtle);
    height: 1px;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
    top: -10px;
}

.pagina-titulo {
}

    .pagina-titulo h1 {
        font-size: 2rem;
        font-weight: 300;
        text-align: center;
    }

    .pagina-titulo div {
        font-size: 1rem;
        text-align: center;
    }


/* Minimal custom tweaks — all layout is Bootstrap classes */
.pricing-card {
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.popular {
    border-color: #0d6efd;
    box-shadow: 0 0 0 1px #0d6efd, 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.pricing-card .card-header {
    background: transparent;
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-card .card-footer {
    background: transparent;
    border-top: none;
    padding-top: 0;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
}

    .price span {
        font-size: 1rem;
        font-weight: 400;
        color: #6c757d;
    }

.feature-list {
    list-style: none;
    padding-left: 0;
}

    .feature-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #dee2e6;
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

    .feature-list .bi {
        margin-right: 0.5rem;
    }

.badge-popular {
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
}
@media print {
    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }
}

.print-only {
    display: none;
}


.fixed-bottom-right {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
}