﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header com Logo - AZUL */
        .header {
            background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
            color: white;
            padding: 2rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
            margin-bottom: 2rem;
        }

        .logo {
            
            
            margin-bottom: 1rem;
           
            /* box-shadow: 0 8px 25px rgba(0,0,0,0.2); */
        }

        .header h1 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Filtros - AZUL */
        .filters {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-group label {
            font-weight: 600;
            color: #555;
            font-size: 0.9rem;
        }

        .filter-group input {
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
            width: 200px;
        }

        .filter-group input:focus {
            outline: none;
            border-color: #1976d2;
            box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
        }

        .btn-search {
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
        }

        /* Tabela de Boletins - AZUL */
        .boletins-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .boletins-header {
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
            padding: 1.5rem 2rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .boletins-list {
            list-style: none;
        }

        .boletim-linha {
            display: grid;
            grid-template-columns: 80px 120px 1fr 120px;
            gap: 1.5rem;
            padding: 1.5rem 2rem;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .boletim-linha:hover {
            background: #e3f2fd;
            transform: scale(1.01);
            box-shadow: inset 0 0 20px rgba(25, 118, 210, 0.05);
        }

        .boletim-linha:last-child {
            border-bottom: none;
        }

        /* Coluna NÂº - AZUL */
        .boletim-num {
            font-size: 2rem;
            font-weight: 800;
            color: #1976d2;
            text-align: center;
            padding: 0.5rem;
            background: #e3f2fd;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
        }

        /* Coluna Data - AZUL CLARO */
        .boletim-data {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            padding: 0.8rem 1,7 rem;
            background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
            border-radius: 20px;
            box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
        }

        /* Coluna TÃ­tulo - AZUL */
        .boletim-titulo {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            padding: 0 1rem;
        }

        .boletim-titulo strong {
            color: #1976d2;
        }

        /* Coluna Status/AÃ§Ãµes - AZUL */
        .boletim-status {
            text-align: center;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .status-novo {
            background: #e3f2fd;
            color: #1565c0;
            border: 2px solid #2196f3;

        }

        .status-disponivel {
            background: #e1f5fe;
            color: #0277bd;
            border: 2px solid #03a9f4;
            
        }

        /* EstatÃ­sticas - AZUL */
        .stats {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .stat-item {
            padding: 1.5rem;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 15px;
            border: 3px solid transparent;
            transition: all 0.3s;
        }

        .stat-item:hover {
            border-color: #1976d2;
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1976d2;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Footer - AZUL ESCURO */
        .footer {
            background: #0d47a1;
            color: white;
            text-align: center;
            padding: 2rem;
            border-radius: 0 0 20px 20px;
            margin-top: 3rem;
        }

        /* Logo Placeholder AZUL */
        .logo[src*="d32f2f"] {
            filter: hue-rotate(220deg) saturate(1.2);
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .filters {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-group input {
                width: 100%;
            }

            .boletim-linha {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
                padding: 1.5rem;
            }

            .boletim-num, .boletim-data, .boletim-titulo, .boletim-status {
                grid-column: 1;
            }

            .header {
                padding: 1.5rem;
            }

            .logo {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .stats {
                grid-template-columns: 1fr;
            }
        }