@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Estilos específicos para a página de perfil */
body.profile-page {
    background-color: #003399;
    overflow-y: auto;
    padding-bottom: 70px;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.postimg.cc/gkGm3cPk/39912e55-c905-439e-b4c1-9a880e836687.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* Estilo para páginas com fundo padrão (index, stand, meu) */
.default-page {
    background-color: #232323;
}

body.default-page:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://i.postimg.cc/gkGm3cPk/39912e55-c905-439e-b4c1-9a880e836687.png') no-repeat center center fixed;
    background-size: cover;
}

/* Importante: remover o fundo de imagem para as páginas de registro */
.subpage-blue:before {
    background-image: none !important;
    background-color: #fff !important;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

/* Estilo para a página garage com fundo azul mais claro */
.garage-page {
    background-color: #0066cc;
    background-image: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

/* Estilos para as novas páginas */
.page-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 10px;
    color: white;
    text-align: center;
}

/* Título da página de garagem */
.garage-page .page-title {
    margin-bottom: 15px;
    font-size: 2rem;
    padding-top: 0; /* Removido padding para subir o título */
}

/* Estilos para a página Garage */
.garage-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 60px; /* Baixado mais 10px conforme solicitado */
    margin-left: auto;
    margin-right: auto;
    max-width: 330px; /* Aumentada a largura do quadro */
    width: 95%;
}

