:root {
    --primary: #0667B4;
    --white: #ffffff;
    --blue: rgba(20, 71, 230, 1);
    --secondary: rgba(230, 242, 255, 1);
    --light-blue: rgba(239, 246, 255, 1);
    --light-yellow: rgba(254, 252, 232, 1);
    --muted: rgba(91, 103, 119, 1);
    --border-gray: rgba(217, 222, 229, 1);
    --light-primary: rgba(47, 128, 237, 1);
    --lighter-primary: rgba(235, 240, 248, 1);
    --background: rgba(244, 246, 248, 1);
    --border-blue: rgba(190, 219, 255, 1);
    --border-yellow: rgba(255, 223, 32, 1);
    --dark-yellow: rgba(115, 62, 10, 1);
    --gray: rgba(113, 113, 130, 1);
}

.warning-empresa-buscada{
  font-size: 12px;
  padding: 8px 16px;
  margin-right: 16px;
  border:   solid 1px var(--border-yellow);
  border-radius: 8px;
  background-color: var(--light-yellow);

}

.warning-no-invoices{
    font-size: 12px;
    padding: 8px 16px;
    margin-right: 16px;
    border:   solid 1px var(--border-blue);
    border-radius: 8px;
    background-color: var(--secondary);
    width: 100%;
    .info{
        font-size: 10px;
        color: var(--muted);
    }
}
.warning-invoices{
    font-size: 12px;
    padding: 8px 16px;
    margin-right: 16px;
    border:   solid 1px var(--border-yellow);
    border-radius: 8px;
    background-color: var(--light-yellow);
    width: 100%;

    .info{
        font-size: 10px;
        color: var(--muted);
    }
}

#costoContainer{
    background-color: var(--light-yellow);
    border-radius: 16px;;
    border: solid 1px var(--border-yellow);
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
}

.header-index {
    .circle-blue {
        background-color: var(--primary);
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    h3 {
        color: var(--primary) !important;
        font-size: 13px;
        margin: 0;
    }

    h4 {
        font-size: 16px !important;
        color: var(--muted);
        font-weight: 400;
        max-width: 600px;
    }

}

.buscador-container {
    max-width: 856px;
    box-shadow: 0px 8px 24px 0px rgba(31, 58, 95, 0.08);

    .buscador {
        border: solid 1px var(--border-gray);
        border-radius: 16px;
        padding: 48px;

        label {
            font-size: 15px;
            font-weight: 600;
        }

        p {
            font-size: 13px;
            font-weight: 500;
        }
    }

    .buscar-btn {
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        border: solid 1px var(--primary) !important;
        border-radius: 12px;
        color: var(--white) !important;
        cursor: pointer;
    }

    .buscar-btn:hover {
        color: var(--primary) !important;
        border: solid 1px var(--primary) !important;
        background-color: var(--white);
    }

    .progress-container {
        width: 100%;
        height: 8px;
        background-color: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        background: var(--primary);
        transition: width 0.4s ease;
    }

    .contacto-busqueda {
        a {
            color: var(--light-primary);
            font-weight: 600;
        }
    }

}

.buscador-container>input {
    background-color: var(--lighter-primary) !important;
    border-radius: 12px !important;
    height: 53px !important;

}

.search-info {
    .question {
        h2 {
            font-size: 36px;
        }

        p {
            font-size: 16px;
        }
    }

    .tarjeta {
        border: solid 1px var(--border-gray);
        display: flex;
        gap: 8px;
        flex-direction: column;
        height: 100%;
    }

    .contenedor-icono {
        width: 56px;
        height: 56px;
        background-color: var(--secondary);
        border: solid 1px var(--border-gray);
        border-radius: 14px;
        display: flex;
        align-items: center;
    }

    .tarjeta-title {
        font-size: 18px;
    }

    .tarjeta-desc {
        font-size: 14px;
        font-weight: 400;
    }
}

.about-trantor {
    background-color: var(--background);

    .title {
        font-size: 36px;
    }

    .desc {
        font-size: 16px;
        max-width: 600px;
    }

    .tarjeta {
        background-color: var(--white);
        border: solid 1px var(--border-gray);
        box-shadow: 0px 8px 12px 0px rgba(31, 58, 95, 0.08);

        flex-direction: column;
        align-items: center;
        height: 100%;

        .title {
            font-size: 20px;
        }

        .desc-tarjeta {
            font-size: 15px;
            text-align: justify;
        }

        .icono-tarjeta {
            width: 56px;
            height: 56px;
            background-color: var(--secondary);
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
}

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

.cta-info-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 24px;
    max-width: 360px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);

    h5 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .cta-btn {
        background-color: var(--primary);
        color: var(--white);
        border: solid 1px var(--primary);
        padding: 8px 16px;
        display: inline-block;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        text-decoration: none;
    }

    .cta-btn:hover {
        background-color: var(--white);
        color: var(--primary);
    }
}

.cta-ejemplo-trantor {
    background: linear-gradient(135deg, #00A63E 0%, #008236 100%);
    border-radius: 10px;
    padding: 24px;
    max-width: 360px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);

    .cta-title {
        display: flex;
        align-items: start;

        img {
            width: 18px;
            height: 18px;
        }

        h5 {
            color: var(--white) !important;
            font-size: 14px;
        }
    }

    p {
        color: var(--white);
    }

    .descargar-reporte {
        padding: 12px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.2);
        border: solid 2px rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        color: var(--white);
        display: inline-block;
        text-decoration: none;
        width: 100%;
    }
}

.copy-btn {
    padding: 4px 8px;
    font-size: 12px;
}

.separador {
    width: 100%;
    height: 1px;
    background-color: var(--border-gray);
}

.footer-icon {
    text-decoration: none;
}

.back-button,
.boton {
    background-color: var(--primary);
    border: solid 1px var(--primary);
    border-radius: 8px;
    color: var(--white);
    padding: 12px 32px;
    text-decoration: none;

}

.back-button:hover,
.boton:hover {
    background-color: var(--white);
    color: var(--primary) !important;
}

input:not([type="checkbox"]):not([type="file"])  {
    background-color: var(--lighter-primary) !important;
    border-radius: 12px !important;
    height: 53px !important;
}

.logged-info {
    color: var(--white) !important;
    font-size: 10px;
}

@media (width < 768px) {
    .logged-info-container {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .container-tarjeta {
        gap: 16px;
    }
}

.landing-pro {
    background-color: var(--background);

    .contenedor-info {
        background-color: var(--white);
        max-width: 700px;
        border-radius: 10px;
        border: solid 1px var(--border-gray);
        box-shadow: 0px 8px 12px 0px rgba(31, 58, 95, 0.08);
        height: 100%;

        h3 {
            font-weight: 700;

        }

        p {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
        }

        ;
    }

    .titulo-pro {
        color: #0f0f0f;
    }

    h2 {
        font-size: 16px !important;
    }
}

.container-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 1.5em;
}

.check-batch {
    width: 24px !important;
    height: 24px !important;
}

/* 1. Contenedor del Tooltip (Nítido) */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
}

/* 2. El texto que SÍ se desenfoca */
.text-blurred {
    filter: blur(5px);
    user-select: none;
    display: inline-block;
}

/* 3. El Tooltip (Ahora heredará la nitidez del padre) */
.tooltip-container::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 30%;
    background-color: rgba(33, 37, 41, 0.95); /* Un gris oscuro casi opaco */
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    filter: none !important; /* Refuerzo para asegurar nitidez */
}

/* Mostrar al hacer Hover */
.tooltip-container:hover::after,
.tooltip-container:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 135%; /* Efecto de desplazamiento suave hacia arriba */
}