/**
 * BORAFRETE - Stylesheet Principal
 * Design: Glassmorphism + Cores Azul
 */

/* ========================================
   RESET E VARIÁVEIS
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-principal: #1E3A8A;
    --azul-claro: #4A90E2;
    --azul-hover: #2563EB;
    --branco: #FFFFFF;
    --cinza-claro: #F5F7FA;
    --cinza-medio: #E5E7EB;
    --cinza-escuro: #6B7280;
    --preto: #1F2937;
    --verde-sucesso: #10B981;
    --vermelho-erro: #EF4444;
    --amarelo-warning: #F59E0B;

    --border-radius: 20px;
    --border-radius-sm: 12px;
    --spacing: 24px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--cinza-claro) 0%, #E0E7FF 100%);
    color: var(--preto);
    line-height: 1.6;
    min-height: 100vh;
}

/* ========================================
   GLASSMORPHISM CARD
   ======================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    padding: var(--spacing);
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    min-height: 600px;
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.login-container.cadastro-container {
    max-width: 1400px;
    min-height: auto;
}

/* Lado Esquerdo - Azul */
.login-left {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-claro) 100%);
    color: var(--branco);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 60px solid rgba(255, 255, 255, 0.05);
}

.login-left::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 40px solid rgba(255, 255, 255, 0.03);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.brand-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 15px;
}

.brand-name {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1px;
}

.login-icons {
    display: flex;
    gap: 20px;
    z-index: 1;
    margin: 40px 0;
}

.icon-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.login-description {
    z-index: 1;
    margin: 20px 0;
}

.login-description h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.login-description p {
    font-size: 16px;
    opacity: 0.9;
}

.login-features {
    display: flex;
    gap: 15px;
    z-index: 1;
}

.feature-icon {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px;
    border-radius: 10px;
}

/* Lado Direito - Formulário */
.login-right {
    background: var(--branco);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 32px;
    font-weight: 300;
    color: var(--azul-claro);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--cinza-escuro);
    margin-bottom: 30px;
}

/* Alertas */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--verde-sucesso);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--vermelho-erro);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Formulário */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px 14px 50px;
    border: 2px solid var(--cinza-medio);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--cinza-claro);
}

.form-group select {
    padding-left: 16px;
    cursor: pointer;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--cinza-escuro);
    font-weight: 500;
    font-size: 14px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]) {
    padding-left: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--azul-claro);
    background: var(--branco);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: var(--cinza-claro);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Botões */
.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-principal) 100%);
    color: var(--branco);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    background: var(--cinza-medio);
    color: var(--preto);
}

.btn-secondary:hover {
    background: var(--cinza-escuro);
    color: var(--branco);
}

.btn-social {
    width: 100%;
    background: var(--branco);
    color: var(--preto);
    border: 2px solid var(--cinza-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social:hover {
    background: var(--cinza-claro);
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.link-primary {
    color: var(--azul-claro);
    text-decoration: none;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: underline;
}

.link-secondary {
    color: var(--cinza-escuro);
    text-decoration: none;
}

.link-secondary:hover {
    color: var(--azul-claro);
}

/* Social Login */
.social-login {
    margin-top: 30px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--cinza-escuro);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--cinza-medio);
}

.divider span {
    padding: 0 15px;
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */
.dashboard-layout {
    background: linear-gradient(135deg, #E0E7FF 0%, var(--cinza-claro) 100%);
}

/* Top Navbar */
.top-navbar {
    background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-claro) 100%);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-left .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
}

.brand-text {
    font-size: 24px;
    font-weight: 300;
}

.navbar-center {
    display: flex;
    gap: 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--branco);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notifications {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notifications:hover {
    background: rgba(255, 255, 255, 0.15);
}

.notifications .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--vermelho-erro);
    color: var(--branco);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--branco);
    color: var(--azul-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.user-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--branco);
    position: absolute;
    bottom: 0;
    right: 0;
}

.user-status.online {
    background: var(--verde-sucesso);
}

/* User Menu Dropdown */
.user-menu {
    position: absolute;
    top: 60px;
    right: 40px;
    background: var(--branco);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    display: none;
    z-index: 1000;
}

.user-menu.active {
    display: block;
}

.user-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--cinza-medio);
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-principal) 100%);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--preto);
}

.user-info p {
    font-size: 13px;
    color: var(--cinza-escuro);
}

.user-menu-items {
    padding: 10px;
}

.user-menu-items a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--preto);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.user-menu-items a:hover {
    background: var(--cinza-claro);
}

.user-menu-items a.logout {
    color: var(--vermelho-erro);
}

.user-menu-items hr {
    border: none;
    border-top: 1px solid var(--cinza-medio);
    margin: 8px 0;
}

/* Main Wrapper */
.main-wrapper {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   DASHBOARD
   ======================================== */
.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Welcome Card */
.welcome-card {
    padding: 40px;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.welcome-avatar {
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-principal) 100%);
    padding: 20px;
    border-radius: 20px;
}

.welcome-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 8px;
}

