@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,500,550,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --neutral-0: #FFF;
  --neutral-35: #F5F5F5;
  --neutral-50: #E8EFF7;
  --neutral-100: #E6E6E6;
  --neutral-300: #B3B3B3;
  --neutral-500: #666;
  --neutral-400: #808080;
  --neutral-600: #4D4D4D;
  --neutral-700: #333;
  --neutral-800: #1F1F1F;
  --neutral-900: #0F0F0F;
  --neutral-bg: #FCFCFC;
  --blue-25: #F8FAFC;
  --blue-50: #E8EFF7;
  --blue-300: #1B5EAB;
  --blue-400: #134278;
  --blue-600:#001D3D;
  --yellow-300: #FFC82A;
  --green-1: #068027;
  --green-300: #58B0B0;
  --green-400: #3E7B7B;
  --red-1: #FF3932;
  --red-2: #E70800;
}

/* ------------------------------ */
/* ---------- V2 Fonts ---------- */
/* ------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ------------------------------ */
/* --------- Components --------- */
/* ------------------------------ */

/* Search Input Component */

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-100);
  padding: 8px 16px;
  background-color: var(--neutral-0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.search-input-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-600);
  font-family: "Inter", sans-serif;
  padding: 0;
  width: 100%;
}

.search-input-field::placeholder {
  color: var(--neutral-300);
}

.search-input-icon {
  display: flex;
  align-items: center;
  color: var(--neutral-300);
  font-size: 16px;
  transition: color 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.search-input-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.2s ease;
}

/* Hover State */
.search-input-container:hover {
  border-color: var(--neutral-300);
}

/* Focus/Selected State */
.search-input-container:focus-within {
  border-color: var(--blue-300);
}

.search-input-container:focus-within .search-input-icon {
  color: var(--blue-300);
}

.search-input-container:focus-within .search-input-field {
  color: var(--neutral-600);
}

/* Disabled State */
.search-input-container.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.search-input-container.disabled .search-input-field {
  cursor: not-allowed;
}

/* Input Field Component */

.input-field-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-field-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--neutral-700);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.input-field-optional-tag {
  font-weight: 400;
  color: var(--neutral-500);
  margin-left: 4px;
}

.input-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-100);
  padding: 8px 16px;
  background-color: var(--neutral-0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.input-field-wrapper.with-icon {
  padding-right: 12px;
}

.input-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-600);
  font-family: "Inter", sans-serif;
  padding: 0;
  width: 100%;
}

.input-field::placeholder {
  color: var(--neutral-300);
}

.input-field-icon {
  display: flex;
  align-items: center;
  color: var(--neutral-300);
  font-size: 16px;
  transition: color 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.input-field-icon.clickable {
  cursor: pointer;
  user-select: none;
}

.input-field-icon.clickable:hover {
  color: var(--neutral-500);
}

.input-field-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.2s ease;
}

/* Hover State */
.input-field-wrapper:hover {
  border-color: var(--neutral-300);
}

/* Focus/Selected State */
.input-field-wrapper:has(.input-field:focus) {
  border-color: var(--blue-300);
}

.input-field-wrapper:has(.input-field:focus) .input-field-icon {
  color: var(--blue-300);
}

.input-field-wrapper:has(.input-field:focus) .input-field {
  color: var(--neutral-600);
}

/* Disabled State */
.input-field-container.disabled .input-field-label,
.input-field-container.disabled .input-field-optional-tag {
  opacity: 0.6;
  cursor: not-allowed;
}

.input-field-wrapper.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--neutral-35);
}

.input-field-wrapper.disabled:hover {
  border-color: var(--neutral-100);
}

.input-field-wrapper.disabled .input-field {
  cursor: not-allowed;
}

.input-field-wrapper.disabled .input-field-icon {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Dropdown Filter Component */

.dropdown-filter-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-100);
  padding: 8px 16px;
  background-color: var(--neutral-0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  cursor: pointer;
}

