*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
        
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            padding: 0 10dvw;
        }

        .header {
            position: relative;
            width: 100%;
            height: 250px;
            background: url('imagens/loc/fundo.png') no-repeat center center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: white;
            text-shadow: 1px 1px 2px #000;
            overflow: hidden;
            border-radius: 0 0 20px 20px;
        }

        .header h1 {
            margin: 0;
            font-size: 32px;
            font-weight: bold;
        }

        .header p {
            margin: 10px 0;
            font-size: 18px;
        }

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .header h1,
        .header p,
        .search-box,
        .localizacao {
            position: relative;
            z-index: 2;
}

        

        .search-box {
            margin-top: 10px;
            display: flex;
            align-items: center;
        }

        .search-box input {
            padding: 10px 15px;
            width: 300px;
            border-radius: 20px;
            border: none;
        }

        .localizacao {
            margin-top: 10px;
            font-size: 14px;
            display: flex;
            align-items: center;
            color: white;
        }

        .localizacao i {
            color: green;
            margin-right: 5px;
            font-size: 12px;
        }

        .container {
            display: flex;
            justify-content: space-between;
            padding: 20px;
            flex-wrap: wrap;
        }

        .lista {
            width: 45%;
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
            max-height: 500px;
            overflow-y: auto;
        }

        .item {
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            display: flex;
            border-bottom: 1px solid #ddd;
        }

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

        .info {
            max-width: 70%;
        }

        .mais-proximo {
            display: inline-block;
            background-color: green;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-bottom: 5px;
        }

        .status {
            font-size: 12px;
            margin-left: 8px;
            display: inline-flex;
            align-items: center;
        }

        .status i {
            margin-right: 4px;
            font-size: 8px;
        }

        .fechado {
            color: red;
        }

        .aberto {
            color: green;
        }

        .mais-info {
            color: green;
            font-size: 12px;
            margin-top: 5px;
            display: inline-block;
        }

        .botoes {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .botoes button {
            background-color: green;
            border: none;
            color: white;
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
        }

        .mapa {
            width: 50%;
        }

        iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 8px;
        }

        .footer {
            background-color: black;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            width: 100%;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
          }
          
        
        .footer-logo {
            height: 30px;
            width: auto;
        }
        
        .footer-text {
            white-space: nowrap;
            font-size: 14px;
        }