.welcome-text p {
    font-size: 16px;
    color: var(--cinza-escuro);
    line-height: 1.5;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Vehicles Section */
.vehicles-section {
    padding: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--azul-principal);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.vehicles-grid {
    display: grid;
    gap: 20px;
}

.vehicle-card {
    background: var(--branco);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vehicle-photo {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cinza-claro);
}

.vehicle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--cinza-escuro);
}

.vehicle-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 4px;
}

.vehicle-plate {
    font-size: 18px;
    font-weight: 700;
    color: var(--azul-claro);
    margin-bottom: 4px;
}

.vehicle-type {
    font-size: 13px;
    color: var(--cinza-escuro);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: var(--cinza-escuro);
    margin-bottom: 20px;
}

/* Map Section */
.map-section {
    padding: 30px;
}

.map-container {
    position: relative;
    margin-bottom: 25px;
}

.map-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--branco);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

/* Vehicle Status */
.vehicle-status-section {
    margin-top: 20px;
}

.status-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 15px;
}

.status-content {
    background: var(--branco);
    border-radius: var(--border-radius-sm);
    padding: 20px;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.status-label {
    font-weight: 600;
    color: var(--preto);
}

.status-value {
    font-weight: 700;
}

.status-available {
    color: var(--verde-sucesso);
}

.status-unavailable {
    color: var(--cinza-escuro);
}

/* Toggle Switch */
.availability-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cinza-medio);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: var(--branco);
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--azul-claro);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--preto);
}

/* ========================================
   FORMS
   ======================================== */
.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 8px;
}

.page-header p {
    font-size: 16px;
    color: var(--cinza-escuro);
}

.form-vehicle,
.form-offer,
.profile-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cinza-medio);
}

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

.form-row .form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cinza-medio);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-claro);
}

.form-group input:disabled,
.form-group input:read-only {
    background: var(--cinza-claro);
    cursor: not-allowed;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    border: 2px dashed var(--cinza-medio);
    border-radius: var(--border-radius-sm);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--azul-claro);
    background: var(--cinza-claro);
}

.file-upload-label p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--cinza-escuro);
}

.image-preview {
    margin-top: 20px;
    display: none;
}

.image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--border-radius-sm);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--cinza-medio);
}

/* ========================================
   PROFILE
   ======================================== */
.profile-container {
    padding: 40px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--cinza-medio);
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-principal) 100%);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 36px;
}

.profile-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 4px;
}

.profile-type {
    font-size: 16px;
    color: var(--azul-claro);
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-member-since {
    font-size: 14px;
    color: var(--cinza-escuro);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--branco);
    padding: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.footer-content p {
    font-size: 14px;
    color: var(--cinza-escuro);
    margin: 5px 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .login-left {
        padding: 40px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-navbar {
        padding: 12px 20px;
    }

    .navbar-center {
        display: none;
    }

    .main-wrapper {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* ========================================
   NOTIFICAÇÕES
   ======================================== */
.dropdown-notificacoes {
    position: fixed;
    top: 80px;
    right: -400px;
    width: 400px;
    max-height: 600px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dropdown-notificacoes.aberto {
    right: 20px;
}

.dropdown-header {
    padding: 20px;
    border-bottom: 2px solid var(--cinza-medio);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--preto);
}

.btn-marcar-todas {
    background: none;
    border: none;
    color: var(--azul-claro);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-marcar-todas:hover {
    background: var(--cinza-claro);
}

.dropdown-content {
    overflow-y: auto;
    max-height: 500px;
    padding: 10px;
}

.item-notificacao {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: background 0.2s;
    cursor: pointer;
}

.item-notificacao:hover {
    background: var(--cinza-claro);
}

.item-notificacao.nao-lida {
    background: rgba(74, 144, 226, 0.05);
    border-left: 3px solid var(--azul-claro);
}

.notif-icone {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cinza-claro);
    flex-shrink: 0;
}

.notif-conteudo {
    flex: 1;
}

.notif-titulo {
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 4px;
    font-size: 14px;
}

.notif-mensagem {
    font-size: 13px;
    color: var(--cinza-escuro);
    margin-bottom: 4px;
    line-height: 1.4;
}

.notif-tempo {
    font-size: 11px;
    color: var(--cinza-medio);
}

.notif-acoes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-acoes button {
    background: none;
    border: none;
    color: var(--cinza-escuro);
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
}

.notif-acoes button:hover {
    background: var(--cinza-medio);
    color: var(--preto);
}

.notificacao-vazia {
    text-align: center;
    padding: 60px 20px;
    color: var(--cinza-escuro);
}

.notificacao-vazia svg {
    opacity: 0.3;
    margin-bottom: 16px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--cinza-escuro);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.alert-flutuante {
    animation: slideIn 0.3s ease;
}

@media (max-width: 768px) {
    .dropdown-notificacoes {
        width: calc(100% - 40px);
        right: -100%;
    }

    .dropdown-notificacoes.aberto {
        right: 20px;
    }
}
