 * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8f9fa;
      min-height: 100vh;
      color: #333;
    }

    .app-container {
      margin-top: 50px;
      margin-bottom: 60px;
      display: flex;
      gap: 20px;
      width: 100%;
      justify-content: center;
    }

    .preview-section{
      flex: 1;
      min-width: 320px;
      max-width: 480px;
      height: 580px;
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .preview-header {
      padding: 15px;
      background: linear-gradient(135deg, #2575fc, #6a11cb);
      color: white;
      text-align: center;
      font-size: 1.2rem;
    }

    .preview-content {
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      background: #f8f9fa;
    }

    .pdf-canvas {
      max-width: 80%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: none;
    }

    .placeholder {
      text-align: center;
      color: #6c757d;
    }

    .placeholder i {
      font-size: 64px;
      margin-bottom: 10px;
      color: #adb5bd;
    }

    .validation-section {
      padding: 25px;
      text-align: center;
      flex: 1;
      min-width: 320px;
      max-width: 580px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .validation-section h1 {
      color: #1e3c72;
      margin-bottom: 8px;
      font-size: 1.6rem;
    }

    .validation-section p {
      color: #666;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .file-input {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px;
      border-radius: 12px;
      background: #f9f9f9;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    /* Borda animada tracejada */
    .file-input::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      padding: 4px; /* espessura da borda */
      background: repeating-linear-gradient(
          90deg,
          #6a11cb 0 10px,
          transparent 10px 20px
        );
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: dashmove 2s linear infinite;
    }
    
    /* Ícone dentro */
    .file-input i {
      font-size: 32px;
      color: #2575fc;
      margin-right: 10px;
    }
    
    @keyframes dashmove {
      0% {
        background-position: 0 0;
      }
      100% {
        background-position: 40px 0;
      }
    }
    
    input[type="file"] { display: none; }

    button {
      margin-top: 15px;
      background: linear-gradient(135deg, #2575fc, #6a11cb);
      color: white;
      padding: 15px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      transition: 0.2s;
      width: 100%;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(106,17,203,0.25);
    }

    .loading {
      display: none;
      margin-top: 15px;
      color: #2575fc;
      font-weight: bold;
    }

    /* Navbar Base */
    .navbar {
      width: 100%;
      background:#ffffff;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 30px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    }
    
    .logo img {
      height: 45px;
      max-width: 140px;
      transition: 0.3s;
    }
    
    /* Links */
    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
    }
    
    .nav-links li a {
      text-decoration: none;
      color:#6a11cb;
      font-weight: 500;
      transition: 0.3s;
    }
    
    .nav-links li a:hover {
      color: #01999e;
    }
    
    /* Botão Baixar */
    .download-btn {
      border: #6a11cb 2px solid;
      color: #6a11cb !important;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
  
     .download-btn2 {
      background: #6a11cb;
      color: #ffffff !important;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .download-btn2:hover {
      background: #ffffff;
      color: #6a11cb !important;
        border: #6a11cb 2px solid;
        transition: 0.3s;
    }
     .download-btn:hover {
      background: #6a11cb;
      color: #ffffff !important;
        border: #6a11cb 2px solid;
        transition: 0.3s;
    }
    
    /* Hamburguer Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color:#2575fc;
    }

    /* Seção de Bancos Compatíveis */
    .banks-section {
      padding: 30px 20px;
      text-align: center;
    }
    
    .banks-section h2 {
      font-size: 2rem;
      color: #1e3c72;
      margin-bottom: 10px;
    }
    
    .banks-section p {
      color: #666;
      max-width: 700px;
      margin-bottom: 50px;
      margin: 0 auto 40px;
      font-size: 1rem;
    }
    
    .banks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto;
    }
    
    .bank-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
    }
    
    .bank-card img {
      max-width: 120px;
      max-height: 70px;
      margin-bottom: 10px;
      filter: grayscale(30%);
      transition: filter 0.3s ease;
    }
    
    .bank-card span {
      font-weight: 500;
      color: #333;
      font-size: 0.9rem;
    }
    
    .bank-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      cursor: pointer;
    }
    
    .bank-card:hover img {
      filter: grayscale(0%);
    }

    /* Seção Por que nos escolher */
    .why-choose-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      text-align: center;
    }
    
    .why-choose-section h2 {
      font-size: 2rem;
      color: #1e3c72;
      margin-bottom: 10px;
    }
    
    .why-choose-section p {
      color: #666;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1rem;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }
    
    .feature-card {
      background: white;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-8px);
    }
    
    .feature-card i {
      font-size: 48px;
      color: #6a11cb;
      margin-bottom: 20px;
    }
    
    .feature-card h3 {
      color: #1e3c72;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }
    
    .feature-card p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      background: #520072;
      color: white;
      padding: 50px 20px 20px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
    }
    
    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #fff;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 10px;
    }
    
    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-column ul li a:hover {
      color: white;
    }
    
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #ccc;
      font-size: 0.9rem;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .app-container { 
        flex-direction: column; 
        align-items: center;
      }
      
      .preview-section, .validation-section {
        width: 90%;
      }
      
      .logo img {
        height: 35px;
        max-width: 100px;
      }
    
      .nav-links {
        position: absolute;
        top: 65px;
        left: -100%;
        background:#e9e9e9;
        width: 100%;
        height: 60vh;
        flex-direction: column;
        gap: 20px;
        padding-top: 40px;
        transition: 0.4s;
      }
    
      .nav-links.active {
        left: 0;
      }
    
      .hamburger {
        display: block;
      }
      
      .banks-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      
      .feature-card {
        padding: 20px 15px;
      }
    }

    /* Hero Section */
    .pricing-hero {
      background: linear-gradient(135deg, #2575fc, #6a11cb);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    
    .pricing-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    
    .pricing-hero p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      opacity: 0.9;
    }






      .content-header {
            background: white;
            padding: 30px 40px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header-title h1 {
            font-size: 1.8rem;
            color: #1e3c72;
            margin-bottom: 5px;
        }

        .header-title p {
            color: #6c757d;
            margin: 0;
        }

        .header-actions {
            display: flex;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
        }

        .btn-success {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
        }

        .btn-success:hover {
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #2575fc;
            color: #2575fc;
        }

        .btn-outline:hover {
            background: #2575fc;
            color: white;
        }

        /* Cash Flow Section */
        .cashflow-section {
            padding: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Summary Cards */
        .summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .summary-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .summary-card:hover {
            transform: translateY(-5px);
        }

        .summary-card.entrada {
            border-left: 4px solid #28a745;
        }

        .summary-card.saida {
            border-left: 4px solid #dc3545;
        }

        .summary-card.lucro {
            border-left: 4px solid #2575fc;
        }

        .summary-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .summary-card.entrada .summary-icon {
            color: #28a745;
        }

        .summary-card.saida .summary-icon {
            color: #dc3545;
        }

        .summary-card.lucro .summary-icon {
            color: #2575fc;
        }

        .summary-value {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 5px;
        }

        .summary-label {
            color: #6c757d;
            font-size: 0.9rem;
        }

/* Container do menu */
.filters-actions {
    background: white;
    border-radius: 15px;
    padding: 15px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0; /* Menos espaço entre itens, já que vamos estilizar como nav */
}

/* Menu nav */
.period-filters {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* Botões do menu */
.period-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    border-right: 1px solid #e9ecef;
}

/* Último botão não precisa de border */
.period-btn:last-child {
    border-right: none;
}

/* Botão ativo */
.period-btn.active {
    background: #2575fc;
    color: white;
}

/* Hover */
.period-btn:hover:not(.active) {
    background: #e6f0ff;
    color: #2575fc;
}


        /* Chart Section */
        .chart-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

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

        .chart-header h3 {
            color: #1e3c72;
            font-size: 1.3rem;
            margin: 0;
        }

        .chart-container {
            position: relative;
            height: 300px;
            width: 100%;
        }

        /* Transactions Table */
        .transactions-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

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

        .section-header h3 {
            color: #1e3c72;
            font-size: 1.3rem;
            margin: 0;
        }

        .transactions-table {
            width: 100%;
            border-collapse: collapse;
        }

        .transactions-table th {
            background: #f8f9fa;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #1e3c72;
            border-bottom: 2px solid #e9ecef;
        }

        .transactions-table td {
            padding: 15px;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
        }

        .transactions-table tr:hover {
            background: #f8f9fa;
        }

        .transaction-type {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .transaction-type.entrada {
            background: #d4edda;
            color: #155724;
        }

        .transaction-type.saida {
            background: #f8d7da;
            color: #721c24;
        }

        .transaction-value {
            font-weight: 600;
            color: #1e3c72;
        }

        .transaction-actions {
            display: flex;
            gap: 8px;
        }

        .action-btn {
            padding: 6px;
            border: none;
            background: none;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            color: #6c757d;
        }

        .action-btn:hover {
            background: #e9ecef;
            color: #1e3c72;
        }

        .action-btn.delete:hover {
            background: #f8d7da;
            color: #dc3545;
        }

        .no-transactions {
            text-align: center;
            padding: 40px;
            color: #6c757d;
        }

        .no-transactions i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            padding: 25px 30px 20px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 1.5rem;
            color: #1e3c72;
            margin: 0;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: #6c757d;
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #dc3545;
        }

        .modal-body {
            padding: 25px 30px;
        }

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

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e3c72;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #2575fc;
            box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
        }

        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
        }

        .form-select:focus {
            outline: none;
            border-color: #2575fc;
            box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
        }

        .form-actions {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .btn-cancel {
            background: #6c757d;
            color: white;
            flex: 1;
        }

        .btn-cancel:hover {
            background: #5a6268;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .dashboard-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                height: auto;
            }
            
            .sidebar-nav {
                padding: 20px 0;
            }
            
            .content-header {
                padding: 25px 20px;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .header-actions {
                justify-content: center;
            }
            
            .cashflow-section {
                padding: 25px 20px;
            }
            
            .filters-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .period-filters {
                justify-content: center;
            }
            
            .transactions-table {
                display: block;
                overflow-x: auto;
            }
            
            .form-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .summary-cards {
                grid-template-columns: 1fr;
            }
            
            .period-filters {
                flex-direction: column;
            }
            
            .transaction-actions {
                flex-direction: column;
            }
        }





        /* FAQ Section */
    .faq-section {
      padding: 60px 20px;
      background: #f8faff;
      margin-top: 40px;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .faq-header h2 {
      font-size: 2rem;
      color: #1e3c72;
      margin-bottom: 15px;
    }
    
    .faq-item {
      background: white;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    
    .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      color: #1e3c72;
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-answer.active {
      padding: 0 20px 20px;
      max-height: 200px;
    }
    
    .faq-question i {
      transition: transform 0.3s ease;
    }
    
    .faq-question.active i {
      transform: rotate(180deg);
    }






    
/* Mensagem descritiva acima do select */
.select-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.select-label i {
    color: #6f42c1;
    margin-right: 8px;
}

/* Custom Select Container */
.custom-select-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

/* Trigger (select fechado) */
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select-trigger:hover {
    border-color: #8c68d0;
    background-color: #f8f9ff;
}

.custom-select-trigger.active {
    border-color: #6f42c1;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.selected-option {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.option-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.option-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.custom-select-trigger i {
    color: #6f42c1;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.custom-select-trigger.active i {
    transform: rotate(180deg);
}

/* Options Dropdown */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 80px;
    z-index: 1000;
    display: none;
    margin-top: -2px;
}

.custom-options.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Individual Options */
.custom-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f4;
}

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

.custom-option:hover {
    background-color: #f8f9ff;
}

.custom-option.selected {
    background-color: #f0f0ff;
    font-weight: 600;
}

.custom-option .option-logo {
    width: 28px;
    height: 28px;
}

.custom-option .option-text {
    font-size: 14px;
    font-weight: 500;
}

/* Tooltip informativo */
.select-help {
    display: block;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Estados de validação */
.custom-select-container.invalid .custom-select-trigger {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.custom-select-container.valid .custom-select-trigger {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Loading state */
.custom-select-container.disabled .custom-select-trigger {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Animações */
.custom-select-container {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar personalizado */
.custom-options::-webkit-scrollbar {
    width: 6px;
}

.custom-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsividade */
@media (max-width: 768px) {
    .custom-select-trigger {
        padding: 14px 16px;
    }
    
    .option-logo {
        width: 28px;
        height: 28px;
    }
    
    .option-text {
        font-size: 14px;
    }
    
    .custom-option {
        padding: 10px 16px;
    }
    
    .custom-option .option-logo {
        width: 24px;
        height: 24px;
    }
    
    .custom-option .option-text {
        font-size: 13px;
    }
    
    .select-label {
        font-size: 13px;
    }
    
    .select-help {
        font-size: 11px;
    }
    
    .custom-options {
        max-height: 220px;
        
    }
}

