@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons&display=swap");

/* ================= CONTENT AREA - CONTAINER PADRÃO ================= */
.content-area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.content-area > * {
    width: 96%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.content-area > *:first-child {
    margin-top: 0;
}

.content-area > *:last-child {
    margin-bottom: 40px;
}

/* Ajuste responsivo para telas menores */
@media (max-width: 900px) {
    .content-area > * {
        width: 90%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .content-area {
        padding: 24px 0 0 0;
    }

    .content-area > * {
        width: 95%;
    }
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: #eef6ff; /* #e0e0e0;*/
    color: #333;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #6c2eb7;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    border-radius: 0;
    overflow: hidden;
}

.logo {
    text-align: center;
    padding: 30px 0 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

nav ul li {
    padding: 18px 30px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

nav ul li.dropdown {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    width: 100%;
}

nav ul li.dropdown > a {
    padding: 18px 30px;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-arrow {
    font-family: "Material Icons";
    font-size: 18px;
    color: inherit;
    transition: transform 0.2s;
}

nav ul li.dropdown:hover .dropdown-arrow,
nav ul li.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    background: #5a1da3;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
}

nav ul li.dropdown:hover .dropdown-content,
nav ul li.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 12px 30px 12px 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-content a:hover {
    background: rgba(188, 255, 255, 0.5);
    color: #6c2eb7;
}

.dropdown-content a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Estilos para ícones nos submenus */
.dropdown-content a .material-icons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

nav ul li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Estilos para ícones Material Icons no menu */
nav ul li a .material-icons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Classes para cores dos ícones */
nav ul li a .material-icons.icon-normal {
    color: #80ffff;
}

nav ul li a .material-icons.icon-active {
    color: #6c2eb7;
}

nav ul li.dropdown a .material-icons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Classes para cores dos ícones nos dropdowns */
nav ul li.dropdown a .material-icons.icon-normal {
    color: #80ffff;
}

nav ul li.dropdown a .material-icons.icon-active {
    color: #6c2eb7;
}

nav ul li.active {
    background: #80ffff;
    color: #6c2eb7;
    border-radius: 0 0;
}

nav ul li:hover {
    background: rgba(188, 255, 255, 0.5);
    color: #6c2eb7;
    border-radius: 0 0;
}

.sidebar-bottom {
    padding: 20px 30px;
    border-top: 1px solid #7ee6f7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
}

main {
    margin-left: 280px;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: #fff;
    height: 80px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

header > * {
    min-width: 0;
    max-width: 100%;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 18px;
    font-family: "Material Icons";
    font-size: 20px;
    color: #888;
    z-index: 2;
}

header input[type="text"] {
    width: 350px;
    padding: 12px 18px 12px 50px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    background: #f8f9fa;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info .notification {
    font-family: "Material Icons";
    font-size: 20px;
    color: #7ee6f7;
    display: inline-block;
}

.user-info .user-name {
    font-weight: 500;
}

.user-info .user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7ee6f7;
}

.banner {
    background: #7e3ff2;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0px 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
}

.banner > div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 20px 0 10px 0;
    gap: 20px;
}

.banner h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
}

.banner p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.banner button {
    background: #80ffff;
    color: #6c2eb7;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 30px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.banner img {
    height: 105%;
    position: absolute;
    bottom: 0;
    right: 40px;
    object-fit: contain;
    z-index: 1;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #80ffff;
    border-radius: 12px;
    padding: 25px 30px;
    flex: 1;
    color: #6c2eb7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-card.reservas {
    background: #e3e3e3;
    color: #7e3ff2;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-direction: row;
}

.stat-header img {
    order: -1;
}

.stat-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 200;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: bold;
}

.stat-info {
    font-size: 1rem;
    margin-top: 8px;
}

.dashboard-widgets {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.chart {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    flex: 2;
}

.chart h4 {
    margin: 0 0 18px 0;
    color: #6c2eb7;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    height: 120px;
}

.bars > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.bars > div > div {
    width: 100%;
    background: #7ee6f7;
    border-radius: 6px 6px 0 0;
    transition: height 0.3s;
}

.bars > div span {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #6c2eb7;
}

.side-widgets {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ultimos-contratos,
.boletos-vencer {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
}

.ultimos-contratos h4,
.boletos-vencer h4 {
    color: #7e3ff2;
    margin-bottom: 12px;
}

.ultimos-contratos ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.ultimos-contratos li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 1rem;
    justify-content: space-between;
    position: relative;
    padding: 16px 0;
}

.ultimos-contratos li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: 52px;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ccc;
}

.ultimos-contratos li > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.ultimos-contratos li > div > div {
    font-weight: 500;
    color: #333;
}

.ultimos-contratos small {
    color: #888;
    font-size: 0.9em;
}

.ultimos-contratos a {
    color: #7e3ff2;
    text-decoration: none;
    font-size: 0.95em;
}

.boletos-vencer .calendar {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.calendar-body .days {
    font-size: 0.95em;
    margin-bottom: 4px;
}

.calendar-body .dates {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: flex-start;
}

.calendar-body .dates span {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
    margin-bottom: 2px;
}

.arrow-right {
    font-family: "Material Icons";
    font-size: 13px;
    color: #fff;
    background: #6c22c7;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.arrow-right:hover {
    background: #5a1da3;
}

@media (max-width: 1100px) {
    .dashboard-widgets {
        flex-direction: column;
    }
    .side-widgets {
        flex-direction: row;
    }
}

@media (max-width: 800px) {
    .sidebar {
        width: 60px;
        transition: width 0.3s;
        overflow-x: hidden;
        z-index: 1001;
    }
    .sidebar.sidebar-open {
        width: 220px;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
    }
    .sidebar .logo,
    .sidebar-bottom a {
        display: none;
    }
    nav ul li span {
        display: none;
        transition: opacity 0.2s;
    }
    .sidebar.sidebar-open nav ul li span {
        display: inline;
        opacity: 1;
    }
    .sidebar-overlay {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.2);
    }
    .sidebar.sidebar-open + .sidebar-overlay {
        display: block;
    }
    main {
        margin-left: 60px;
    }
}
@media (max-width: 400px) {
    header {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 10px;
    }
    .search-container,
    .user-info {
        width: 100%;
        justify-content: flex-start;
    }
    .user-info {
        margin-top: 8px;
        justify-content: flex-start;
    }
    header input[type="text"] {
        width: 100%;
        max-width: 100%;
    }
    .banner {
        padding: 0 20px;
    }
    .banner {
        padding: 8px 8px 0 8px;
        min-height: unset;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        text-align: left;
        overflow: visible;
    }
    .banner > div {
        padding: 0;
        gap: 4px;
    }
    .banner h2 {
        font-size: 1.05rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    .banner p {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    .banner button {
        align-self: flex-start;
        margin-top: 4px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    .banner img {
        height: 60px;
        max-width: 40vw;
        position: absolute;
        right: 8px;
        bottom: 0;
        z-index: 1;
    }
    .dashboard-widgets {
        flex-direction: column;
        gap: 20px;
    }
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    .stat-card {
        padding: 20px;
    }
    .stat-value {
        font-size: 1.8rem;
    }
    .chart {
        padding: 15px 20px;
    }
    .chart h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .bars {
        gap: 12px;
        height: 100px;
    }
    .bars > div {
        width: 30px;
    }
    .bars > div span {
        font-size: 0.8rem;
    }
    .ultimos-contratos,
    .boletos-vencer {
        padding: 15px;
    }
    .ultimos-contratos li {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    .ultimos-contratos li img {
        width: 24px;
        height: 24px;
    }
    .calendar {
        font-size: 0.8rem;
    }
    .calendar-header {
        padding: 8px;
    }
    .calendar-body .dates span {
        padding: 4px;
        font-size: 0.75rem;
    }
}

/* ================= DASHBOARD GRID LAYOUT ================= */
.dashboard-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 40px;
}

.dashboard-row {
    display: flex;
    gap: 32px;
}

.dashboard-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Colunas com larguras específicas */
.dashboard-banner-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-ultimos-contratos-col {
    flex: 1;
}

.dashboard-chart-col {
    flex: 2;
}

.dashboard-calendar-col {
    flex: 1;
}

/* Ajustes para o banner ocupar mais espaço */
.dashboard-banner-col .banner {
    height: 250px;
    min-height: 250px;
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

/* Ajuste para os blocos de estatísticas ficarem lado a lado */
.dashboard-stats-col .stats {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
}

/* Ajuste para os widgets ficarem empilhados */
.dashboard-widgets-col .chart,
.dashboard-widgets-col .boletos-vencer {
    margin-bottom: 0;
}

/* Ajuste para a lista de contratos */
.dashboard-ultimos-contratos-col .ultimos-contratos {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.ultimos-contratos-title {
    color: #7e3ff2;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.dashboard-ultimos-contratos-col .ultimos-contratos h4 {
    margin-bottom: 16px;
    padding-left: 0;
    margin-top: 0;
}

.dashboard-ultimos-contratos-col .ultimos-contratos ul {
    padding-left: 0;
}

.ultimos-contratos img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ================= RESPONSIVE DASHBOARD GRID ================= */
@media (max-width: 1200px) {
    .dashboard-row {
        flex-direction: column;
        gap: 24px;
    }

    .dashboard-banner-col,
    .dashboard-ultimos-contratos-col,
    .dashboard-stats-col,
    .dashboard-widgets-col {
        flex: 1;
    }

    .dashboard-stats-col .stats {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .dashboard-area {
        padding: 24px 20px;
        gap: 24px;
    }

    .dashboard-row {
        gap: 20px;
    }

    .dashboard-col {
        gap: 20px;
    }
}

/* === CONTRATAÇÃO === */
.contratacao-area {
    padding: 40px 0 80px 0;
}

.contratacao-nav {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: #7e3ff2;
    font-weight: 500;
}
.contratacao-nav a {
    color: #7e3ff2;
    text-decoration: none;
    font-weight: 600;
}
.contratacao-nav a.active {
    color: #333;
    font-weight: 700;
}

.contratacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 160px);
    gap: 28px 32px;
    width: 100%;
    margin-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* max-width e margin removidos - 891 */
}

@media (min-width: 601px) and (max-width: 900px) {
    .contratacao-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 160px);
        gap: 20px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px 0;
    } /* max 900 */
    .contrato-card {
        min-height: 120px;
        height: auto;
        aspect-ratio: 1.6/1; /* Mantém proporção, se suportado */
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 600px) {
    .contratacao-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 160px);
        gap: 20px;
        padding-left: 8px;
        padding-right: 8px;
        gap: 12px 0;
    } /* max 600 */
    .contrato-card {
        min-height: 90px;
        height: auto;
        aspect-ratio: 1.3/1;
    }
}

.contrato-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-width: 0;
    min-height: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.08);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.contrato-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 24px 0 rgba(60, 30, 90, 0.16);
}
.contrato-card.destaque {
    background-color: #FFF;
    color: #6c2eb7;
}