.dropdown-filter-container:hover {
  border-color: var(--neutral-300);
}

.dropdown-filter-container:focus-within,
.dropdown-filter-container.open {
  border-color: var(--blue-300);
}

.dropdown-filter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 0;
}

.dropdown-filter-label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--neutral-600);
}

.dropdown-filter-label.placeholder {
  color: var(--neutral-300);
}

.dropdown-filter-icon {
  display: flex;
  align-items: center;
  color: var(--neutral-300);
  font-size: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.dropdown-filter-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.2s ease;
}

.dropdown-filter-container.open .dropdown-filter-icon {
  color: var(--blue-300);
}

.dropdown-filter-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: var(--neutral-0);
  border: 1.5px solid var(--neutral-100);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px;
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  border-radius: 2px;
  text-align: left;
  min-height: 40px;
}

.dropdown-filter-option:hover {
  background-color: var(--neutral-35);
  color: var(--neutral-800);
}

.dropdown-filter-option.selected {
  background-color: var(--blue-50);
  color: var(--blue-600);
  font-weight: 500;
}

.dropdown-filter-option.selected:hover {
  background-color: var(--blue-50);
  color: var(--blue-600);
}

.dropdown-filter-option-text {
  flex: 1;
  text-align: left;
  word-break: break-word;
}

.dropdown-filter-option-check {
  color: var(--medium500);
  font-size: 14px;
  margin-left: 8px;
  flex-shrink: 0;
}

.dropdown-filter-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dropdown-filter-option.disabled:hover {
  background-color: transparent;
  color: var(--neutral-600);
}

/* Disabled State */
.dropdown-filter-container.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dropdown-filter-container.disabled:hover {
  border-color: var(--neutral-100);
}

.dropdown-filter-container.disabled .dropdown-filter-button {
  cursor: not-allowed;
}

/* Project List Toolbar */
.projects-buttons {
  gap: 16px;
}

.projects-buttons .gap-3 {
  gap: 16px !important;
  flex-wrap: wrap;
}

.projects-buttons .search-wrapper {
  margin: 0;
  flex: 1;
  min-width: 280px;
}

/* Buttons */

.btn {
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 16px;
  width: 100%;
  max-width: 343px;
}

.btn.btn-sm {
  font-size: 14px;
  padding: 8px 12px;
}

.btn.btn-primary,
.btn.btn-secondary {
  font-weight: 600;
  border: none;
}

.btn.btn-primary {
  color: var(--neutral-0);
  background-color: var(--blue-300);
}

.btn.btn-secondary {
  background-color: var(--yellow-300);
  color: var(--neutral-800);
}

.btn.btn-transparent {
  border: 1.5px solid var(--blue-300);
  color: var(--blue-300);
  background-color: transparent;
  font-weight: 600;
  width: auto;
}

/* Cards */

.card-group-scroll {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 12px;
  padding-bottom: 8px; /* to see the shadow */
  margin-bottom: 48px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.card-group-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.card-group.card-group-scroll > .card {
  flex-basis: 320px;
  flex-shrink: 0;
  min-height: 508px;
  max-height: 608px;
  box-shadow: 0px 3px 8px 0px rgba(85, 85, 85, 0.16);
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
}

.card.project-card-background {
  background: linear-gradient(168deg, var(--blue-300), var(--blue-400));
  background-position: top;
  background-size: 100% 140px;
  background-repeat: no-repeat;
}

.card .card-body {
  padding-top: 86px;
}

.card .project-logo {
  width: 100px;
  height: 100px;
  box-sizing: content-box;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neutral-0);
  margin-bottom: 16px;
  background-color: #F4F4F4;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #58B0B0;
}

.card .project-logo .fa-id-card {
  height: 65%;
  width: 65%;
}

.card .project-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--neutral-800);
  margin-bottom: 8px;
}

.card .project-id {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-500);
  margin-bottom: 32px;
}

