/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --yellow-color: #986b33;
  --primary-color: #111111;
  --secondary-color: #2a2a2a;
  /* + escuro e mais consistente */
  --section-bg-color: #1a1a1a;
  --custom-btn-bg-color: #990000;
  /* botão principal em destaque */
  --custom-btn-bg-hover-color: #990000;
  /* hover vermelho mais escuro */
  --dark-color: #000000;
  --p-color: #cccccc;
  /* texto padrão claro */
  --text-muted-color: #888888;
  --muted-color: #514f4f;
  /* texto secundário */
  --border-color: #333333;
  /* borda neutra sutil */
  /* --accent-color: #9b1010; */
  --accent-color: #6e0707;

  /* para icons ou chamadas de ação */
  --link-color: #ff5555;
  /* link em vermelho claro */
  --link-hover-color: #9b1010;
  /* hover link ainda mais forte */




  --body-font-family: 'Open Sans',
    sans-serif;
  --title-font-family: 'Montserrat',
    sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --p-font-size-small: 16px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-small: 200;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

}


body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

.text-muted,
.text-muted *:not([style*="color"]) {
  color: var(--text-muted-color) !important;
  font-family: var(--body-font-family) !important;
  font-size: var(--p-font-size) !important;
  font-weight: var(--font-weight-medium);


}

.text-dark,
.text-dark *:not([style*="color"]):not([style*="var(--accent-color)"]):not(b, strong):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  color: var(--dark-color) !important;
  font-family: var(--body-font-family) !important;
  font-size: var(--p-font-size) !important;
  font-weight: var(--font-weight-medium);
}

.text-dark-hover:hover
{
  color: var(--dark-color) !important;
}
/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,

h6 {
  color: var(--dark-color);
}

h5 {
  color: var(--p-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}



p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}


ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}




/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay+.container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
  gap: 10px;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--primary-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
  border: none;
  /* remove bordas padrão */
  border-bottom: 3px solid transparent;
  /* linha inferior só aparece no ativo */
}



.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  /* ou a tua cor accent */
  color: #000 !important;
  /* texto sempre preto */
  border-radius: 6px;
  /* opcional, fica mais bonito */
  font-weight: 600;
}

.nav-tabs .nav-link:hover:not(.active):not(:focus) {
  background-color: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
  font-weight: 600;
}



/* Container vertical */
.nav-pills.flex-column {
  border-right: 1px solid #ecf3f2;
  margin-bottom: 40px;
}

/* Botões das tabs */
.nav-pills .nav-link {
  border-radius: 0;
  border: 0;
  border-left: 4px solid transparent;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
  text-align: left;
}

/* Espaçamento entre os itens */
.nav-pills .nav-link+.nav-link {
  margin-top: 10px;
}

/* Estado ativo / hover */
.nav-pills .nav-link.active,
.nav-pills .nav-link:focus,
.nav-pills .nav-link:hover {
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

#v-tabs-import .nav-link.active {
  background-color: var(--accent-color);
  /* ou a tua cor accent */
  color: #000 !important;
  /* texto sempre preto */
  border-radius: 6px;
  /* opcional, fica mais bonito */
  font-weight: 600;
  /* opcional */
}

#v-tabs-import .nav-link {
  text-align: left;
  /* força texto à esquerda */
  width: 100%;
  /* ocupa a largura da coluna */
  min-height: 60px;
  /* altura mínima igual para todos */
  display: flex;
  /* para alinhar melhor */
  align-items: center;
  /* centra verticalmente o texto */
  justify-content: flex-start;
  /* alinha o texto à esquerda */
  color: #000;
  /* texto preto */
  margin-bottom: 6px;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

