/* Resetando o box-sizing para garantir que a largura seja calculada corretamente */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* Estilo base para a custom-row */
  .custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }
  
  /* Estilo para as colunas dentro da custom-row */
  .custom-row > .col-lg-6,
  .custom-row > .col-md-12,
  .custom-row > .col-sm-12 {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    box-sizing: border-box;
  }
  
  /* Adaptação para diferentes tamanhos de coluna */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Margens para as colunas se necessário */
  .custom-row > .col-lg-6:not(:last-child),
  .custom-row > .col-md-12:not(:last-child),
  .custom-row > .col-sm-12:not(:last-child) {
    margin-bottom: var(--bs-gutter-y);
  }
  
  /* Adaptação para o alinhamento das colunas e do padding */
  @media (max-width: 991px) {
    .custom-row > .col-lg-6 {
      margin-top: 30px;
      flex: 0 0 100%;
      max-width: 100%;
    }

    .content-column {
      max-height: 400px; /* Altura ajustável */
      overflow-y: auto;
    }
  }
  
  @media (max-width: 767px) {
    .custom-row > .col-md-12,
    .custom-row > .col-sm-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .content-column {
      max-height: 350px;
      overflow-y: auto;
    }
  }

  /* Para smartphones pequenos (até 575px) */
  @media (max-width: 575px) {
    .content-column {
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ec1b23;
      border-radius: 20px;
    }

    .about-section .content-column .inner-column {
      padding-left: 25px !important;
      padding-right: 25px !important;
      padding-top: 20px;
    }

    .sec-title {
      margin-bottom: 0px;
      text-align: center;
    }
  }

  /* Para smartphones muito pequenos (até 400px) */
  @media (max-width: 400px) {
    .content-column {
      max-height: 250px;
      overflow-y: auto;
      border: 1px solid #ec1b23;
      border-radius: 20px;
    }

    .about-section .content-column .inner-column {
      padding-left: 25px !important;
      padding-right: 25px !important;
      padding-top: 20px;
    }

    .sec-title {
      margin-bottom: 0px;
      text-align: center;
    }
  }
  
  /* Estilo para links */
  a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
  }
  
  a, a:active, a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
  }
  
  /* Estilo para listas */
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* Estilo para imagens */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Estilo para seções */
  section {
    padding: 60px 0;
  }
  
  /* Estilo para título de seção */
  .sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
  }
  
  .sec-title .title {
    font-size: 18px;
    line-height: 24px;
    color: #225D97;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .sec-title h2 {
    font-size: 40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
  }
  
  .sec-title h2:before {
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
  }
  
  .sec-title .text {
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
  }
  
  /* Estilo para listas de estilo */
  .list-style-one {
    position: relative;
  }
  
  .list-style-one li {
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 12px;
  }
  
  .list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #ff2222;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
  }
  
  .list-style-one li a:hover {
    color: #44bce2;
  }
  
  /* Estilo para botões */
  .btn-style-one {
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    background-color: #225D97;
  }
  
  .btn-style-one:hover {
    background-color: #001e57;
    color: #ffffff;
  }
  
  /* Estilo específico para seção "about" */
  .about-section {
    position: relative;
    padding: 120px 0 70px;
  }
  
  .about-section .sec-title {
    margin-bottom: 0px;
  }
  
  .about-section .content-column {
    position: relative;
    margin-bottom: 50px;
  }
  
  .about-section .content-column .inner-column {
    padding-left: 30px;
    max-height: 624px;
    overflow: auto;
  }
  
  .about-section .text {
    margin-bottom: 40px;
  }
  
  .about-section .list-style-one {
    margin-bottom: 45px;
  }
  
  .about-section .btn-box {
    position: relative;
  }
  
  .about-section .btn-box a {
    padding: 15px 50px;
  }
  
  .about-section .image-column {
    position: relative;
  }
  
  .about-section .image-column .inner-column {
    padding-left: 0;
    padding-bottom: 0;
  }
  
  .about-section .image-column .inner-column:before {
    left: -75px;
    height: 520px;
    width: 520px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
  }
  
  .about-section .image-column .image-1 {
    position: relative;
  }
  
  .about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  .about-section .image-column .image-2 img,
  .about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
  }
  
  .about-section .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
  }
  
  .about-section .image-column .video-link .link {
    font-size: 22px;
    color: #191e34;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    transition: all 300ms ease;
  }
  
  .about-section .image-column .video-link .link:hover {
    background-color: #191e34;
    color: #ffffff;
  }
  