.card .project-description {
  max-height: 95px;
  overflow: hidden;
  color: var(--neutral-700);
  font-size: 16px;
}

.card .project-stats {
  padding: 16px;
  border-top: 1px solid var(--neutral-50);
  align-items: center;
  justify-content: space-between;
}

.card .btn-view-project {
  border: 1.5px solid var(--blue-300);
  color: var(--blue-300);
  font-size: 16px;
  font-weight: 600;
  width: auto;
}

.card .supporter-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-700);
}

.card .supporter-label {
  color: var(--neutral-700);
  font-size: 14px;
}

/* Accordion */

.accordion {
  --bs-accordion-bg: transparent;
  text-align: left;
}

.accordion-header > .accordion-button {
  font-weight: 500;
}

.accordion-body {
  font-size: 14px;
}

/* Modal */

/* .modal-header { */
/*   background-color: var(--blue-50); */
/*   border-bottom: none; */
/*   border-top-left-radius: 8px; */
/*   border-top-right-radius: 8px; */
/* } */

/* .modal-title { */
/*   font-family: "Archivo", sans-serif; */
/*   font-weight: 700; */
/*   font-size: 24px; */
/*   color: var(--neutral-700); */
/* } */

/* .modal-body { */
/*   background-color: var(--neutral-bg); */
/*   border-bottom-left-radius: 8px; */
/*   border-bottom-right-radius: 8px; */
/* } */

/* .modal-footer { */
/*   align-items: center; */
/* } */

.pix-modal-content {
  text-align: center;
}

.pix-modal-content .pix-key {
  font-size: 16px;
  color: var(--neutral-600);
}

.pix-modal-content .qr-code-section img {
  border: 2px solid var(--blue-300);
  border-radius: 4px;
  margin-bottom: 16px;
}

/* /\* Modal Info Content - Base class for informative modals (Mobile First) *\/ */
/* .modal-info-content { */
/*   display: flex; */
/*   flex-direction: column; */
/*   align-items: center; */
/*   gap: 20px; */
/*   padding: 20px 12px; */
/*   text-align: center; */
/* } */

/* .modal-info-content p { */
/*   font-family: "Inter", sans-serif; */
/*   font-size: 15px; */
/*   font-weight: 400; */
/*   line-height: 1.6; */
/*   color: var(--neutral-600); */
/*   margin: 0; */
/*   max-width: 480px; */
/* } */

/* .modal-info-content .d-flex { */
/*   width: 100%; */
/*   max-width: 300px; */
/*   gap: 16px; */
/* } */

/* .modal-info-content .btn { */
/*   width: 100%; */
/*   padding: 10px 20px; */
/*   font-size: 15px; */
/*   font-weight: 600; */
/* } */

/* /\* Desktop adjustments *\/ */
/* @media (min-width: 576px) { */
/*   .modal-info-content { */
/*     padding: 24px 16px; */
/*     gap: 24px; */
/*   } */

/*   .modal-info-content p { */
/*     font-size: 16px; */
/*   } */

/*   .modal-info-content .btn { */
/*     padding: 12px 24px; */
/*     font-size: 16px; */
/*   } */
/* } */

/* Botão Primário Global */
.btn-primary {
  background-color: var(--blue-300);
  border-color: var(--blue-300);
}

.btn-primary:hover {
  background-color: var(--blue-400);
  border-color: var(--blue-400);
}

/* Botão Outline Primário Global */
.btn-outline-primary {
  color: var(--blue-300);
  border-color: var(--blue-300);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--neutral-35);
  border-color: var(--blue-400);
  color: var(--blue-400);
}

/* Forms */

.form-label {
  font-size: 14px;
  color: var(--neutral-700);
}

.form-control {
  font-size: 14px;
  padding: 10px 14px;
}

.form-control::placeholder {
  color: var(--neutral-500);
  opacity: 1;
}

/* Table */

.table-responsive {
  border-radius: 8px;
  border: 1px solid var(--neutral-50);
}