.text-accent {
  color: var(--accent-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--primary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid var(--accent-color);
  z-index: 9;
}



.price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 4px 12px;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.icon-colored {
  color: var(--accent-color);
}

.card-listing {
  background-color: var(--primary-color);
  /* Ou qualquer cor desejada */
  color: var(--white-color);
  /* Para garantir contraste em modo escuro */
  border-radius: 8px;
}

.news-listing {
  border: 1px solid var(--accent-color);
  background-color: transparent;
  /* Ou qualquer cor desejada */
  color: var(--white-color);
  /* Para garantir contraste em modo escuro */
  border-radius: 8px;
}

.navbar-logo {
  height: auto;
  width: 120px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 5px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {

  background-image: linear-gradient(0deg,
      var(--accent-color) 0%,
      var(--primary-color) 80%,
      var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--accent-color);
  border-radius: 0 0 100px 100px;
  /* padding-bottom: 100px; */
}

.featured-section .row {
  position: relative;
  /* bottom: 100px;
  margin-bottom: -100px; */
}




.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 88%;
}

.custom-block:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.custom-block-transparent:hover {
  background-color: transparent !important;
  outline-offset: 4px;
  transform: translateY(-3px);
}


.custom-block>a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 10px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay>a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: var(--accent-color);
}

.btn.bg-finance:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/


.timeline-container {
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .list-progress {
  position: absolute;
  top: 0;
  left: 35px;
  /* antes 52px, centraliza com o ícone de 70px */
  width: 6px;
  /* antes 8px, mais fino */
  height: 100%;
  background-color: #ddd;
  z-index: 0;
}

.timeline-container .list-progress .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: green;
}


.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: green;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 15px 0px 40px 100px;
  /* menos espaçamento */
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  /* antes 104px */
  height: 70px;
  /* antes 104px */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 55px;
  /* antes 80px */
  height: 55px;
  /* antes 80px */
  border: 3px solid #fff;
  /* mais fino */
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 18px;
  color: var(--accent-color);
}



/* estados */
.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: green;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: green;
  border-color: #fff;
}

.timeline-container .vertical-scrollable-timeline li p {
  font-size: 0.875rem;
  /* reduzir texto */
  line-height: 1.3;
}

.timeline-container .vertical-scrollable-timeline li h4 {
  font-size: 2rem;
  /* reduzir título */
  margin-bottom: 5px;
}



/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
  background-color: #1a1a1a;
  /* fundo escuro tipo hero */
  color: var(--white-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  /* cor de destaque da tua página */
  color: #fff;
}

.custom-accordion .accordion-body {
  background-color: #f9f9f9;
  /* contraste leve */
  color: var(--primary-color);
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}



.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--accent-color);
  position: relative;
  background-color: var(--section-bg-color);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent transparent var(--accent-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--accent-color);
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  color: var(--p-color);
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  ul.nav.nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing>.d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

.svg-color {
  fill: var(--primary-color);
  /* usa a cor do texto onde for aplicado */
  stroke: var(--primary-color);
  /* para traços, se tiver */
  width: 24px;
  /* tamanho fixo (podes mudar conforme quiser) */
  height: 24px;
}

.btn-outline-form {
  background-color: transparent;
  /* sem preenchimento */
  color: white;
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  /* animação suave */
}

.btn-outline-form:hover {
  background-color: var(--accent-color);
  color: white;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.badge-category:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
  cursor: pointer;
}

.image-wrapper {
  width: 200px !important;
  /* largura desejada */
  height: 200px;
  /* altura desejada */
  overflow: hidden;
  border-radius: 8px;
  /* opcional */
}

