/* GLASS STYLE */

/*
- Principais tons de azul (mais claro para escuro):

- rgb(41, 89, 176, 1)
- rgb(41, 89, 125, 1)
- rgb(41, 89, 100, 1)

*/

/* CARD PRINCIPAL*/
.glass-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 0 8px rgba(255, 255, 255, 0.4);
    margin-top: 1.2rem;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.glass-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.18),
        0 0 18px rgba(255, 255, 255, 0.7),
        inset 0 0 15px rgba(255, 255, 255, 0.65);
    border-color: rgba(0, 0, 0, 0.1);
}

.glass-card.no_hover:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
}


/* TÍTULOS */

.glass-card-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #274b6d !important;
}

.glass-card-title.main {
    font-size: 1.25rem !important;
}

.glass-card-subtitle {
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(39, 75, 109, 0.75) !important; /* mesma base do título, mais suave */
}

.glass-card-subtitle2 {
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: #274b6d !important;
}

.glass-card-section-header {
    gap: 0.55rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card-section-header.icon {
    display: flex !important;
    align-items: center !important;
}


/* INPUTS */

.glass-input-container {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    padding-top: 1rem;
    gap: 1rem;
}

.glass-number-label {
    color: rgb(41, 89, 100, 1) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding-bottom: 0.5rem !important;
}

.glass-number-input {
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(10px);
    /* color: #ffffff; */
    padding: 0.5rem 0.75rem !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.glass-number-input:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
}