.table-primary {
  --bs-table-color: var(--neutral-0);
  --bs-table-bg: var(--blue-300);
}

.table {
  --bs-table-color: var(--neutral-700);
  --bs-table-bg: var(--neutral-35);
  --bs-table-striped-color: var(--neutral-700);
  --bs-table-striped-bg: var(--neutral-0);
}

tbody, td, tfoot, th, thead, tr {
  border: none;
}

.table .credit {
  color: var(--green-1);
}

.table .debit {
  color: var(--red-2);
}

a.document-link {
  color: var(--blue-300);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

a.document-link.disabled {
  cursor: default;
  opacity: 0.65;
}

/* Pagination */

.pagination {
  --bs-pagination-color: var(--neutral-600);
  --bs-pagination-active-color: var(--neutral-0);
  --bs-pagination-active-bg: var(--blue-300);
  --bs-pagination-hover-color: var(--blue-300);
  --bs-pagination-border-width: 0;
  gap: 16px;
}

.page-link {
  border-radius: var(--bs-pagination-border-radius);
  cursor: pointer;
}

/* Progress Bar */

.progress {
  --bs-progress-bar-bg: var(--blue-300);
  --bs-progress-bg: var(--neutral-50);
  height: 12px;
}

/* Header section */

.header-section {
  padding: 40px 20px;
  background: linear-gradient(107.6deg, #F4F7FB 12.29%, #E1EAF4 57.43%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.header-section h1 {
  font-family: "Archivo", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--neutral-800);
}

.header-section p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--neutral-700);
  max-width: 640px;
}