.garage-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.garage-message {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.garage-submessage {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

.add-car-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.add-car-button:active {
    transform: scale(0.97);
    background-color: rgba(255, 255, 255, 0.3);
}

/* Estilos para a página Stand */
.filter-section {
    margin-bottom: 20px;
}

.search-box {
    position: relative;
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.filter-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.filter-button, .sort-button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(0, 82, 204, 0.6);
    border: none;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.filter-button:active, .sort-button:active {
    background-color: rgba(0, 82, 204, 0.8);
}

.cars-grid {
    margin-top: 20px;
}

.car-grid-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
}

.car-grid-placeholder p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.car-grid-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Estilos para a página Meu (Perfil) - Nova versão */
.profile-page {
    color: white;
    height: 100%;
    overflow-y: auto;
    position: relative;
    padding-bottom: 70px; /* Espaço para o menu inferior */
}

/* Conteúdo deslizante para página de perfil */
.profile-content {
    position: relative;
    overflow-y: auto;
    height: calc(100% - 80px); /* Menos a altura do cabeçalho */
    padding-bottom: 30px;
}

/* Cabeçalho com informações do usuário */
.profile-header {
    background-color: rgba(0, 51, 153, 0.4);
    padding: 15px;
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.profile-logo {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-user-number {
    position: absolute;
    top: 20px;
    left: 80px;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.profile-user-id {
    position: absolute;
    top: 45px;
    left: 80px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.profile-support {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0052CC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-support i {
    font-size: 1.3rem;
}

/* Painéis de saldos */
.profile-balance-panels {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-top: 10px;
}

.balance-panel {
    background-color: rgba(0, 82, 204, 0.2);
    border-radius: 10px;
    width: 48%;
    padding: 15px;
    text-align: center;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #66cc33; /* Changed to green */
    margin-bottom: 5px;
}

.balance-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Painel de total de pontos - removido conforme solicitado */

/* Botões de ação */
.profile-action-buttons {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 15px;
    margin-top: 20px; /* Adicionado margin-top para compensar a remoção da seção de pontos */
}

.action-button {
    background-color: rgba(0, 82, 204, 0.2);
    border-radius: 10px;
    width: 48%;
    padding: 8px; /* Reduzido ainda mais */
    display: flex;
    justify-content: center; /* Centralizado, em vez de space-between */
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.recharge-button {
    background-color: rgba(102, 153, 51, 0.2);
}

.withdraw-button {
    background-color: rgba(0, 153, 204, 0.2);
}

.button-content {
    display: flex;
    align-items: center;
}

.button-content i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.arrow-icon {
    color: rgba(255, 255, 255, 0.6);
}

/* Grade de funcionalidades */
.profile-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    background-color: rgba(0, 82, 204, 0.1);
    border-radius: 10px;
    margin: 0 15px;
}

.feature-item {
    background-color: rgba(0, 82, 204, 0.2);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.logo {
    position: fixed;
    top: -65px;
    left: 0;
    z-index: 10;
}

.logo img {
    height: 180px;
    width: auto;
}

/* Carrossel */
.carousel-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 95vw;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.carousel {
    display: flex;
    width: 100%;
    height: 180px;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Menu de navegação na parte inferior */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #0052CC; /* Tonalidade mais escura e sólida (sem transparência) */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px 0 5px;
}

.menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.65rem;
    transition: color 0.3s;
}

.menu-item i {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.menu-item span {
    font-size: 0.65rem;
}

.menu-item.active {
    color: white;
}

/* Botões de ação abaixo do carrossel */
.action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.button-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.action-button {
    width: 49%;
    padding: 25px 0;
    border-radius: 12px;
    background-color: rgba(0, 82, 204, 0.8);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.action-button:active {
    transform: scale(0.98);
    background-color: rgba(0, 82, 204, 0.9);
}

.action-button i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.action-button span {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.action-button .subtitle {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

/* Estilo para conteúdo deslizante geral */
.scrollable-content {
    position: absolute;
    top: calc(20% + 180px - 60px); /* Posição do carrossel + altura - 60px (baixado em 0,5cm / 20px) */
    left: 0;
    right: 0;
    bottom: 60px; /* Espaço para o menu inferior */
    overflow-y: auto;
    z-index: 5;
    padding: 0 5%; /* Aumenta a largura dos botões (90%) */
    -webkit-overflow-scrolling: touch; /* Para scroll suave no iOS */
    padding-bottom: 100px; /* Espaço extra no final do conteúdo */
}

/* Estilo específico para conteúdo deslizante na página garage */
.garage-page .scrollable-content {
    top: 50px; /* Subido mais 10px conforme solicitado */
}

/* Seção de notícias */

/* Estilos para status de transações */
.status-success, .status-completed, .success {
    color: #28a745;
    font-weight: 600;
}

.status-pending, .pending {
    color: #ffc107;
    font-weight: 600;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-failed, .status-rejected, .rejected {
    color: #dc3545;
    font-weight: 600;
    background-color: rgba(220, 53, 69, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-processing, .processing {
    color: #17a2b8;
    font-weight: 600;
    background-color: rgba(23, 162, 184, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

/* Cards de estatísticas */
        .stats-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-left: 4px solid var(--primary-color);
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

.stats-card .number {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .stats-card .label {
            color: #666;
            font-size: 0.9em;
            line-height: 1.3;
            margin: 0;
        }

.support-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 82, 204, 0.9);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s;
}

.support-button:active {
    transform: scale(0.95);
}

/* Animação de carregamento com carro */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease;
    background-color: rgba(0, 51, 153, 0.1); /* Fundo levemente visível para bloquear interações */
}

.car-animation {
    width: 70px;
    height: 30px;
    position: relative;
    margin-bottom: 15px;
}

.car-body {
    position: absolute;
    width: 55px;
    height: 14px;
    background-color: rgba(0, 82, 204, 0.9);
    border-radius: 8px 12px 2px 2px;
    bottom: 0;
    left: 7px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.car-top {
    position: absolute;
    width: 35px;
    height: 10px;
    background-color: rgba(0, 102, 255, 0.9);
    border-radius: 8px 8px 0 0;
    bottom: 14px;
    left: 17px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.car-wheel {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #222;
    border-radius: 50%;
    bottom: -4px;
    border: 2px solid #666;
    animation: wheel-spin 0.8s infinite linear;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.wheel-left {
    left: 12px;
}

.wheel-right {
    right: 12px;
}

.car-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 50%;
    bottom: 7px;
    right: 3px;
    animation: car-light 0.5s infinite alternate;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.8);
}

.road {
    position: relative;
    width: 120px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.road-line {
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    top: 50%;
    transform: translateY(-50%);
    animation: road-move 0.8s infinite linear;
}

.loading-text {
    color: rgba(0, 82, 204, 0.9);
    font-size: 12px;
    margin-top: 10px;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}

@keyframes wheel-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes road-move {
    0% {
        left: 120px;
    }
    100% {
        left: -15px;
    }
}

@keyframes car-light {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.car-move {
    animation: car-bounce 0.6s infinite alternate;
}

@keyframes car-bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-2px);
    }
}

/* Estilos para subpáginas */
.subpage {
    background: url('https://i.postimg.cc/gkGm3cPk/39912e55-c905-439e-b4c1-9a880e836687.png') no-repeat center center fixed;
    background-size: cover;
}

.subpage-green {
    background-color: rgba(80, 200, 120, 0.1);
    background-image: linear-gradient(to bottom, rgba(80, 200, 120, 0.3), rgba(0, 82, 204, 0.1));
}

.subpage-blue {
    background-color: #fff !important;
}

body.subpage-blue {
    background-color: #fff !important;
    background-image: none !important;
}

.subpage-blue .subpage-header {
    background-color: #0052CC;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subpage-blue .subpage-content {
    background-color: #fff;
    padding: 15px;
    height: calc(100vh - 50px);
    overflow-y: auto;
    margin-top: 50px;
    padding-bottom: 70px;
    width: 100%;
}

.subpage-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0052CC;
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-button {
    position: absolute;
    left: 15px;
    color: white;
    font-size: 1.2rem;
}

.subpage-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.subpage-content {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    overflow-y: auto;
    z-index: 100;
}

.sliding-content {
    animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.green-bg {
    background-color: #4CAF50;
    background-image: linear-gradient(to bottom, #4CAF50, #2E7D32);
}

/* Estilos para a página de Convidar */
.invite-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invite-link-box {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.invite-link-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.invite-link-value {
    background-color: rgba(0, 82, 204, 0.05);
    padding: 10px;```html
    ```html
    border-radius: 5px;
    font-size: 0.85rem;
    word-break: break-all;
    color: #333;
}

.action-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.copy-btn {
    margin: 5px 0;
}

.invite-info {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

.invite-info p {
    margin-bottom: 10px;
}

.invite-banner {
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.full-width-banner {
    width: 100%;
    height: auto;
    display: block;
}

.banner-image {
    position: absolute;
    right: 15px;
bottom: 10px;
    opacity: 0.5;
    width: 50px,
    height: 50px;
}

/* Estilos para a página de Equipe */
.team-stats-panel {
    background: rgba(0, 51, 153, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    color: white;
}

.stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 767px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #66cc33; /* Changed to green */
}

.stat-value.money {
    color: #66ff00;
}

.team-levels-tabs {
    display: flex;
    margin: 10px 0;
}

.level-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #ddd;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    color: #333;
}

.level-tab.active {
    background-color: #0066cc;
    color: white;
}

.team-members-list {
    background-color: transparent;
    padding: 10px 0;
    min-height: 300px;
}

.member-label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #0066cc;
}

.no-data-message {
    text-align: center;
    font-style: italic;
    color: gray;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-member-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.member-logo {
    flex-shrink: 0;
}

.member-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 15px;
}

.member-details {
    flex-grow: 1;
}

.member-phone {
    font-weight: bold;
    font-size: 14px;
}

.member-cars {
    font-size: 13px;
    color: #555;
    margin: 3px 0;
}

.member-date {
    font-size: 12px;
    color: #999;
}

/* Estilos para a página de Senha */
.password-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.password-option-btn {
    background-color: #0066cc;
    border: none;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

/* Estilos para a página de Retirar */
.withdraw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 0.9rem;
    color: #0066cc;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
}

.method-button {
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
    width: 50%;
}

.select-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
}

/* Estilos para o campo de seleção quando já tem banco selecionado */
.select-field.has-selected-account {
    background-color: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    padding: 15px;
}

.selected-account {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.selected-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.selected-account-name {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.selected-account-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

.selected-account-status i {
    font-size: 0.9rem;
}

.selected-account-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-holder {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.account-number {
    color: #888;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

/* Estilo para conta bancária na página de retirada */
.bank-account-card.withdrawal-selection {
    border: 2px solid #e8f4fd;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.bank-account-card.withdrawal-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0052cc);
}

/* Botão de seleção */
.select-account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0066cc 0%, #0052cc 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    min-width: 120px;
    justify-content: center;
}

.select-account-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

.select-account-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.25);
}

.select-account-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.select-account-btn i {
    font-size: 1rem;
}

.select-account-btn.success {
    background: linear-gradient(135deg, #28a745 0%, #20934c 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* Animação de pulso para o botão */
.select-account-btn:not(:disabled):not(.success) {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4), 0 0 20px rgba(0, 102, 204, 0.1);
    }
    100% {
        box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    }
}

.password-input {
    position: relative;
}

.password-input i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.balance-display, .fee-display {
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #333;
    font-weight: bold;
}

.withdrawal-rules {
    background-color: #e8f4fd;
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid #0066cc;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #0066cc;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-item i {
    width: 16px;
    text-align: center;
}

.confirm-btn {
    margin-top: 10px;
}

.help-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.centered-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.help-btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    text-decoration: none;
}

.centered-btn {
    flex: 0 0 auto;
    max-width: 150px;
}

.help-btn i {
    font-size: 1.2rem;
    color: #999;
}

/* Estilos para páginas de registro */
.records-section {
    margin-top: 0;
    padding: 0;
}

.records-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    border-left: 4px solid #0052CC;
    position: relative;
    margin-bottom: 10px;
}

.record-info {
    flex: 1;
}

.record-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
}

.record-date {
    font-size: 0.8rem;
    color: #888;
}

.record-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 6px;
}

.record-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.record-status.processing {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.record-status.failed {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.record-amount {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4CAF50;
}

.record-amount.positive {
    color: #4CAF50;
}

.record-amount.negative {
    color: #F44336;
}

.record-amount.pending {
    color: #FF9800;
}

.record-amount.neutral {
    color: #666;
}

.no-records {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #999;
    text-align: center;
}

.no-records-icon {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

.no-records-text {
    font-size: 0.9rem;
}

/* Estilos para a página de Recarregar */
.recharge-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    color: #999;
    background-color: #f9f9f9;
    cursor: pointer;
}

.upload-area i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.recharge-instructions {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.logo-center {
    text-align: center;
    margin-bottom: 15px;
}

.instruction-list {
    padding-left: 20px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.notice-content {
    background-color: white;
    border-radius: 10px;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.notice-body {
    padding: 20px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.close-notice {
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Estilos para a página de Código */
.code-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.code-input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.exchange-btn {
    margin-top: 30px;
}

/* Estilos para a página de Conta de Retirada */
.withdrawal-account-container {
    margin-top: 20px;
}

/* Estilos para o botão de adicionar conta */
.add-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: white;
    border: 2px dashed #0066cc;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #0066cc;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.add-account-btn:hover {
    background-color: rgba(0, 102, 204, 0.05);
    border-color: #0052cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.add-account-btn i {
    font-size: 1.5rem;
}

/* Estilos para o cartão de conta bancária */
.bank-account-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.bank-account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.bank-account-card.clickable {
    cursor: pointer;
    border: 2px solid transparent;
}

.bank-account-card.clickable:hover {
    border-color: #0066cc;
    background-color: rgba(0, 102, 204, 0.02);
}

.account-details {
    flex: 1;
}

.account-bank {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-bank::before {
    content: "🏦";
    font-size: 1.2rem;
}

.account-name {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.account-iban {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.account-options-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.account-options-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.select-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    font-size: 1.2rem;
}

.bank-account-card.clickable .select-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        background-color: rgba(0, 102, 204, 0.1);
    }
    50% {
        background-color: rgba(0, 102, 204, 0.2);
    }
    100% {
        background-color: rgba(0, 102, 204, 0.1);
    }
}

/* Mensagem quando não há conta */
.no-account-message {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #666;
}

.no-account-message p {
    font-size: 1rem;
    margin: 0;
}

/* Modal de opções da conta bancária */
.bank-account-options {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.options-container {
    background-color: white;
    width: 100%;
    max-width: 400px;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.option-header span {
    font-weight: bold;
    color: #333;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
}

.option-button {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.option-button:last-child {
    border-bottom: none;
}

.option-button:hover {
    background-color: #f8f8f8;
}

.option-button i {
    font-size: 1.1rem;
    color: #0066cc;
}

.account-options-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
}

/* Estilos para a página de Informações de Retirada */
.withdraw-info-form {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    background-color: #f9f9f9;
}

/* Estilos para a página de Fatura */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.invoice-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.invoice-details {
    flex: 1;
}

.invoice-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.invoice-date {
    font-size: 0.8rem;
    color: #999;
}

.invoice-amount {
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 15px;
}

.invoice-amount.positive {
    color: #0066cc;
}

.invoice-amount.negative {
    color: #ff6666;
}

.invoice-total {
    color: #666;
    font-size: 0.9rem;
}

/* Estilos para a página do Guia */
.guide-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.guide-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0052CC;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
}

.guide-topic {
    margin-bottom: 25px;
    border-left: 3px solid #0052CC;
    padding-left: 15px;
}

.topic-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.topic-title i {
    color: #0052CC;
}

.topic-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Novos estilos para a página guia */
.full-width-image {
    width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.price-list, .commission-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.price-item, .commission-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.price-item:last-child, .commission-item:last-child {
    border-bottom: none;
}

.section-title {
    color: #0052CC;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    text-align: left;
}

/* Estilos para a página Sobre Nós */
.about-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.about-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text strong {
    color: #cc0000;
}

.about-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilos para a página de Conta */
.account-profile {
    display: flex;    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background-color: rgba(0, 82, 204, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.profile-info {
    flex: 1;
}

.profile-id {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.profile-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.account-form {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.save-btn {
    margin-top: 20px;
}

/* Estilos para as páginas de Registro (Recarga e Retirada) */
.records-section {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.records-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.record-total {
    font-size: 0.9rem;
    color: #666;
}

.record-total span {
    font-weight: bold;
    color: #333;
}

.records-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #0052CC;
}

.record-info {
    flex: 1;
}

.record-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.record-date {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.record-status {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.record-status.success {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.record-status.failed {
    color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
}

.record-status.processing {
    color: #FF9800;
    background-color: rgba(255, 152, 0, 0.1);
}

.record-amount {
    font-weight: bold;
    font-size: 1.1rem;
    padding-left: 10px;
}

.record-amount.positive {
    color: #4CAF50;
}

.record-amount.negative {
    color: #F44336;
}

.record-amount.neutral {
    color: #888;
}

.record-amount.pending {
    color: #FF9800;
}

.no-records {
    text-align: center;
    padding: 3px 0;
    color: #888;
}

.no-records-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

.no-records-text {
    font-size: 0.9rem;
}

/* Estilos personalizados para mensagens do app */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 82, 204, 0.95);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    text-align: center;
    min-width: 280px;
    max-width: 90vw;
    animation: slideIn 0.3s ease-out;
}

.custom-alert.error {
    background: rgba(220, 53, 69, 0.95);
}

.custom-alert.success {
    background: rgba(40, 167, 69, 0.95);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Loader para requisições */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Toast System - Tema Carvana */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.car-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 400px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.car-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.car-toast:hover::before {
    left: 100%;
}

.car-toast-success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-left: 4px solid #4CAF50;
    color: #ffffff;
}

.car-toast-error {
    background: linear-gradient(135deg, #f44336, #e57373);
    border-left: 4px solid #f44336;
    color: #ffffff;
}

.car-toast-warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    border-left: 4px solid #FF9800;
    color: #ffffff;
}

.car-toast-info {
    background: linear-gradient(135deg, #0052CC, #2196F3);
    border-left: 4px solid #0052CC;
    color: #ffffff;
}

.car-toast:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.toast-icon {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    line-height: 1.4;
    word-break: break-word;
}

.toast-close {
    font-size: 18px;
    opacity: 0.7;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

/* Animações para mobile */
@media (max-width: 768px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .car-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Toast loading state */
.car-toast.loading {
    position: relative;
}

.car-toast.loading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    animation: toastProgress linear;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}