 @media(min-width: 375px) {
    /* ELEMENTS */

    body {
      font-family: "Segoe UI", sans-serif;
      background: linear-gradient(to right, #cbe4f9, #e8f0fe);
      margin: 0;
      padding: 20px;
      color: #333;
    }
    h1, h2 {
      text-align: center;
      margin-bottom: 20px;
    }
        table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }
    th, td {
      padding: 10px;
      border-bottom: 1px solid #ddd;
      text-align: left;
    }
    th {
      background-color: #f2f2f2;
    }

    /* CLASSES, IDS */
    .weather-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .card {
      background-color: white;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 260px;
      text-align: center;
      position: relative;
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 1.2em;
      color: #444;
    }
    .card p {
      font-size: 1.6em;
      font-weight: bold;
      margin: 0;
    }
    .card img {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 48px;
      height: 48px;
    }
    .table-container {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      flex: 1;
      min-width: 300px;
      box-sizing: border-box;
    }

    #previsaoSemana {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .mini-card {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 10px;
      text-align: center;
      width: 90px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .mini-card p {
      margin: 4px 0;
      font-size: 0.9em;
    }
    .mini-card img {
      width: 36px;
      height: 36px;
      margin-bottom: 6px;
    }
 }
@media(min-width: 576px) {
    #painelInferior {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
      width: 70%;
      position: absolute;
      margin-left: 14%;
    }
}