.contrato-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px 24px;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(60, 30, 90, 0.12);
}
.contrato-card.destaque .contrato-titulo {
    color: #6c2eb7;
    text-shadow: none;
}

.contrato-titulo img {
    width: 32px;
    height: 32px;
}

.contratacao-voltar {
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: #7e3ff2;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.12);
    z-index: 10;
    transition: background 0.2s;
    text-decoration: none;
}
.contratacao-voltar:hover {
    background: #6c2eb7;
}
/*
@media (max-width: 900px) {
    .contratacao-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 160px);
        gap: 20px;
    }  max 900 3 
}*/

/* === PLANOS === */
.planos-area {
    padding: 40px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.planos-nav {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: #7e3ff2;
    font-weight: 500;
}
.planos-nav a {
    color: #7e3ff2;
    text-decoration: none;
    font-weight: 600;
}
.planos-nav a.active {
    color: #333;
    font-weight: 700;
}

.planos-bloco {
    background: #7e3ff2;
    border-radius: 16px;
    padding: 15px 0 10px 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.08);
    display: flex;
    align-items: flex-end;
    min-height: 90px;
}

.planos-bloco-direita {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    margin-left: auto;
    margin-right: 24px;
}

.planos-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-end;
    margin-left: 24px;
    gap: 12px;
}