@media(min-width: 992px) {
  /* ----- Footer ----- */

  #main-footer .container {
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  #main-footer .footer-sections {
    display: flex;
    flex-basis: 1020px;
    justify-content: space-around;
  }

  #main-footer .social .footer-title {
    display: block;
  }

  #main-footer .social-icons a {
    margin: 16px 0 0;
    display: flex;
  }

  #main-footer .social-icons span {
    display: inline-block;
    padding-left: 4px;
  }

  #main-footer .footer-nav,
  #main-footer .footer-help {
    margin-top: unset;
  }

  #main-footer .footer-brand {
    max-width: 200px;
  }

  #main-footer .social {
    order: 3;
  }

  /* Hero Section */

  .hero-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .benefits-content p,
  .section-steps .steps-item p,
  .hero-section p,
  .testimonial p
  {
    font-size: 18px;
  }

  .hero-section picture,
  .hero-section img {
    margin: 0;
  }

  /* Home */

  #home-page .hero-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 115px;
    padding-bottom: 115px;
  }

  #home-page .hero-section .content {
    text-align: left;
    max-width: 462px;
    padding-top: unset;
  }

  #home-page .hero-section h1 {
    font-size: 56px;
  }

  .section-highlights {
    background-image: url("../img/home/logo-transparent-detail-lg.png");
    background-position: top 3% right 3%;
    background-repeat: no-repeat;
  }

  .section-highlights,
  .section-steps,
  .section-testimonials,
  .section-faq
  {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-highlights .highlights-header,
  .section-steps .steps-header,
  .section-testimonials .testimonials-header,
  .section-faq .faq-header
  {
    margin-bottom: 72px;
  }

  .section-highlights .section-title,
  .section-steps .section-title,
  .section-testimonials .section-title,
  .section-faq .section-title
  {
    font-size: 40px;
  }

  .section-highlights .section-subtitle,
  .section-steps .section-subtitle,
  .section-testimonials .section-subtitle,
  .section-faq .section-subtitle
  {
    font-size: 24px;
  }

  .section-highlights .btn.btn-secondary {
    width: 100%;
  }

  .section-benefits {
    display: flex;
    gap: 311px;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image:
      url('../img/home/logo-transparent-bg-lg.png'),
      linear-gradient(151deg, rgba(244, 247, 250, 1), rgba(226, 235, 243, 1));
    background-position:
      bottom -30px left -2px, /* Image position */
      0 0; /* Gradient position */
    background-repeat:
      no-repeat,
      no-repeat;
    background-size:
      766px auto,
      auto;
  }

  .benefits-header {
    flex-basis: 244px;
  }

  .benefits-header .section-title {
    font-size: 48px;
    text-align: left;
  }

  .benefits-list {
    flex-basis: 605px;
  }

  .benefits-content h3 {
    font-size: 24px;
  }

  .benefits-icon svg {
    width: 36px;
    height: 36px;
  }

  .section-steps .steps-list {
    max-width: 962px;
    margin: 0 auto;
    padding: 0 45px;
    text-align: left;
  }

  .section-steps .steps-item {
    flex-direction: row;
    gap: 80px;
  }

  .section-steps .steps-item h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section-steps .steps-item:nth-child(even) .image {
    order: -1;
  }

  .testimonial {
    padding: 32px;
  }

  .testimonial > svg {
    width: 60px;
    height: 39px;
  }

  .section-faq {
    background-image: url("../img/home/polygons-2-lg.png");
  }

  #project-page section.container {
    justify-content: center;
    background-color: unset;
    padding-top: unset;
    margin-top: unset;
    border-top: unset;
  }

  section .about-section {
    margin-top: 24px;
    max-width: 762px;
    gap: 16px 24px;
  }

  .about-section.active-campaign {
    max-width: 1160px;
    flex-direction: row;
  }

  .about-section.active-campaign .project-info {
    max-width: 743px;
  }

  .about-section .project-info {
    gap: 16px;
  }

  .about-section.active-campaign .campaign-info {
    width: 365px;
    display: flex;
    flex-direction: column;
  }

  .about-section.active-campaign .campaign-card.progress-card {
    margin: 0;
    align-self: unset;
    height: fit-content;
  }

  header.project-cover {
    min-height: 320px;
    background-size: 100% 320px;
  }

  .project-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
    padding-top: 234px;
    gap: 12px;
  }

  .project-header .project-logo {
    width: 172px;
    height: 172px;
  }

  .project-header .project-info {
    flex-grow: 1;
    text-align: left;
  }

  .project-header .project-title {
    font-size: 32px;
  }

  .project-header .project-id {
    font-size: 18px;
  }

  .project-header .project-stats {
    margin: 0;
  }

  .project-header .supporter-count {
    font-size: 20px;
  }

  .project-header .supporter-label {
    font-size: 16px;
  }

  .project-header .project-visibility {
    display: flex;
    gap: 12px;
    flex-grow: 1;
  }

  .project-header .project-visibility p {
    margin: 0;
  }

  .project-header .nav {
    flex-basis: 100%;
    margin-top: 14px;
  }

  .project-header .nav-link {
    padding: 16px 24px 12px 24px;
  }

  .financial-summary {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .financial-summary-item.primary-item {
    grid-column: 1 / -1;
    justify-content: start;
    align-items: center;
  }

  /* Desktop: Only show borders except last 2 items */
  .financial-summary-item:not(:last-child) { border-bottom: unset; }
  .financial-summary-item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid var(--neutral-50);
  }

  .financial-summary .btn {
    margin-left: 8px;
  }

  .about-section .project-description,
  .about-section .project-financial-summary {
    background-color: var(--neutral-0);
    padding: 24px;
    border: 1px solid var(--neutral-50);
    border-radius: 8px;
  }

  .transactions-section,
  .gallery-section {
    background-color: var(--neutral-0);
    padding: 28px 32px;
    border: 1px solid var(--neutral-50);
    border-radius: 8px;
    margin-top: 32px;
    width: 100%;
  }

  .transactions-header {
    width: 100%;
    flex-direction: row;
    gap: 20px
  }

  .transactions-header .transactions-title,
  .gallery-section .gallery-title {
    font-weight: 600;
    font-size: 28px;
  }

  .transactions-section .transactions-count {
    font-size: 16px;
  }

  .transactions-header .transactions-summary {
    flex-grow: 1;
  }

  .transactions-header .transactions-actions {
    gap: 12px;
  }

  .transactions-pagination {
    margin-top: 32px;
  }

  /* === Components === */

  /* button */

  .btn {
    padding: 8px 24px;
    width: auto;
  }

  /* card */

  .card-group-scroll {
    justify-content: center;
    gap: 28px;
    margin-bottom: 72px;
  }

  .card-group.card-group-scroll > .card {
    flex-basis: 368px;
    flex-grow: 0;
  }

  /* carousel */

  #home-page .carousel {
    display: inline-flex;
    max-width: 664px;
    justify-content: center;
    padding-bottom: 100px;
  }

  #home-page .carousel-indicators {
    left: unset;
    right: unset;
    margin: 0;
  }

  #home-page .carousel-control-prev {
    left: 20%;
  }

  #home-page .carousel-control-next {
    right: 20%;
  }

  #home-page .carousel-control-next,
  #home-page .carousel-control-prev
  {
    top: unset;
    height: 100px;
  }

  /* accordion */

  .faq-list {
    max-width: 880px;
    margin: 0 auto;
  }

  .accordion-header {
    height: 88px;
    display: flex;
  }

  .accordion-header > .accordion-button {
    font-size: 24px;
  }

  .accordion-body {
    font-size: 18px;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  /* Table */

  .table > :not(caption) > * > * {
    padding: 12px 16px;
  }

  .table tbody {
    font-size: 14px;
  }

  /* Pagination */

  .pagination {
    justify-content: center;
  }

  .page-link.active {
    font-weight: 600;
  }

  /* Modal */

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

  .modal-body {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Header Section */

  .header-section {
    padding: 60px 140px;
    gap: 32px;
  }

  .header-section h1 {
    font-size: 48px;
  }

  .header-section p {
    font-size: 18px;
  }
}

/* ---- End of components */

/* Pix Modal Styles */
.pix-modal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0;
}

