/* ===== ESTILOS DE BOTÕES E LINKS ===== */

/* Botões e links base */
.btn,
a {
    transition-duration: 0.2s;
    outline: 0 !important;
    color: var(--success);
}

/* Estados de foco */
.btn:focus,
a:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

/* Links de navegação */
.navbar a {
    color: white;
    text-decoration: none;
    padding: 0px 18px;
}

/* Links de navegação no hover */
.navbar a:hover {
    color: var(--primary);
}

/* Nomes no hover */
.primeiro-nome:hover,
.ultimo-nome:hover {
    color: var(--success);
}

/* Estilos de nomes */
.primeiro-nome {
    font-size: 14px;
    font-weight: 700;
}

.ultimo-nome {
    font-size: 13px;
    font-weight: 500;
}

/* Títulos */
.h3 {
    font-weight: 600;
    color: #252c2f;
    font-size: 18px;
}

.titulo {
    color: #1f1f1f;
    text-transform: uppercase;
}

.card-index .titulo h3 a,
.card-reserva .titulo h3 a {
    color: #1f1f1f;
    text-decoration: none;
}

/* Truncate para texto longo */
.trucate {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Preços */
.price2-col {
    min-height: auto;
    max-height: none;
}

.info-cost2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--success);
    letter-spacing: -1px;
}

/* Vitrine de favoritos */
.vitrine-favoritos {
    padding: 0;
    position: absolute;
    right: 10px;
    bottom: 50px;
    z-index: 9;
    background-color: var(--light);
    transition-duration: 0.2s;
}

/* Opcionais */
.opicionais {
    padding: 0 10px;
    margin: 10px 0;
    color: #516067;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

.box-opicionais-home {
    text-transform: uppercase;
    font-size: 11px;
    display: flex;
    gap: 3px;
}

/* Ícones */
.dark-fill {
    fill: #111 !important;
}

/* Cores de texto */
.color-text {
    color: #757575 !important;
}