.planos-titulo img {
    width: 36px;
    height: 36px;
    filter: brightness(1.2) sepia(1) hue-rotate(-40deg) saturate(6)
        brightness(1.2);
}

.planos-label {
    margin: 18px 0 12px 0;
    font-size: 1.1rem;
    color: #7e3ff2;
    font-weight: 500;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 4px;
}

button.plano-card {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #7e3ff2;
    background: #fff;
    border: 2px solid #7e3ff2;
    border-radius: 14px;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    cursor: pointer;
    transition: box-shadow 0.15s, border-color 0.15s;
    width: 100%;
    height: 100%;
    padding: 0;
}
button.plano-card:hover {
    border-color: #6c2eb7;
    box-shadow: 0 4px 16px 0 rgba(60, 30, 90, 0.12);
}

.plano-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #7e3ff2;
}

.plano-card small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #7e3ff2;
    margin-top: 1px;
}

@media (max-width:600px)
{
    .planos-bloco {
        display: flex;
        flex-direction: column-reverse;
        padding: 0 10px 10px 10px;
    }
    .cotas-valor {
        font-size: 1em!important;
    }
    .planos-titulo{
        font-size: 1.5em;
    }
    .planos-bloco-direita {
        gap:0;
    }
}

@media (max-width: 900px) {
    .planos-bloco,
    .planos-grid,
    .planos-nav,
    .planos-label {
        width: 90%;
        max-width: 100%;
    }
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(10, 50px);
        gap: 8px;
    }
}

.planos-voltar {
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: #7e3ff2;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.12);
    z-index: 10;
    transition: background 0.2s;
    text-decoration: none;
}

/* === COTAS === */
.cotas-area {
    padding: 40px 0 0 0;
}

.cotas-nav {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: #7e3ff2;
    font-weight: 500;
}
.cotas-nav a {
    color: #7e3ff2;
    text-decoration: none;
    font-weight: 600;
}
.cotas-nav a.active {
    color: #333;
    font-weight: 700;
}

.cotas-bloco {
    background: #7e3ff2;
    border-radius: 16px;
    padding: 24px 32px 24px 32px;
    margin-bottom: 64px;
    max-width: 900px;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.08);
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 80px;
    margin-left: auto;
    margin-right: auto;
}
.cotas-bloco-info {
    display: flex;
    align-items: flex-end;
}
.cotas-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.cotas-titulo img {
    width: 36px;
    height: 36px;
    filter: brightness(1.2) sepia(1) hue-rotate(-40deg) saturate(6)
        brightness(1.2);
}
.cotas-trocar {
    background: #80ffff;
    color: #7e3ff2;
    border: none;
    border-radius: 8px;
    padding: 4px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
}
.cotas-trocar:hover {
    background: #7ee6f7;
}
.cotas-valor {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-left: 12px;
}

.cotas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    justify-content: center;
    max-width: 900px;
}
.cota-card {
    background: #e8e8e8;
    border-radius: 18px;
    padding: 32px 28px 44px 28px;
    flex: 1 1 0;
    position: relative;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid #e0e0e0;
}
.cota-meses {
    position: absolute;
    left: 28px;
    top: -18px;
    background: #80ffff;
    color: #7e3ff2;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 16px;
    padding: 10px 22px;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
    text-align: left;
}

.cota-detalhes {
    margin-top: 18px;
    margin-bottom: 24px;
    color: #7e3ff2;
    font-size: 1rem;
    line-height: 1.5;
}
.cota-detalhes b {
    color: #333;
    font-size: 1.1rem;
}
.cota-selecionar {
    background: #6c22c7;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: -20px;
    transition: background 0.2s;
    margin-top: 0;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    z-index: 2;
}
.cota-selecionar:hover {
    background: #7e3ff2;
}
.cotas-voltar {
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: #7e3ff2;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.12);
    z-index: 10;
    transition: background 0.2s;
    text-decoration: none;
}
.cotas-voltar:hover {
    background: #6c2eb7;
}
@media (max-width: 900px) {
    .cotas-area {
        padding: 24px 0 0 0;
    }
    .cotas-bloco {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 12px 18px 12px;
        min-width: 0;
        max-width: 100%;
    }
    .cotas-valor,
    .cotas-trocar {
        position: static;
        margin-top: 16px;
        margin-right: 0;
        display: block;
        text-decoration: none;
    }
    .cotas-cards {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .cota-card {
        min-width: 0;
        max-width: 100%;
        margin: 5%;
        padding: 24px 12px 44px 12px;
    }
    .cota-selecionar {
        right: 8px;
        left: auto;
        bottom: -20px;
        transform: none;
    }
    .cota-detalhes {
        font-size: 1.1em!important;
    }
    .cota-detalhes b{
        font-size:0.7em!important;
    }
    .cota-meses {
        font-size:1.1em;
    }
    .cotas-nav{
        font-size: 0.7em;
    }
}

.cota-card,
.cota-card * {
    color: #7e3ff2 !important;
}

.cota-meses {
    color: #7e3ff2 !important;
    background: #80ffff;
}

.cota-selecionar {
    color: #fff !important;
}

/* === COTAS DADOS === */
.cotas-dados-area {
    padding: 40px 0 0 0;
}

.cotas-dados-info-bloco {
    background: #e8e8e8;
    border-radius: 18px;
    padding: 48px 0 24px 0;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.06);
    position: relative;
}
.cotas-dados-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    position: absolute;
    top: -28px;
    left: 32px;
    z-index: 2;
}
.cotas-dados-badge {
    background: #80ffff;
    color: #7e3ff2;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 14px;
    padding: 16px 32px 10px 32px;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cotas-dados-badge b {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7e3ff2;
}
.cotas-dados-infos {
    display: flex;
    gap: 48px;
    margin-top: 8px;
    padding-left: 32px;
}
.cotas-dados-infos-col {
    font-size: 0.85rem;
    color: #7e3ff2;
    min-width: 220px;
    line-height: 1.7;
    text-align: left;
}
.cotas-dados-infos-col b {
    color: #333;
    font-size: 1.1rem;
}
.cotas-dados-infos-col.wide {
    min-width: 220px;
    margin-left: 100px;
}

.cotas-dados-form-bloco {
    background: #e8e8e8;
    border-radius: 18px;
    padding: 48px 10px 24px 10px;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.06);
    margin-bottom: 80px;
    position: relative;
    text-align: center;
}
.cotas-dados-form-titulo {
    background: #7e3ff2;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px 14px 14px 14px;
    padding: 10px 32px;
    margin-bottom: 24px;
    display: block;
    position: absolute;
    top: -22px;
    left: 32px;
    width: auto;
    min-width: 180px;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
}
.cotas-dados-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cotas-dados-form-row {
    display: grid;
    width: 100%;
    gap: 18px;
    margin-bottom: 18px;
}

