.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }


  a {
    color: #005b9a;
    text-decoration: none;
    transition: color 0.2s;
  }

  a:hover {
    color: #003d6a;
  }

  /* HERO SECTION */



  .textos {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    max-width: 48%;
  }

  .textos h1 {
    font-size: 38px;
    margin-bottom: 5px;
    color: #2d4a6a;
    line-height: 1.2;
  }

  .textos h2 {
    font-size: 22px;
    color: #777;
    margin-bottom: 25px;
    font-weight: 400;
  }

  .bold {
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #2d4a6a;
    font-size: 18px;
  }

  .textos p {
    margin-bottom: 20px;
    max-width: 600px;
    color: #555;
    line-height: 1.7;
  }

  figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
  }

  figure span {
    font-size: 17px;
  }

  .imagem {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
  }

  .imagem img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
  }

  /* DETAILED INFO SECTION */
  .detailed-info {
    padding: 40px 0;
  }

  .info-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }

  .info-column {
    flex: 1;
  }

  .info-column p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
  }

  /* Image grid for figures */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
  }

  .image-grid figure {
    background: none;
    border-radius: 8px;
    padding: 15px;
    box-shadow: none;
    transition: transform 0.3s ease;
    height: 100%;
    display: initial;
    flex-direction: column;
  }

  .image-grid figure:hover {
    transform: translateY(-5px);
  }

  .image-grid figure img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
    flex-grow: 1;
  }

  .image-grid figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
  }

  .image-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-info {
    margin: 40px 0;
    padding: 20px;
    background: #f5f8fa;
    border-left: 4px solid #2d4a6a;
    border-radius: 4px;
  }

  /* FEATURES SECTION */
  .features {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eaeaea;
  }

  .features h2 {
    color: #2d4a6a;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 600;
  }

  .feature-columns {
    display: flex;
    gap: 50px;
  }

  .feature-column {
    flex: 1;
  }

  .features ul {
    column-count: auto;
  }

  .feature-list {
    list-style: none;
  }

  .feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #555;
    font-size: 20px;
    line-height: 1.7;
    color: #244052;
  }

  .checkmark {
    position: absolute;
    left: 0;
    color: #2d4a6a;
    font-weight: bold;
  }

  footer button:hover {
    background-color: #005baa;
  }

  /* RESPONSIVO */
  @media (max-width: 768px) {
    .image-grid {
      grid-template-columns: 1fr;
    }
  }