.qr-code-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.qr-code-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
}

.qr-code-placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
}

.qr-code-placeholder i {
  font-size: 48px;
  color: #6c757d;
}

.pix-key-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-key-label {
  font-weight: 600;
  color: var(--neutral-700);
  margin: 0;
}

.pix-key-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pix-key-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: #f8f9fa;
  font-family: monospace;
  font-size: 14px;
}

/* Recurring Donation Modal */
.recurring-donation-section {
  display: flex;
  justify-content: center;
}

.recurring-donation-btn {
  width: 100%;
  padding: 12px 24px;
  font-weight: 600;
  opacity: 0.6;
  cursor: not-allowed;
}

.recurring-donation-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}

.donation-amount-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -12px;
}

.donation-amount-tag {
  padding: 8px 16px;
  border: 1.5px solid var(--neutral-100);
  border-radius: 20px;
  background-color: var(--neutral-0);
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.donation-amount-tag:hover {
  border-color: var(--blue-300);
  background-color: var(--blue-25);
  color: var(--blue-600);
}

.donation-amount-tag:active {
  border-color: var(--blue-300);
  background-color: var(--blue-300);
  color: var(--neutral-0);
}

.field-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.field-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--neutral-700);
  margin-bottom: 8px;
}

.recurring-donation-section {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Copy Button Component */
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--neutral-100);
  background-color: transparent;
  color: var(--neutral-500);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  padding: 0;
}

.copy-button:hover {
  background-color: var(--neutral-100);
}

.copy-button:active {
  transform: scale(0.95);
}

.copy-button i {
  font-size: 14px;
}

.copy-button.copied {
  animation: pulse 0.3s ease;
}