/* Grid específico para formulário de usuários */
.cotas-dados-form-row {
    grid-template-columns: repeat(12, 1fr);
}
.input-cotas {
    min-width: 0;
}
.cotas-dados-form-row input[type="text"] {
    flex: 1;
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 13px;
    color: #7e3ff2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    outline: none;
    transition: box-shadow 0.2s;
}
.cotas-dados-form-row input[type="text"]:focus {
    box-shadow: 0 2px 8px 0 #7e3ff2;
}
.cotas-dados-form-row input[type="text"]::placeholder {
    font-size: 13px;
    color: #b6aee0;
    opacity: 1;
}
.cotas-dados-form-row select {
    flex: 1;
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 0.77rem;
    color: #7e3ff2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    outline: none;
    transition: box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cotas-dados-form-row select:focus {
    box-shadow: 0 2px 8px 0 #7e3ff2;
}
@media (max-width: 1100px) {
    .cotas-dados-info-bloco,
    .cotas-dados-form-bloco {
        max-width: 100%;
        padding: 24px 10px 18px 10px;
    }
    .cotas-dados-badges {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .cotas-dados-infos {
        flex-direction: column;
        gap: 12px;
    }
    .cotas-dados-form-titulo {
        padding: 10px 18px;
    }
    .cotas-dados-form-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .cotas-dados-badges {
        flex-direction: column;
        gap: 112px;
        align-items: flex-start;
    }
}

.cotas-dados-infos-titulo {
    font-size: 0.8rem;
    color: #7e3ff2;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 18px;
    padding-left: 32px;
}

/* === GRID UTILITÁRIO PARA FORMULÁRIOS === */
.col-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* === GRADE DE SELEÇÃO DE COTAS === */
.cotas-selecao-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    justify-content: flex-start;
    padding: 32px 30px 16px 30px;
}
.cota-circulo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7e3ff2;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.08);
}
.cota-circulo:hover {
    background: #a084e8;
}
.cota-circulo-selecionado {
    background: #80ffff !important;
    color: #7e3ff2 !important;
    border: 2px solid #7e3ff2;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.15);
}

