      /* Definindo fontes específicas para diferentes elementos */
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: bold; /* SemiBold */
      }

      p,
      span,
      div,
      li,
      td,
      th {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: bold; /* Regular */
      }

      button,
      input,
      select,
      textarea {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 500; /* Medium */
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
      }

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

      /* Hero Section */
      .hero-section {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .hero-content {
        flex: 1;
      }

      .segment-icon {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }

      .segment-icon img {
        width: 140px;
        height: 140px;
      }

      .segment-title {
        color: #ec4899;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
      }

      .badge {
        display: inline-block;
        background: linear-gradient(90deg, #ec4899, #f97316);
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
      }

      .apresentacao h3 {
        color: #3c0099;
        font-size: 40px;
        margin-bottom: 15px;
      }

      .apresentacao p {
        color: #64748b;
        line-height: 1.6;
        font-size: 14px;
      }

      .hero-illustration {
        width: 400px;
        height: 500px;
        border-radius: 20px;
        flex-shrink: 0;
        margin-left: 40px;
      }

      .hero-illustration img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        border-radius: 20px;
        display: block;
      }

      /* Indicadores Section */
      .indicadores-section {
        background: linear-gradient(90deg, #ec4899, #f97316);
        padding: 30px 40px;
        margin-bottom: 30px;
      }

      .indicadores-title {
        color: white;
        font-size: 30px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 50px;

        position: relative;
        top: -50px;
        z-index: 2;
      }

      .icon-box img {
        width: 200%;
        height: 200%;
        object-fit: contain;
        display: block;
      }

      /* Filter Section */
      .filter-section {
        background: white;
        padding: 40px;
        margin-bottom: 30px;
      }

      .filter-title {
        color: #f97316;
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 25px;
      }

      .filter-box {
        background: #2be6ab;
        border-radius: 50px;
        padding: 35px 30px;
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .filter-label {
        color: #5c18ac;
        font-weight: bold;
        font-size: x-large;
        white-space: nowrap;
      }

      .filter-input {
        flex: 1;
        background: white;
        border: none;
        border-radius: 25px;
        padding: 10px 20px;
        font-size: 14px;
      }

      .filter-button {
        background: #3c0099;
        color: white;
        border: none;
        border-radius: 25px;
        padding: 10px 30px;
        font-weight: bold;
        cursor: pointer;
      }

      /* Metrics Cards */
      .metrics-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 30px;
      }

      .metric-card {
        background: linear-gradient(180deg, #f97316, #ec4899);
        border-radius: 20px;
        padding: 25px;
        color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
        padding-bottom: 60px; /* <-- ADICIONE ESTA LINHA */
      }

      .metric-row {
        display: flex;
        justify-content: space-between;
        padding: 25px 0;
        border-bottom: 2px solid black;
      }

      .metric-label {
        font-weight: 600;
        font-size: 18px;
      }

      .metric-value {
        font-weight: bold;
        color: black;
        font-size: 18px;
      }

      /* Market Share Section */
      .market-share-section {
        background: white;
        padding: 40px;
        margin-bottom: 30px;
      }

      .section-title {
        color: #7c3aed;
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
      }

      .section-description {
        color: #64748b;
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 30px;
      }

      .charts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
      }

      .chart-container {
        border: 3px solid;
        border-radius: 20px;
        padding: 30px;
      }

      .chart-container.pink {
        border-color: #ff36ce;
      }

      .chart-container.teal {
        border-color: #2be6ab;
      }

      .chart-title {
        background: linear-gradient(90deg, #5c18ac, #2be6ab);
        color: white;
        padding: 18px 20px;
        border-radius: 43px;
        font-weight: bold;
        display: inline-block;
        font-size: 22px;
        position: relative;
        z-index: 2;
        top: -57px;
        margin-bottom: -37px;
      }

      .chart-title.orange {
        background: linear-gradient(90deg, #ff39c1, #ff6e00);
      }

      .chart-placeholder {
        background: #d1d5db;
        border-radius: 10px;
        height: 250px;
        width: 100%;
      }

      /* Additional Charts Section */
      .additional-charts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
      }

      .chart-card {
        background: white;
        padding: 30px;
      }

      .chart-card-title {
        background: linear-gradient(90deg, #ff39c1, #ff6e00);
        color: white;
        padding: 18px 20px;
        border-radius: 43px;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 20px;
        font-size: 22px;
      }

      .chart-card-title.purple {
        background: linear-gradient(90deg, #5c18ac, #06b6d4);
      }

      /* Municipality Chart */
      .municipality-section {
        background: linear-gradient(90deg, #5c18ac, #2be6ab);
        padding: 40px;
        margin-bottom: 30px;
      }

      .municipality-title {
        background: linear-gradient(90deg, #ff39c1, #ff6e00);
        color: white;
        padding: 12px 25px;
        border-radius: 43px;
        font-weight: bold;
        display: inline-block;
        font-size: 22px;
        position: relative;
        z-index: 2;
        top: -57px;
        margin-bottom: -37px;
      }

      .large-chart-placeholder {
        background: #d1d5db;
        border-radius: 10px;
        height: 400px;
        width: 100%;
      }

      /* Para tablets (ex: iPad Mini) e celulares maiores */
      @media (max-width: 768px) {
        /* Seção Hero */
        .hero-section {
          flex-direction: column;
          padding: 30px;
        }

        .hero-illustration {
          width: 40%;
          max-width: 450px;
          height: auto;
          object-fit: cover;
          margin-left: auto;
          margin-right: auto;
          margin-top: 30px;
        }

        /* Seção de Filtro */
        .filter-section {
          padding: 30px;
        }

        .filter-box {
          flex-direction: column;
          align-items: stretch;
          gap: 15px;
          padding: 25px;
        }

        /* Grid de Métricas */
        .metric-card {
          grid-template-columns: 1fr;
          padding: 20px;
        }

        .metric-row:nth-child(3) {
          border-bottom: 2px solid black;
        }

        .metric-row:last-child {
          border-bottom: none;
        }
        .metrics-grid {
          padding-left: 20px;
          padding-right: 20px;
        }

        /* Grids de Gráficos */
        .metrics-grid,
        .charts-grid,
        .additional-charts {
          grid-template-columns: 1fr;
        }

        /* Seção Market Share */
        .market-share-section {
          padding: 30px;
        }

        /* Cards de Gráficos */
        .chart-card {
          padding: 30px;
        }

        /* Seção Município */
        .municipality-section {
          padding: 30px;
        }

        .segment-title {
          font-size: 28px;
        }

        .indicadores-title,
        .filter-title,
        .section-title {
          font-size: 22px;
        }
      }

      /* Para celulares (ex: iPhone 12) */
      @media (max-width: 480px) {
        .hero-illustration {
          width: 70%;
          max-width: 450px;
          height: auto;
          object-fit: cover;
          margin-left: auto;
          margin-right: auto;
          margin-top: 30px;
        }

        .hero-section,
        .filter-section,
        .market-share-section,
        .municipality-section,
        .chart-card {
          padding: 20px;
        }

        .metrics-grid {
          padding-left: 20px;
          padding-right: 20px;
        }

        /* Seção Indicadores */
        .indicadores-section {
          padding: 20px;
        }

        .icon-box {
          width: 40px;
          height: 40px;
          margin-left: 0;
          position: relative;
          top: -50px;
          z-index: 2;
        }
        .municipality-section {
          margin-top: 60px;
        }

        /* Seção Hero */
        .hero-illustration {
          height: 300px;
        }

        .segment-title {
          font-size: 24px;
        }

        .indicadores-title,
        .filter-title,
        .section-title {
          font-size: 20px;
        }

        .apresentacao p,
        .section-description {
          font-size: 13px;
        }

        .metric-label,
        .metric-value {
          font-size: 16px;
        }

        .chart-title,
        .chart-card-title {
          font-size: 16px;
          padding: 12px 18px;
        }

        .filter-label {
          font-size: 1.125rem; /* 18px */
        }

        .filter-box {
          padding: 20px;
        }
      }