.copy-button:disabled {
  cursor: default;
  opacity: 0.8;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.copy-button i {
  transition: opacity 0.2s ease;
}

/* Pix Key Copy Button */
.pix-key-copy-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pix-key-copy-container .pix-key {
  margin: 0;
  font-size: 16px;
  color: var(--neutral-600);
  font-family: monospace;
  word-break: break-all;
}


/* Bootstrap 5 compatibility */

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 2rem; }



.dashed-border {
    background-image: repeating-linear-gradient(0deg, #000000, #000000 10px, transparent 10px, transparent 20px, #000000 20px), repeating-linear-gradient(90deg, #000000, #000000 10px, transparent 10px, transparent 20px, #000000 20px), repeating-linear-gradient(180deg, #000000, #000000 10px, transparent 10px, transparent 20px, #000000 20px), repeating-linear-gradient(270deg, #000000, #000000 10px, transparent 10px, transparent 20px, #000000 20px);
    background-size: 3px 100%, 100% 3px, 3px 100% , 100% 3px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.mambi-protection {
    padding-right: 40px;
}

@media(max-width: 584px) {
    .mambi {
        display: none;
    }

    .mambi-protection {
        padding-right: initial;
    }
}

/* @media(max-width: 1160px) { */
/*     .mambi-protection { */
/*         padding-right: initial; */
/*     } */

/*     .mambi { */
/*         display: none; */
/*     } */

/*     .inline-mambi { */
/*         display: initial; */
/*     } */
/* } */

.article-background {
  background: linear-gradient(168deg, var(--blue-300), var(--blue-400));
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
}


/* home page */

.hero-section {
  text-align: center;
  background: linear-gradient(
    168deg,
    rgba(244, 247, 251, 1),
    rgba(225, 234, 244, 1));
}

.hero-section .content {
  padding-top: 48px;
}

.hero-section h1 {
  font-family: "Archivo", sans-serif;
  color: var(--neutral-800);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  color: var(--neutral-700);
  font-size: 16px;
}

.hero-section picture,
.hero-section img {
  margin: 48px 0;
}

.hero-section .btn {
  margin-top: 24px;
}

/* ------------------------------ */
/* ------------ Home ------------ */
/* ------------------------------ */

.section-highlights,
.section-steps,
.section-testimonials,
.section-faq
{
  padding: 48px 16px;
  text-align: center;
  background-color: var(--neutral-bg);
}

.section-highlights {
  /* padding-right: 0; */
  background-image: url("../img/home/logo-transparent-detail.png");
  background-position: top right;
  background-repeat: no-repeat;
}

.section-highlights .highlights-header,
.section-steps .steps-header,
.section-testimonials .testimonials-header,
.section-faq .faq-header
{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 48px;
}

.section-highlights .section-title,
.section-steps .section-title,
.section-testimonials .section-title,
.section-faq .section-title
{
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--neutral-800);
}

.section-highlights .section-subtitle,
.section-steps .section-subtitle,
.section-testimonials .section-subtitle,
.section-faq .section-subtitle
{
  order: -1;
  font-weight: 500;
  font-size: 18px;
  color: var(--blue-400);
}

.section-highlights .btn.btn-secondary {
  max-width: 166px;
  padding: 12px 24px;
  font-size: 18px;
}

.section-benefits {
  background-image:
    url('../img/home/logo-transparent-bg.png'),
    linear-gradient(151deg, rgba(244, 247, 250, 1), rgba(226, 235, 243, 1));
  background-position:
    bottom -30px left -2px, /* Image position */
    0 0; /* Gradient position */
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    371px auto,
    auto;
  padding: 48px 16px;
}

.benefits-header .section-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--neutral-800);
  text-align: center;
  margin-bottom: 48px;
}

.benefits-content h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--neutral-700);
  margin-bottom: 12px;
}

.benefits-content p,
.section-steps .steps-item p
{
  color: var(--neutral-700);
  font-weight: 400;
  font-size: 14px;
}

.benefits-list {
  gap: 48px;
}

.benefits-item {
  gap: 12px;
}