.btn-salvar-reserva {
    background: #008c3e;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 16px;
    padding: 10px 32px;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
    transition: background 0.2s;
    margin-bottom: 40px;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn-salvar-reserva:hover {
    background: #006c2e;
}
.btn-salvar-reserva:disabled,
.btn-salvar-reserva[disabled] {
    background: #cccccc !important;
    color: #333 !important;
    cursor: not-allowed !important;
    border: 1px solid #aaa !important;
    opacity: 0.7;
}

@media (max-width: 700px) {
    .cotas-selecao-grid {
        gap: 10px;
        padding: 18px 0 8px 0;
    }
    .cota-circulo {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    .btn-salvar-reserva {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
    }
}

.bloco-badges-info {
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
    margin: 10px 0 30px 0;
    border-radius: 18px;
    padding: 0 20px 20px 20px;
    margin-bottom: 36px;
    box-shadow: 0 0 12px 0 rgba(60, 30, 90, 0.16);
    border: 1px solid #E1E1E1;
}

.linha-badges {
    display: flex;
    background-color: transparent;
    align-items: center;
    justify-content: space-between;
    margin-top: -40px;
}

.plano-info {
    background-color: #e6e6ee;
    display: flex;
}

.titulo-badge {
    font-size: 1rem;
    color: #7e3ff2;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 18px;
    padding-left: 0px;
}
.titulo-confirmacao{
    background: #7e3ff2;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px 14px 14px 14px;
    padding: 10px 32px;
    margin-bottom: 34px;
    display: block;
    position: relative;
    top: -22px;
    left: 32px;
    width: auto;
    max-width: 40%;
    min-width: 180px;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
}

.cotas-dados-infos-col.right {
    margin-left: 50px;
}

@media (max-width:1000px) {
    .linha-badges {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        align-items: center;
        justify-content: space-between;
        margin-top: 0px;
        gap: 10px;
    }

    .plano-info {
        background-color: #e6e6ee;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
    }

    .cotas-dados-infos-col.right {
        margin-left: 0;
    }
}

/* === GERAR BOLETO === */
.gerar-boleto-bloco {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 110px;
}
.barcode-img {
    /*position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    height: 64px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(60,30,90,0.10);
    padding: 6px 12px;*/
    height: 60px;
    width: auto;
}

.boleto-info-bloco {
    background: #e8e8e8;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.06);
    margin-bottom: 32px;
    margin-top: 32px;
    position: relative;
    min-height: 100px;
}
.boleto-info-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.boleto-info-label {
    font-size: 1.05rem;
    color: #7e3ff2;
    font-weight: 600;
    min-width: 120px;
}
.boleto-info-value {
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 600;
    word-break: break-all;
}

@media (max-width: 900px) {
    .gerar-boleto-bloco {
        min-height: 80px;
        padding-right: 0;
    }
    .barcode-img {
        right: 10px;
        height: 44px;
        padding: 4px 6px;
    }
    .boleto-info-bloco {
        padding: 18px 8px 14px 8px;
    }
    .boleto-info-label {
        min-width: 80px;
        font-size: 0.95rem;
    }
    .boleto-info-value {
        font-size: 1rem;
    }
}

.btn-pesquisar-roxa {
    background: #7e3ff2;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    padding: 12px 32px;
    cursor: pointer;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    transition: background 0.2s;
    margin-left: 18px;
}
.btn-pesquisar-roxa:hover {
    background: #6c2eb7;
}

.input-cotas {
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 1.1rem;
    color: #7e3ff2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    outline: none;
    transition: box-shadow 0.2s;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.input-cotas:focus {
    box-shadow: 0 2px 8px 0 #7e3ff2;
}
.input-cotas::placeholder {
    font-size: 0.95rem;
    color: #b6aee0;
    opacity: 1;
}

/* === LOGIN === */
body.login-bg {
    background: #7e3ff2;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}
.login-left {
    flex: 1;
    background: #7e3ff2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #b6aee0;
}
.login-logo {
    text-align: center;
}
.login-logo img {
    width: 200px;
    max-width: 90vw;
    margin-bottom: 32px;
}
.login-logo span {
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 18px;
}
.login-right {
    flex: 1;
    background: #7e3ff2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.login-icons {
    position: absolute;
    top: 40px;
    right: 60px;
    display: flex;
    gap: 24px;
}
.login-icons .material-icons {
    color: #fff;
    font-size: 28px;
    opacity: 0.85;
    cursor: pointer;
}
.login-form-box {
    background: transparent;
    border-radius: 18px;
    padding: 0 0 0 0;
    min-width: 380px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-avatar .material-icons {
    color: #fff;
    font-size: 50px !important;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}
.login-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-input-group {
    position: relative;
    width: 100%;
}
.login-input-group .material-icons {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #b6aee0;
    font-size: 22px;
    pointer-events: none;
}
.login-input {
    padding-left: 48px;
}
.login-form .input-cotas {
    width: 100%;
    margin-bottom: 0;
}
.login-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.98rem;
    color: #fff;
    margin-top: 2px;
    margin-bottom: 8px;
}
.login-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.98rem;
}
.login-options input[type="checkbox"] {
    accent-color: #7e3ff2;
    margin-right: 4px;
}
.login-options a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.98rem;
    opacity: 0.9;
    margin-left: 12px;
}
.login-btn {
    background: #80ffff;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    padding: 12px 0;
    width: 100%;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}
.login-btn:hover {
    background: #7ee6f7;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }
    .login-left,
    .login-right {
        flex: none;
        width: 100vw;
        min-height: 40vh;
        border-right: none;
        border-bottom: 2px solid #b6aee0;
    }
    .login-right {
        border-bottom: none;
        min-height: 60vh;
    }
    .login-form-box {
        min-width: 0;
        max-width: 98vw;
    }
    .login-logo img {
        width: 220px;
        max-width: 80vw;
    }
}
@media (max-width: 600px) {
    .login-left,
    .login-right {
        min-height: 30vh;
        padding: 0;
    }
    .login-container {
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    .login-left {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px; /* mx 600*/
    }
    .login-right {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }
    .login-form-box {
        padding: 0 4vw;
        width: 90vw;
        max-width: 90vw;
    }
    .login-logo img {
        width: 140px;
        max-width: 70vw; /* mx 600*/
    }
    .login-avatar .material-icons {
        font-size: 1.2rem;
    }
    .login-title {
        font-size: 1.1rem;
    }
    .login-btn {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    .login-input {
        font-size: 0.95rem;
        padding: 10px 46px; /* mx 600 2 */
    }
}

.btn-verde {
    background: #008c3e !important;
    color: #fff !important;
}
.btn-verde:hover {
    background: #006c2e !important;
}

.btn-titulo-verde {
    display: inline-block;
    background: #008c3e;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    padding: 10px 32px;
    margin-bottom: 24px;
    min-width: 180px;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
    border: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: auto;
    margin-right: auto;
}
.btn-titulo-verde:hover {
    background: #006c2e;
}
.btn-titulo-verde:disabled,
.btn-titulo-verde[disabled] {
    background: #cccccc !important;
    color: #333 !important;
    cursor: not-allowed !important;
    border: 1px solid #aaa !important;
    opacity: 0.7;
}

.input-erro {
    border: 2px solid #e74c3c !important;
    background: #fff0f0 !important;
    transition: border 0.2s, background 0.2s;
}

#paginacao-cotas button {
    background: #7e3ff2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 18px;
    margin: 0 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
#paginacao-cotas button:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
}

.cotas-grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cotas-telefone-row {
    align-items: center;
    gap: 6px;
    width: 100%;
}
.label-telefone {
    color: #7e3ff2;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    margin-right: 0;
    flex: 0;
    white-space: nowrap;
    letter-spacing: 0;
}
.btn-adicionar-telefone {
    background: #008c3e;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    height: 30px;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    min-width: unset;
    white-space: nowrap;
    transition: background 0.2s;
    margin-left: 18px;
    display: inline-block;
}
.btn-adicionar-telefone:hover {
    background: #006c2e;
}

.endereco-bloco {
    margin-bottom: 30px;
}
.endereco-bloco:last-child {
    margin-bottom: 0;
}

.alerta {
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: left;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.alerta-danger {
    background: #e74c3c;
    color: #fff;
    border: 1px solid #e74c3c;
}

/* Ajuste para inputs de e-mail terem o mesmo font-size dos de telefone */
.emails-inputs input[type="email"].input-cotas {
    font-size: 13px !important;
}

/* Estilo para tela de confirmação de contratação */
.info-contratacao {
    color: #7e3ff2;
    text-align: left;
}

.confirma-contratacao-titulo {
    color: #fff;
    text-align: left;
}
.confirma-contratacao-info {
    color: #7e3ff2;
    text-align: left;
}
.confirma-contratacao-info form {
    margin-top: 24px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.list-header-left,
.list-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.list-length-select:focus,
.list-search-input:focus {
    outline: none;
    border-color: #6c2eb7;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(126, 63, 242, 0.2);
}

.list-length-select option {
    background: #fff;
    color: #7e3ff2;
}

.list-table th {
    background: #7e3ff2;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    vertical-align: middle;
}

.list-table th:first-child {
    padding: 18px 4px;
    border-radius: 16px 0 0 16px;
}

.list-table th:last-child {
    border-radius: 0 16px 16px 0;
}

.list-table-wrapper {
    overflow-x: auto;
}
.list-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.list-table td {
    padding: 5px 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-size: 0.75rem;
    vertical-align: middle;
    line-height: 1.2;
}

.list-table tr:hover {
    background: rgba(126, 63, 242, 0.08);
    transition: background 0.2s ease;
}

.list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #7e3ff2;
}
.list-footer-right {
    display: flex;
    gap: 6px;
}
.list-pagination-btn {
    background: #fff;
    border: 1px solid #7e3ff2;
    color: #7e3ff2;
    border-radius: 6px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.list-pagination-btn.active,
.list-pagination-btn:hover {
    background: #7e3ff2;
    color: #fff;
}

.card-padrao {
    background: #e8e8e8;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(60, 30, 90, 0.06);
    padding: 5px 32px 24px 32px;
    margin-bottom: 32px;
    width: 100%;
}
.card-padrao-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7e3ff2;
    margin-bottom: 8px;
}
.card-padrao-descricao {
    font-size: 1rem;
    color: #333;
    margin-bottom: 18px;
}
.card-padrao-conteudo {
    /* Espaço para conteúdo dinâmico */
}

.card-list-conteudo {
    position: relative;
    padding-top: 20px;
}

.card-list-description {
    background: #7e3ff2;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    padding: 10px 32px;
    margin-bottom: 0;
    display: block;
    position: absolute;
    top: -46px;
    left: 32px;
    width: 200px;
    min-width: 0;
    max-width: 100%;
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.1);
    z-index: 2;
}

@media (max-width: 600px) {
    .card-list-description {
        left: 10px;
        width: 90vw;
        padding: 10px 10px;
    }
}

.btn-action-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.btn-action {
    background: #008c3e;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 400;
    border-radius: 6px;
    padding: 6px 16px;
    text-decoration: none;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    border: none;
    display: inline-block;
    transition: background 0.2s;
    height: auto;
    margin-top: 16px;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}
.btn-action:hover {
    background: #006c2e;
    cursor: pointer;
}

.btn-action-orange {
    background: #ff9800;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 400;
    border-radius: 6px;
    padding: 6px 16px;
    text-decoration: none;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    border: none;
    display: inline-block;
    transition: background 0.2s;
    height: auto;
    margin-top: 16px;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}
.btn-action-orange:hover {
    background: #f57c00;
    cursor: pointer;
}

/* Botão submit com cor verde */
.btn-action-orange[style*="background: #4caf50"]:hover {
    background: #45a049 !important;
    cursor: pointer;
}

.btn-edit {
    color: #ff6b35 !important;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.btn-edit:hover {
    color: #e55a2b !important;
}

.btn-save {
    background: #008c3e;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: background 0.2s;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    cursor: pointer;
}
.btn-save:hover {
    background: #006c2e;
    cursor: pointer;
}

.list-table th:first-child,
.list-table td:first-child {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    text-align: center;
    vertical-align: middle;
}

.list-table th:first-child {
    padding: 15px 4px;
    border-radius: 16px 0 0 16px;
}

.list-table td:first-child {
    padding: 5px 4px;
    line-height: 1;
}

.list-length-select,
.list-search-input {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

/* Dropdown só abre com classe .active, não com hover */
nav ul li.dropdown:hover .dropdown-content {
    display: none;
}

nav ul li.dropdown.active .dropdown-content {
    display: block;
}

nav ul li.dropdown:hover .dropdown-arrow {
    transform: none;
}

nav ul li.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.list-search-input::placeholder {
    color: rgba(126, 63, 242, 0.7);
    opacity: 1;
}

/* ================= CLASSES PARA FORMULÁRIOS DE USUÁRIOS ================= */

/* Labels dos campos */
.form-label {
    display: block;
    margin-bottom: 4px;
    color: #555;
    font-size: 0.6rem;
    font-weight: 500;
    text-align: left;
}

/* Containers dos campos */
.form-field-container {
    display: flex;
    flex-direction: column;
}

/* Grid específico para formulários de usuários */
.form-grid-1 {
    grid-column: span 1;
}

.form-grid-2 {
    grid-column: span 2;
}

.form-grid-3 {
    grid-column: span 3;
}

.form-grid-4 {
    grid-column: span 4;
}

.form-grid-6 {
    grid-column: span 6;
}

.form-grid-12 {
    grid-column: span 12;
}

/* Container para campos de senha */
.form-password-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Label de ação (como "Alterar senha") */
.form-action-label {
    color: #7e3ff2;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Botão de ação pequeno */
.btn-action-small {
    background: #4caf50;
    margin: 0;
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Container para radio buttons */
.form-radio-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Radio button customizado */
.form-radio {
    width: 16px;
    height: 16px;
    accent-color: #7e3ff2;
}

/* Label do radio button */
.form-radio-label {
    color: #7e3ff2;
    font-weight: 500;
    cursor: pointer;
}

/* Container para grupo de radio buttons */
.form-radio-group {
    display: flex;
    gap: 24px;
}

/* Label de status */
.form-status-label {
    color: #7e3ff2;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Container para botões */
.form-buttons-container {
    justify-content: flex-start;
    gap: 20px;
}

/* Botão de ação com grid */
.btn-action-grid-3 {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
}

/* Botão verde */
.btn-action-green {
    background: #4caf50 !important;
    cursor: pointer;
}

.btn-action-green:hover {
    background: #45a049 !important;
    cursor: pointer;
}

/* Ícone pequeno */
.btn-icon-small {
    font-size: 16px;
}

/* ================= SELETOR DE ÍCONES PERSONALIZADO ================= */

.icon-selector {
    position: relative;
    width: 100%;
}

.icon-selector-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 13px;
    color: #7e3ff2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    outline: none;
    transition: box-shadow 0.2s;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.icon-selector-display:hover {
    box-shadow: 0 2px 8px 0 rgba(60, 30, 90, 0.12);
}

.icon-selector-display .material-icons {
    font-size: 20px;
    color: #7e3ff2;
}

.icon-selector-display .dropdown-arrow {
    margin-left: auto;
    font-size: 18px;
    transition: transform 0.2s;
}

.icon-selector.active .icon-selector-display .dropdown-arrow {
    transform: rotate(180deg);
}

.icon-selector-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px 0 rgba(60, 30, 90, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
    border: 1px solid #e0e0e0;
}

.icon-selector.active .icon-selector-dropdown {
    display: block;
}

.icon-category {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.icon-category:last-child {
    border-bottom: none;
}

.icon-category h4 {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7e3ff2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.icon-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.icon-option:hover {
    background: rgba(126, 63, 242, 0.08);
}

.icon-option.selected {
    background: rgba(126, 63, 242, 0.12);
    border: 1px solid rgba(126, 63, 242, 0.3);
}

.icon-option .material-icons {
    font-size: 24px;
    color: #7e3ff2;
}

.icon-option span {
    font-size: 0.75rem;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsividade para o seletor de ícones */
@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .icon-option {
        padding: 8px 4px;
    }

    .icon-option .material-icons {
        font-size: 20px;
    }

    .icon-option span {
        font-size: 0.7rem;
    }
}

.segmento-titulo {
    color: #555;
    border-bottom: 1px solid #ccc;
    margin: 4px 0 2px 0;
    font-size: 0.95em;
}

.segmento-linha {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0 0 8px 0;
    border: none;
    display: block;
}

.grupo-btn {
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    padding: 0 18px;
    color: #7e3ff2;
    background: #fff;
    border: 2px solid #7e3ff2;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    cursor: pointer;
    transition: box-shadow 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grupo-btn.active {
    background: #7e3ff2;
    color: #fff;
    border-color: #7e3ff2;
}
.grupo-btn.inativo {
    border-color: #888;
    color: #888;
}

/* Modal customizada */
.modal-custom {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-custom-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px 0 rgba(60, 30, 90, 0.15);
}

.modal-custom-header {
    background: #7e3ff2;
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-custom-header h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-custom-body {
    padding: 24px;
}

.modal-custom-body label {
    color: #333;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.modal-custom-body input[type="radio"] {
    margin-right: 8px;
    accent-color: #7e3ff2;
}

.modal-custom-body label[for="ativo"],
.modal-custom-body label[for="inativo"] {
    display: inline;
    margin-left: 4px;
    margin-right: 16px;
}

.modal-custom-footer {
    padding: 16px 24px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-custom-footer button {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================= CLASSES REUTILIZÁVEIS PARA MODAIS ================= */

/* Modal overlay */
.modal-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

/* Container da modal */
.modal-container {
    background-color: #fff;
    margin: 15% auto;
    padding: 32px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho da modal */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    margin: 0;
    color: #7e3ff2;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Corpo da modal */
.modal-body {
    margin-bottom: 20px;
}

.modal-body:last-child {
    margin-bottom: 0;
}

/* Inputs da modal */
.modal-input {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 13px;
    color: #7e3ff2;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.modal-input:focus {
    box-shadow: 0 2px 8px 0 #7e3ff2;
    border-color: #7e3ff2;
}

/* Rodapé da modal */
.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Botões da modal */
.modal-btn {
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
}

.modal-btn-cancel {
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}

.modal-btn-cancel:hover {
    background: #f57c00;
}

.modal-btn-confirm {
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}

.modal-btn-confirm:hover {
    background: #45a049;
}

/* Responsividade para modais */
@media (max-width: 600px) {
    .modal-container {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }

    .modal-footer {
        flex-direction: column;
        gap: 8px;
    }

    .modal-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Rodapé da modal */
.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Grupo de radio buttons da modal */
.modal-radio-group {
    margin-top: 12px;
}

/* Botões da modal */

/* ================= BOTÕES DE PLANOS COMERCIAIS ================= */

/* Botão exclusivo para planos comerciais */
.btn-plano-comercial {
    min-width: 200px;
    min-height: 40px;
    padding: 6px 16px;
    text-align: center;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: 600;
    color: #7e3ff2;
    background: #fff;
    border: 2px solid #7e3ff2;
    border-radius: 14px;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    cursor: pointer;
    transition: box-shadow 0.15s, border-color 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.btn-plano-comercial.active {
    background: #7e3ff2;
    color: #fff;
    border-color: #7e3ff2;
}
.btn-plano-comercial.inativo {
    border-color: #888;
    color: #888;
}
.btn-plano-comercial small {
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.2;
}

.planos-grid.planos-comerciais {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

@media (max-width: 768px) {
    .btn-plano-comercial {
        min-width: 140px;
        min-height: 36px;
        padding: 5px 8px;
        font-size: 0.95rem;
    }
    .planos-grid.planos-comerciais {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }
}

/* Remove estilos antigos para plano-card.plano-comercial */
.plano-card.plano-comercial {
    min-width: unset;
    min-height: unset;
    padding: unset;
    text-align: unset;
    line-height: unset;
}

/* ================= BOTÕES DE BENS ================= */

/* Botão específico para bens - igual ao plano-card original */
.btn-bem {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #7e3ff2;
    background: #fff;
    border: 2px solid #7e3ff2;
    border-radius: 14px;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.06);
    cursor: pointer;
    transition: box-shadow 0.15s, border-color 0.15s;
    width: 100%;
    height: 100%;
    padding: 0;
}
.btn-bem:hover {
    border-color: #6c2eb7;
    box-shadow: 0 4px 16px 0 rgba(60, 30, 90, 0.12);
}
.btn-bem span {
    font-size: 1rem;
    font-weight: 600;
    color: #7e3ff2;
}
.btn-bem small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #7e3ff2;
    margin-top: 1px;
}

/* Grid específico para bens */
.planos-grid-bens {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 50px);
    gap: 10px 10px;
    max-width: 900px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .planos-grid-bens {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ================= AJUSTES PARA ALINHAMENTO DE LABELS ================= */

/* Ajuste para campos de telefone e e-mail */
.telefones-inputs .form-field-container,
.emails-inputs .form-field-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.telefones-inputs .form-field-container .form-label,
.emails-inputs .form-field-container .form-label {
    text-align: left;
    width: 100%;
}

/* Ajuste para campos de parceiros */
.parceiros-inputs .form-field-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.parceiros-inputs .form-field-container .form-label {
    text-align: left;
    width: 100%;
}

/* Garantir que todos os labels fiquem alinhados à esquerda */
.form-field-container .form-label {
    text-align: left !important;
    width: 100%;
}

/* Regras mais específicas para garantir alinhamento à esquerda */
.form-label,
.form-field-container .form-label,
.cotas-dados-form-row .form-field-container .form-label,
.telefones-inputs .form-field-container .form-label,
.emails-inputs .form-field-container .form-label,
.parceiros-inputs .form-field-container .form-label,
.endereco-bloco .form-field-container .form-label {
    text-align: left !important;
    width: 100%;
    display: block;
}

/* --- AJUSTES DE RESPONSIVIDADE PARA LOGIN --- */
@media (min-width: 601px) and (max-width: 900px) {
    .login-container {
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    .login-left,
    .login-right {
        flex: none;
        width: 100vw;
        border-right: none;
        border-bottom: none;
    }
    .login-left {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .login-right {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }
    .login-form-box {
        min-width: 0;
        max-width: 90vw;
        width: 90vw;
    }
    .login-logo img {
        width: 160px;
        max-width: 60vw;
    }
    .login-avatar .material-icons {
        font-size: 1.5rem;
    }
    .login-title {
        font-size: 1.3rem;
    }
    .login-input {
        font-size: 1rem;
        padding: 12px 42px; /* max 900 */
    }
    .login-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .login-form-box {
        max-width: 400px;
        width: 90vw;
    }
}

/* ===== NOVO LAYOUT LOGIN CENTRALIZADO ===== */
.login-box {
    display: none !important;
}

.cota-botoes-opcao {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 18px;
    margin-top: 18px;
}
.btn-cota-opcao {
    flex: 1 1 0;
    background: #6c22c7;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px 0 rgba(60, 30, 90, 0.08);
    margin: 0;
    min-width: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.btn-cota-opcao:hover {
    background: #7e3ff2;
}

@media (max-width: 600px) {
    .cota-botoes-opcao {
        gap: 10px;
        margin-top: 12px;
    }
    .btn-cota-opcao {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    header,
    .banner {
        padding: 0 20px;
    }
    .banner {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        position: relative;
        overflow: visible;
        min-height: 150px;
        height: auto;
    }
    .banner > div {
        padding: 10px 0 5px 0;
        gap: 10px;
    }
    .banner h2 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    .banner p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    .banner button {
        /*align-self: center;*/
        margin-top: auto; /* 8px;*/
        padding: 8px 20px;
        font-size: 0.85rem;
    } /* max 600 */
    .banner img {
        height: 70%;
        position: absolute;
        bottom: 0;
        right: 15px;
        max-width: 45%;
        z-index: 1;
    }
    .dashboard-widgets {
        flex-direction: column;
        gap: 20px;
    }
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    .stat-card {
        padding: 20px;
    }
    .stat-value {
        font-size: 1.8rem;
    }
    .chart {
        padding: 15px 20px;
    }
    .chart h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .bars {
        gap: 12px;
        height: 100px;
    }
    .bars > div {
        width: 30px;
    }
    .bars > div span {
        font-size: 0.8rem;
    }
    .ultimos-contratos,
    .boletos-vencer {
        padding: 15px;
    }
    .ultimos-contratos li {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    .ultimos-contratos li img {
        width: 24px;
        height: 24px;
    }
    .calendar {
        font-size: 0.8rem;
    }
    .calendar-header {
        padding: 8px;
    }
    .calendar-body .dates span {
        padding: 4px;
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .cotas-dados-form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    .cotas-dados-form-row > .form-field-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .cotas-dados-form-row input,
    .cotas-dados-form-row select {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .telefones-inputs {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .telefones-inputs .form-field-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        grid-column: auto !important;
    }
    .telefones-inputs input[type="text"] {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .emails-inputs {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .emails-inputs .form-field-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        grid-column: auto !important;
    }
    .emails-inputs input[type="email"] {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Para o bloco de inputs de patrimônio e renda */
    .cotas-dados-form-bloco > div[style*="grid-template-columns:repeat(12,1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .cotas-dados-form-bloco > div[style*="grid-template-columns:repeat(12,1fr)"] .form-field-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        grid-column: auto !important;
    }
    .cotas-dados-form-bloco > div[style*="grid-template-columns:repeat(12,1fr)"] input[type="text"] {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
.info-line {
    font-size: 0.85rem;
    color: #7e3ff2;
    line-height: 1.7;
}
.texto-strong {
    font-weight: 700;
}