.image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* recorta e preenche */
  object-position: center;
  /* foca no centro */
  display: block;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  form-select {
    font-size: 16px;
    /* evita zoom no iOS */
  }


  /* .site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0px 0px;
    border-color: transparent transparent var(--accent-color) transparent;
    pointer-events: none;
  } */

  /* Ajustar altura da barra no mobile */
  .navbar {
    background-color: var(--primary-color);
    padding-top: 0.25rem;
    /* menos espaço em cima */
    padding-bottom: 0.25rem;
    /* menos espaço em baixo */
    min-height: unset;
    /* remove altura mínima do bootstrap */
  }

  /* Não deixar o logo encolher */
  .navbar-logo {
    width: 120px;
    /* mantém o logo igual */
    height: auto;
  }

  /* Tira espaço extra da marca (logo wrapper) */
  .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
    /* evita que o wrapper aumente a altura */
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .section-padding {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-section {

    background-image: linear-gradient(0deg,
        var(--accent-color) 0%,
        var(--primary-color) 80%,
        var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px;
  }

}

@media (min-width: 769px) {

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}


/* Global mobile-friendly rules */
    * {
        box-sizing: border-box;
    }

    

    .container {
        overflow-x: hidden;
    }

    /* Hero Badge */
    .proposal-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        backdrop-filter: blur(10px);
    }

    .proposal-hero-badge svg {
        color: var(--accent-color);
    }

    /* Vehicle Card */
    .proposal-vehicle-card {
        background: white;
        border-radius: 24px;
        /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
        overflow: hidden;
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .vehicle-header {
        background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
        padding: 2.5rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .vehicle-title-badge {
        color: var(--accent-color);
        font-size: 1.00rem;
        font-weight: 900;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .vehicle-title {
        color: white;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .vehicle-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.2rem;
        margin: 0.5rem 0 0 0;
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .status-accepted {
        background: #10b981;
        color: white;
    }

    .cta-accept-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 32px;
        background: linear-gradient(135deg, #990000, #6e0707);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(153, 0, 0, 0.3);
    }

    .cta-accept-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(153, 0, 0, 0.4);
        color: white;
    }

    .cta-accept-btn svg {
        transition: transform 0.3s ease;
    }

    .cta-accept-btn:hover svg {
        transform: translateX(5px);
    }

    .vehicle-content {
        padding: 3rem;
    }

    /* Vehicle Image */
    .vehicle-image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .vehicle-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .vehicle-image-wrapper:hover .vehicle-image {
        transform: scale(1.05);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .vehicle-image-wrapper:hover .image-overlay {
        opacity: 1;
    }

    .view-ad-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: white;
        color: #111;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .view-ad-btn:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-2px);
    }

    /* Vehicle Specs */
    .vehicle-specs {
        display: grid;
        gap: 1rem;
    }

    .spec-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(-20px);
    }

    .spec-item.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .spec-item:hover {
        background: #f1f3f5;
        transform: translateX(5px);
    }

    .spec-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        color: var(--accent-color);
    }

    .spec-icon svg {
        width: 24px;
        height: 24px;
    }

    .spec-content {
        flex: 1;
    }

    .spec-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .spec-value {
        font-size: 1.1rem;
        color: #111;
        font-weight: 600;
    }

    /* Pricing Section */
    .pricing-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 2.5rem;
        border-radius: 16px;
        border: 2px solid #e9ecef;
    }

    .pricing-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
    }

    .pricing-subtitle {
        color: #6c757d;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cost-breakdown {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .cost-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        border-bottom: 1px solid #f1f3f5;
    }

    .cost-item:last-child {
        border-bottom: none;
    }

    .cost-label {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #495057;
        font-size: 1rem;
        font-weight: 500;
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cost-label svg {
        color: var(--accent-color);
        flex-shrink: 0;
        min-width: 18px;
    }

    .cost-value {
        font-size: 1.3rem;
        font-weight: 700;
        color: #111;
        flex-shrink: 0;
        white-space: nowrap;
        margin-left: auto;
    }

    .cost-separator {
        height: 2px;
        background: linear-gradient(90deg, var(--accent-color), #990000);
        margin: 1rem 0;
        border-radius: 2px;
    }

    .cost-total {
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }

    .cost-total .cost-label {
        font-size: 1.2rem;
        color: #111;
    }

    .cost-value-total {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #990000, #6e0707);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .info-tooltip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background: var(--accent-color);
        color: white;
        border-radius: 50%;
        font-size: 0.75rem;
        cursor: help;
        margin-left: 4px;
    }

    .business-offer {
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #986b33, #b8860b);
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .business-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: white;
        font-weight: 600;
        font-size: 0.85rem;
    }

    .business-content {
        text-align: right;
    }

    .business-price {
        font-size: 1.75rem;
        font-weight: 800;
        color: white;
    }

    .business-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Timeline */
    .process-timeline-section {
        background: white;
        padding: 3rem;
        border-radius: 24px;
        /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
        margin-bottom: 3rem;
    }

    .section-header-modern {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .section-icon {
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .section-title-modern {
        font-size: 2rem;
        font-weight: 700;
        color: #111;
        margin: 0;
    }

    .section-subtitle-modern {
        color: #6c757d;
        font-size: 1.1rem;
        margin: 0.5rem 0 0 0;
    }

    .timeline-container {
        position: relative;
        padding-left: 3rem;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 20px;
        bottom: 20px;
        width: 3px;
        background: linear-gradient(to bottom, var(--accent-color), #990000);
        border-radius: 3px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .timeline-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-marker {
        position: absolute;
        left: -3rem;
        top: 0;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #990000, #6e0707);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3); */
        border: 2px solid rgba(153, 0, 0, 0.3);
        z-index: 2;
    }

    .timeline-marker svg {
        color: white;
    }

    .timeline-content {
        background: #f8f9fa;
        padding: 1.5rem 2rem;
        border-radius: 12px;
        border-left: 4px solid var(--accent-color);
    }

    .timeline-step {
        color: var(--accent-color);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .timeline-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #111;
        margin: 0 0 0.5rem 0;
    }

    .timeline-description {
        color: #6c757d;
        font-size: 1rem;
        margin: 0 0 0.75rem 0;
    }

    .timeline-duration {
        display: inline-block;
        padding: 6px 16px;
        background: white;
        border-radius: 50px;
        color: var(--accent-color);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .timeline-note {
        margin-top: 2rem;
        padding: 1.25rem;
        background: #fff3cd;
        border-left: 4px solid #986b33;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #856404;
        font-size: 0.95rem;
    }

    .timeline-note svg {
        flex-shrink: 0;
        color: #986b33;
    }

    /* Info Cards Modern */
    .info-card-modern {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .info-card-modern.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .info-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .info-card-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #990000, #6e0707);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
    }

    .info-card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 1rem;
    }

    .info-card-description {
        color: #6c757d;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .info-card-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-card-list li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }

    .info-card-list li:last-child {
        margin-bottom: 0;
    }

    .info-card-list svg {
        color: #10b981;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .info-card-list strong {
        display: block;
        color: #111;
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .info-card-list p {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.5;
    }

    /* Payment Breakdown */
    .payment-breakdown {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .payment-item {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .payment-badge {
        display: inline-block;
        padding: 6px 14px;
        background: var(--accent-color);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .payment-details {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .payment-step {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
    }

    .payment-percentage {
        font-weight: 700;
        color: #111;
        font-size: 1.1rem;
    }

    .payment-when {
        color: #6c757d;
        font-size: 0.95rem;
    }

    .payment-info {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Final CTA */
    .final-cta-section {
        background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
        padding: 4rem 3rem;
        border-radius: 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .02) 35px, rgba(255, 255, 255, .02) 70px);
        pointer-events: none;
    }

    .final-cta-content {
        position: relative;
        z-index: 1;
    }

    .final-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }

    .final-cta-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 2.5rem;
    }

    .final-cta-contacts {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .contact-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
        transform: translateY(-2px);
    }

    .btn-accept-final {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 40px;
        background: linear-gradient(135deg, #990000, #6e0707);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(153, 0, 0, 0.4);
    }

    .btn-accept-final:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(153, 0, 0, 0.5);
        color: white;
    }

    .btn-accept-final svg {
        transition: transform 0.3s ease;
    }

    .btn-accept-final:hover svg {
        transform: scale(1.2);
    }

    /* Modal Styles */
    .confirm-accept-modal .modal-content {
        background-color: var(--primary-color);
        color: white;
        border-radius: 20px;
        border: none;
    }

    .confirm-accept-modal .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 2rem;
    }

    .confirm-accept-modal .modal-body {
        padding: 2rem;
    }

    .confirm-accept-modal .form-label {
        color: white;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .modal-backdrop.show {
        backdrop-filter: blur(20px);
        background-color: rgba(0, 0, 0, 0.8);
    }

    .confirm-accept-modal .form-control {
        background-color: var(--secondary-color);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .confirm-accept-modal .form-control:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-color);
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(153, 0, 0, 0.25);
    }

    /* Equipment Section */
    .equipment-section {
        background: white;
        padding: 3rem;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        margin-bottom: 3rem;
    }

    .equipment-group {
        margin-bottom: 2.5rem;
    }

    .equipment-group:last-child {
        margin-bottom: 0;
    }

    .equipment-group-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f1f3f5;
    }

    .equipment-group-header svg {
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .equipment-group-header h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #111;
        margin: 0;
    }

    .equipment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    .equipment-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 1rem 1.25rem;
        background: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .equipment-item:hover {
        background: white;
        border-color: var(--accent-color);
        transform: translateX(5px);
    }

    .equipment-item svg {
        color: #10b981;
        flex-shrink: 0;
    }

    .equipment-item span {
        color: #495057;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.4;
    }

    /* Other Options Section */
    .other-options-section {
        margin-bottom: 3rem;
    }

    .other-links-list {
        display: block;
        flex-direction: column;
        gap: 0.75rem;
    }

    .other-link-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 1.25rem 1.5rem;
        background: #f8f9fa;
        border-radius: 12px;
        text-decoration: none;
        color: #111;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .other-link-item:hover {
        background: white;
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateX(5px);
    }

    .other-link-item svg:first-child {
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .other-link-item span {
        flex: 1;
    }

    .other-link-item .arrow-icon {
        color: currentColor;
        transition: transform 0.3s ease;
    }

    .other-link-item:hover .arrow-icon {
        transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .vehicle-title {
            font-size: 2rem;
        }

        .section-title-modern {
            font-size: 1.5rem;
        }

        .pricing-section {
            padding: 2rem;
        }

        .cost-item {
            flex-wrap: wrap;
        }

        .cost-label {
            font-size: 0.95rem;
        }

        .cost-value {
            font-size: 1.2rem;
        }

        .timeline-container {
            padding-left: 2rem;
        }

        .timeline-container::before {
            left: 10px;
        }

        .timeline-marker {
            left: -2.5rem;
            width: 36px;
            height: 36px;
        }

        .final-cta-title {
            font-size: 2rem;
        }

        .equipment-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        }
    }

    @media (max-width: 768px) {
        /* Hero adjustments */
        .proposal-hero-badge {
            font-size: 0.85rem;
            padding: 8px 16px;
        }

        .hero-section h1 {
            font-size: 1.75rem !important;
        }

        .hero-section .lead {
            font-size: 1rem !important;
        }

        /* Vehicle header */
        .vehicle-header {
            flex-direction: column;
            padding: 1.5rem;
        }

        .vehicle-title {
            font-size: 1.75rem !important;
        }

        .vehicle-subtitle {
            font-size: 1rem !important;
        }

        .cta-accept-btn {
            width: 100%;
            justify-content: center;
            padding: 12px 24px;
            font-size: 0.95rem;
        }

        .status-badge {
            width: 100%;
            justify-content: center;
        }

        /* Vehicle content */
        .vehicle-content {
            padding: 1.5rem 1rem;
        }

        .proposal-vehicle-card {
            border-radius: 16px;
            margin-bottom: 2rem;
        }

        /* Image wrapper */
        .vehicle-image-wrapper {
            margin-bottom: 1.5rem;
        }

        /* Specs - stack better on mobile */
        .vehicle-specs {
            margin-bottom: 1.5rem;
        }

        .spec-item {
            padding: 1rem;
        }

        .spec-icon {
            width: 40px;
            height: 40px;
        }

        .spec-value {
            font-size: 1rem;
        }

        /* PRICING SECTION - Main fix area */
        .pricing-section {
            padding: 1.25rem;
            margin-top: 1.5rem;
        }

        .pricing-title {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
        }

        .pricing-subtitle {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        /* Cost breakdown - prevent breaking */
        .cost-breakdown {
            padding: 1.25rem;
        }

        .cost-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem 0;
        }

        .cost-label {
            width: 100%;
            font-size: 0.95rem;
            gap: 10px;
        }

        .cost-label svg {
            width: 16px;
            height: 16px;
        }

        .cost-value {
            width: 100%;
            text-align: left;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-color);
        }

        .cost-total .cost-label {
            font-size: 1.05rem;
        }

        .cost-value-total {
            font-size: 1.75rem;
            text-align: left;
            width: 100%;
        }

        .info-tooltip {
            margin-left: 6px;
        }

        /* Business offer mobile */
        .business-offer {
            flex-direction: column;
            gap: 1rem;
            padding: 1.25rem;
            margin-top: 1.25rem;
        }

        .business-badge {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .business-content {
            text-align: center;
        }

        .business-price {
            font-size: 1.5rem;
        }

        .business-label {
            font-size: 0.85rem;
        }

        /* Timeline */
        .process-timeline-section {
            padding: 1.5rem 1rem;
            border-radius: 16px;
            margin-bottom: 2rem;
        }

        .section-header-modern {
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-icon {
            width: 28px;
            height: 28px;
        }

        .section-title-modern {
            font-size: 1.35rem;
        }

        .section-subtitle-modern {
            font-size: 0.95rem;
        }

        .timeline-container {
            padding-left: 1.5rem;
        }

        .timeline-container::before {
            left: 8px;
        }

        .timeline-marker {
            left: -1.9rem;
            width: 36px;
            height: 36px;
        }

        .timeline-marker svg {
            width: 20px;
            height: 20px;
        }

        .timeline-content {
            padding: 1.25rem 1rem;
        }

        .timeline-title {
            font-size: 1.2rem;
        }

        .timeline-description {
            font-size: 0.9rem;
        }

        .timeline-duration {
            font-size: 0.85rem;
            padding: 5px 14px;
        }

        .timeline-note {
            padding: 1rem;
            font-size: 0.85rem;
        }

        /* Info cards */
        .info-card-modern {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .info-card-icon {
            width: 56px;
            height: 56px;
        }

        .info-card-title {
            font-size: 1.25rem;
        }

        .info-card-description {
            font-size: 0.95rem;
        }

        .info-card-list strong {
            font-size: 0.95rem;
        }

        .info-card-list p {
            font-size: 0.9rem;
        }

        /* Payment breakdown */
        .payment-breakdown {
            gap: 1rem;
        }

        .payment-item {
            padding: 1.25rem;
        }

        .payment-badge {
            font-size: 0.8rem;
        }

        .payment-step {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .payment-percentage {
            font-size: 1rem;
        }

        .payment-when {
            font-size: 0.85rem;
        }

        .payment-info {
            font-size: 0.85rem;
        }

        /* Equipment */
        .equipment-section {
            padding: 1.5rem 1rem;
            border-radius: 16px;
            margin-bottom: 2rem;
        }

        .equipment-group {
            margin-bottom: 2rem;
        }

        .equipment-group-header h4 {
            font-size: 1.15rem;
        }

        .equipment-grid {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        .equipment-item {
            padding: 0.85rem 1rem;
        }

        .equipment-item span {
            font-size: 0.9rem;
        }

        /* Final CTA */
        .final-cta-section {
            padding: 2.5rem 1.25rem;
            border-radius: 16px;
        }

        .final-cta-title {
            font-size: 1.75rem;
        }

        .final-cta-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .final-cta-contacts {
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
        }

        .contact-btn {
            justify-content: center;
            font-size: 0.9rem;
            padding: 12px 20px;
        }

        .btn-accept-final {
            width: 100%;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1rem;
        }

        /* Other links */
        .other-link-item {
            padding: 1rem 1.25rem;
            font-size: 0.9rem;
        }

        /* Container adjustments */
        .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    /* Extra small devices */
    @media (max-width: 576px) {
        .vehicle-content {
            padding: 1rem 0.75rem;
        }

        .pricing-section {
            padding: 1rem;
        }

        .cost-breakdown {
            padding: 1rem;
        }

        .cost-value {
            font-size: 1.3rem;
        }

        .cost-value-total {
            font-size: 1.5rem;
        }

        .vehicle-title {
            font-size: 1.5rem !important;
        }

        .pricing-title {
            font-size: 1.2rem;
        }

        .section-title-modern {
            font-size: 1.2rem;
        }

        .final-cta-title {
            font-size: 1.5rem;
        }

        .proposal-vehicle-card {
            border-radius: 12px;
        }

        .process-timeline-section,
        .equipment-section,
        .final-cta-section {
            border-radius: 12px;
        }
    }