.benefits-icon {
  flex-shrink: 0;
}

.section-steps {
  background-image:
    url("../img/home/points.png"),
    url("../img/home/polygons.png");
  background-position:
    top 27% left,
    bottom right;
  background-repeat:
    no-repeat,
    no-repeat;
}

.section-steps .steps-item h5 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.section-steps .steps-list {
  gap: 100px;
}

.section-steps .steps-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-testimonials {
  background: linear-gradient(151deg, rgba(244, 247, 250, 1), rgba(226, 235, 243, 1));
}

.testimonial {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.testimonial p {
  font-size: 14px;
  color: var(--neutral-900);
  margin: 24px 0;
}

.testimonial-author {
  display: flex;
  gap: 16px;
}

.testimonial .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial .author-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial .author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-800);
}

.testimonial .project {
  font-size: 14px;
  color: var(--neutral-600);
}

.section-faq {
  background: linear-gradient(151deg, rgba(244, 247, 250, 1), rgba(226, 235, 243, 1));
  background-image: none;
}

@media(min-width: 992px) {
  .hero-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .benefits-content p,
  .section-steps .steps-item p,
  .hero-section p,
  .testimonial p
  {
    font-size: 18px;
  }

  .hero-section picture,
  .hero-section img {
    margin: 0;
  }

  /* Home */

  #home-page .hero-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 115px;
    padding-bottom: 115px;
  }

  #home-page .hero-section .content {
    text-align: left;
    max-width: 462px;
    padding-top: unset;
  }

  #home-page .hero-section h1 {
    font-size: 56px;
  }

  .section-highlights {
    background-image: url("../img/home/logo-transparent-detail-lg.png");
    background-position: top 3% right 3%;
    background-repeat: no-repeat;
  }

  .section-highlights,
  .section-steps,
  .section-testimonials,
  .section-faq
  {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-highlights .highlights-header,
  .section-steps .steps-header,
  .section-testimonials .testimonials-header,
  .section-faq .faq-header
  {
    margin-bottom: 72px;
  }

  .section-highlights .section-title,
  .section-steps .section-title,
  .section-testimonials .section-title,
  .section-faq .section-title
  {
    font-size: 40px;
  }

  .section-highlights .section-subtitle,
  .section-steps .section-subtitle,
  .section-testimonials .section-subtitle,
  .section-faq .section-subtitle
  {
    font-size: 24px;
  }

  .section-highlights .btn.btn-secondary {
    width: 100%;
  }

  .section-benefits {
    display: flex;
    gap: 311px;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image:
      url('../img/home/logo-transparent-bg-lg.png'),
      linear-gradient(151deg, rgba(244, 247, 250, 1), rgba(226, 235, 243, 1));
    background-position:
      bottom -30px left -2px, /* Image position */
      0 0; /* Gradient position */
    background-repeat:
      no-repeat,
      no-repeat;
    background-size:
      766px auto,
      auto;
  }

  .benefits-header {
    flex-basis: 244px;
  }

  .benefits-header .section-title {
    font-size: 48px;
    text-align: left;
  }

  .benefits-list {
    flex-basis: 605px;
  }

  .benefits-content h3 {
    font-size: 24px;
  }

  .benefits-icon svg {
    width: 36px;
    height: 36px;
  }

  .section-steps .steps-list {
    max-width: 962px;
    margin: 0 auto;
    padding: 0 45px;
    text-align: left;
  }

  .section-steps .steps-item {
    flex-direction: row;
    gap: 80px;
  }

  .section-steps .steps-item h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section-steps .steps-item:nth-child(even) .image {
    order: -1;
  }

  .testimonial {
    padding: 32px;
  }

  .testimonial > svg {
    width: 60px;
    height: 39px;
  }

  .section-faq {
    /* background-image: url("../img/home/polygons-2-lg.png"); */
  }
}

.accordion .card-header .btn {
    max-width: initial;
}
