@charset "UTF-8";
.header {
  height: 120px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999999;
}
.header .container {
  display: flex;
  align-items: center;
}
.header .container .header__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .header__content .header__hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 9999999;
}
.header .container .header__content .header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header .container .header__content .header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .container .header__content .header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .container .header__content .header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header .container .header__content nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .container .header__content nav ul li a {
  text-align: center;
  display: block;
  width: 150px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}
.header .container .header__content nav ul li a:hover {
  background-color: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}
.header .container .header__content nav ul li a span {
  cursor: pointer;
}
.header .container .header__content nav ul li:nth-child(odd) a {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}
.header .container .header__content nav ul li:nth-child(odd) a:hover {
  background-color: white;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

@media (max-width: 888px) {
  .header {
    height: auto;
    min-height: 80px;
  }
  .header .container .header__content {
    position: relative;
    padding: 15px 0;
  }
  .header .container .header__content .header__hamburger {
    display: flex;
  }
  .header .container .header__content .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    transition: left 0.3s ease;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .container .header__content .header__nav.active {
    left: 0;
  }
  .header .container .header__content .header__nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px;
  }
  .header .container .header__content .header__nav ul li {
    width: 100%;
  }
  .header .container .header__content .header__nav ul li a {
    width: 100%;
    max-width: 300px;
    height: 60px;
    font-size: 16px;
    margin: 0 auto;
  }
  .header .container .header__content .header__nav ul li a span {
    font-size: 14px;
    margin-top: 5px;
  }
  .header .container .header__content .header__nav ul li:nth-child(odd) a {
    background-color: var(--primary-color);
    color: white;
  }
  .header .container .header__content .header__nav ul li:nth-child(odd) a:hover {
    background-color: white;
    color: var(--primary-color);
  }
}
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0 1rem;
}
.footer__content {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__section .footer__logo {
  margin-bottom: 1rem;
}
.footer__section .footer__logo img {
  height: auto;
  width: 269px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__section .footer__logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.footer__section .footer__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}
.footer__section .footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__section .footer__social .social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__section .footer__social .social__link:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}
.footer__section .footer__title {
  font-size: 1.25rem;
  font-weight: 600;
}
.footer__section .footer__contact .contact__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer__section .footer__contact .contact__item i {
  width: 16px;
  color: var(--tertiary-color);
}
.footer__section .footer__contact .contact__item a {
  color: white;
  text-decoration: none;
}
.footer__section .footer__contact .contact__item a:hover {
  text-decoration: underline;
}
.footer__section .footer__links {
  list-style: none;
}
.footer__section .footer__links li {
  margin-bottom: 0.5rem;
}
.footer__section .footer__links li a {
  color: white;
  text-decoration: none;
}
.footer__section .footer__links li a:hover {
  text-decoration: underline;
}
.footer__section .footer__company p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}
.footer__bottom p, .footer__bottom span {
  font-size: 0.875rem;
}

.footer__content .footer__section:nth-child(2) ul, .footer__content .footer__section:nth-child(2) h3 {
  text-align: left;
}

.footer__section {
  flex: 1 1 220px;
}

.footer__section--1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__section {
    text-align: center;
  }
  .footer__section .footer__logo img {
    height: 35px;
    max-width: 150px;
  }
  .footer__section .footer__logo .logo-text {
    font-size: 1.25rem;
  }
  .footer__section .footer__social {
    justify-content: center;
  }
}
.hero {
  position: relative;
}
.hero .container .hero__content {
  position: relative;
  height: 527px;
  padding: 120px 80px;
  border-radius: 20px;
}
.hero .container .hero__content .hero__content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.hero .container .hero__content .hero__text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
}
.hero .container .hero__content .hero__text h1 {
  font-weight: 700;
  font-size: 40px;
  color: white;
  width: 450px;
}
.hero .container .hero__content .hero__text .hero__description {
  font-weight: 400;
  font-size: 20px;
  color: white;
  width: 300px;
  margin-top: 8px;
}
.hero .container .hero__content .hero__text .hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero .container .hero__content .hero__text .hero__buttons a:first-child {
  display: block;
  width: 190px;
  height: 50px;
  display: flex;
  font-weight: 700;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}
.hero .container .hero__content .hero__text .hero__buttons a:first-child:hover {
  background-color: white;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.hero .container .hero__icon {
  margin: 32px 0 40px 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero .container .hero__icon span {
  font-size: 16px;
  width: 270px;
  position: inherit;
  z-index: 9;
}
.hero .container .hero__icon img {
  background-color: var(--secondary-color);
  padding: 15px;
  border-radius: 100px;
  height: 86px;
  width: 89px;
}
.hero .hero__image {
  position: absolute;
  top: -54px;
  right: 235px;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.hero .hero__image img {
  transition: all 0.3s ease;
  width: 760px;
}

@media (max-width: 1440px) {
  .hero .hero__image {
    width: 740px;
    right: 80px;
    bottom: -44px;
    top: initial;
  }
  .hero .hero__image img {
    width: 740px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__image {
    top: 30px;
    right: 0;
    bottom: initial;
    transition: all 0.3s ease;
    width: 669px;
    margin: 0 auto;
  }
  .hero .hero__image img {
    transition: all 0.3s ease;
    filter: blur(3px);
    width: 669px;
  }
}
@media (max-width: 900px) {
  .hero .hero__image {
    top: 138px;
    right: 0;
    width: 700px;
  }
  .hero .hero__image img {
    transition: all 0.3s ease;
    filter: blur(3px);
    width: 700px;
  }
  .hero .container .hero__content.backgroundMobile {
    display: block;
  }
}
@media (max-width: 900px) {
  .hero .container .hero__content .hero__text h1 {
    width: 100%;
  }
  .hero .container .hero__content .hero__text .hero__buttons > a, .hero .container .hero__content .hero__text .hero__buttons {
    width: 100% !important;
  }
  .hero .container .hero__content .hero__text .hero__buttons {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    padding: 115px 40px !important;
  }
}
.benefits {
  padding: 4rem 0;
}
.benefits .section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.benefits .section__header .section__title {
  font-size: 30px;
  max-width: 700px;
  font-weight: 400;
  text-align: left;
  margin: 1rem 0 0 0;
}
.benefits .section__header .section__description {
  font-size: 20px;
  text-align: left;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: minmax(200px, auto);
  grid-auto-flow: dense;
}
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(150px, auto);
  }
}

.benefit-card {
  background: var(--background-color, var(--secondary-color));
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.benefit-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.benefit-card__icon i {
  font-size: 1.2rem;
  color: white;
}
.benefit-card__icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefit-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.benefit-card__content .benefit-card__description {
  font-size: clamp(16px, 2.5vw, 30px);
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
  flex: 1;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.benefit-card[style*="grid-row: span 2"] .benefit-card__content .benefit-card__description {
  -webkit-line-clamp: 6;
  font-size: clamp(18px, 2.8vw, 32px);
}
.benefit-card__content .benefit-card__link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--secondary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  align-self: flex-start;
  flex-shrink: 0;
}
.benefit-card__content .benefit-card__link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.benefit-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 200px;
}
.benefit-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.benefit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.benefit-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .benefits {
    padding: 2rem 0;
  }
  .benefits .section__header {
    margin-bottom: 2rem;
  }
  .benefits .section__header .section__title {
    font-size: 2rem;
  }
  .benefits__grid {
    gap: 1rem;
  }
  .benefit-card {
    padding: 1.2rem;
    min-height: 150px;
  }
  .benefit-card__icon {
    width: 35px;
    height: 35px;
    margin-bottom: 0.8rem;
  }
  .benefit-card__icon i {
    font-size: 1rem;
  }
  .benefit-card__content .benefit-card__description {
    font-size: clamp(14px, 4vw, 18px);
    -webkit-line-clamp: 3;
  }
  .benefit-card[style*="grid-row: span 2"] .benefit-card__content .benefit-card__description {
    -webkit-line-clamp: 4;
  }
  .benefit-card__content .benefit-card__link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .benefit-image {
    max-height: 150px;
  }
  .benefits__grid div:nth-child(6), .benefits__grid div:nth-child(2) {
    grid-row: auto !important;
  }
}
.numbersMobile {
  display: none;
}

#numbers .container {
  padding: 200px 0;
}
#numbers .container .numbers__text {
  max-width: 370px;
  color: white;
}
#numbers .container .numbers__text h3 {
  font-weight: 400;
  font-size: 25px;
}
#numbers .container .numbers__text h2 {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 55px;
}
#numbers .container .numbers__text .numbers__cta a {
  display: flex;
  align-items: center;
  border-radius: 24px;
  color: white;
  gap: 16px;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  width: 200px;
  height: 48px;
  transition: all 0.3s ease;
}
#numbers .container .numbers__text .numbers__cta a:hover {
  color: var(--primary-color);
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
#numbers .container .cards_numbers {
  margin-top: 100px;
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
}
#numbers .container .cards_numbers .card {
  background-color: white;
  padding: 25px 25px 67px 25px;
  border-radius: 20px;
  flex: 1 1 200px;
  text-align: center;
}
#numbers .container .cards_numbers .card div {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin-bottom: 16px;
}
#numbers .container .cards_numbers .card div img {
  width: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
#numbers .container .cards_numbers .card strong {
  font-size: 27px;
  margin: 8px;
}
#numbers .container .cards_numbers .card p {
  font-size: 40px;
  font-weight: 700;
}
#numbers .container .cards_numbers .card span {
  font-size: 14px;
  color: var(--primary-color);
}
#numbers .container .cards_numbers .card:last-child div {
  background-color: var(--primary-color);
}
#numbers .container .cards_numbers .card:last-child strong {
  color: var(--primary-color);
}
#numbers .container .cards_numbers .card:nth-child(2) div {
  background-color: var(--tertiary-color);
}
#numbers .container .cards_numbers .card:nth-child(2) strong {
  color: var(--tertiary-color);
}
#numbers .container .cards_numbers .card:first-child div {
  background-color: var(--secondary-color);
}
#numbers .container .cards_numbers .card:first-child strong {
  color: var(--secondary-color);
}

@media (max-width: 1200px) {
  #numbers {
    background-position: center;
  }
}
@media (max-width: 900px) {
  .numbersDesktop {
    display: none;
  }
  .numbersMobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .cards_numbers {
    flex-direction: column !important;
  }
  .cards_numbers .card div {
    margin: 0 auto;
  }
  .numbers__text {
    width: 100%;
    max-width: initial !important;
  }
  .numbers__cta a {
    width: 100% !important;
  }
}
.coverage {
  padding: 100px 0;
  background-color: var(--secondary-color);
}
.coverage .coverage__card {
  width: 735px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: relative;
}
.coverage .coverage__card .coverage__header {
  margin-bottom: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.coverage .coverage__card .coverage__header > div {
  width: 100%;
}
.coverage .coverage__card .coverage__header .contato__header-options {
  margin-top: 20px;
}
.coverage .coverage__card .coverage__header .contato__header-options h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  text-align: center;
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option {
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  transition: color 0.3s ease;
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option:hover {
  background: #e9ecef;
  border-color: var(--primary-color, #ff6b35);
  transform: scale(1.02);
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option:hover h4 {
  color: var(--primary-color, #ff6b35);
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option.active {
  background: var(--primary-color, #ff6b35);
  border-color: var(--primary-color, #ff6b35);
  transform: scale(1.05);
}
.coverage .coverage__card .coverage__header .contato__header-options .contato__header-options-items .contato-option.active h4 {
  color: white;
}
.coverage .coverage__card .coverage__header .coverage__title {
  font-size: 40px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}
.coverage .coverage__card .coverage__header .coverage__description {
  font-size: 16px;
  max-width: 427px;
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
}
.coverage .coverage__card .coverage__header .coverage__icon {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
}
.coverage .coverage__card .coverage__list {
  margin-bottom: 30px;
}
.coverage .coverage__card .coverage__list .coverage-item {
  border-bottom: 1px solid #f0f0f0;
}
.coverage .coverage__card .coverage__list .coverage-item:last-child {
  border-bottom: none;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question span, .coverage .coverage__card .coverage__list .coverage-item .coverage-item__question div {
  transition: all 0.3s ease;
  cursor: pointer;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question:hover span {
  scale: 1.02;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question:hover div {
  scale: 1.02;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question .coverage-item__icon {
  width: 32px;
  height: 32px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question .coverage-item__icon i {
  margin-left: 1px;
  color: white;
  transition: transform 0.3s ease;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question span {
  flex: 1;
  text-align: left;
  font-size: 16px;
  color: white;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question .coverage-item__toggle {
  color: #999;
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__question.active .coverage-item__icon i {
  transform: rotate(90deg);
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__answer {
  display: none;
  padding: 0;
}
.coverage .coverage__card .coverage__list .coverage-item .coverage-item__answer p {
  padding: 10px;
  color: white;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}
.coverage .coverage__card .coverage__third-party {
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: end;
  gap: 16px;
}
.coverage .coverage__card .coverage__third-party .coverage__third-party__icon {
  width: 20px;
  height: 20px;
  background: var(--primary-color, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}
.coverage .coverage__card .coverage__third-party .coverage__third-party__icon i {
  margin-left: 1px;
  font-size: 10px;
  font-weight: 900;
}
.coverage .coverage__card .coverage__third-party .coverage__third-party__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.coverage .coverage__card .coverage__third-party .coverage__third-party__content p {
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
.coverage .coverage__card .coverage__form {
  margin-top: 30px;
}
.coverage .coverage__card .coverage__form .alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.coverage .coverage__card .coverage__form .alert i {
  font-size: 16px;
  flex-shrink: 0;
}
.coverage .coverage__card .coverage__form .alert.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.coverage .coverage__card .coverage__form .alert.alert-success i {
  color: #28a745;
}
.coverage .coverage__card .coverage__form .alert.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.coverage .coverage__card .coverage__form .alert.alert-error i {
  color: #dc3545;
}
.coverage .coverage__card .coverage__form .alert.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.coverage .coverage__card .coverage__form .alert.alert-warning i {
  color: #f39c12;
}
.coverage .coverage__card .coverage__form .alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.coverage .coverage__card .coverage__form .alert.alert-info i {
  color: #17a2b8;
}
.coverage .coverage__card .coverage__form .form-group {
  margin-bottom: 20px;
}
.coverage .coverage__card .coverage__form .form-group .form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.coverage .coverage__card .coverage__form .form-group .form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  color: black;
  background: #fafafa;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__form .form-group .form-control::-moz-placeholder {
  color: #999;
  font-size: 16px;
}
.coverage .coverage__card .coverage__form .form-group .form-control::placeholder {
  color: #999;
  font-size: 16px;
}
.coverage .coverage__card .coverage__form .form-group .form-control:focus {
  border-color: var(--primary-color, #ff6b35);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}
.coverage .coverage__card .coverage__form .form-group .form-control:invalid {
  border-color: #e74c3c;
}
.coverage .coverage__card .coverage__form .form-group .textarea-container {
  position: relative;
}
.coverage .coverage__card .coverage__form .form-group .textarea-container .char-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 12px;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.coverage .coverage__card .coverage__form .form-group .textarea-container .char-counter.warning {
  color: #f39c12;
  font-weight: 600;
}
.coverage .coverage__card .coverage__form .form-group .textarea-container .char-counter.danger {
  color: #e74c3c;
  font-weight: 600;
}
.coverage .coverage__card .coverage__form .form-group .textarea-container .char-counter.limit-reached {
  color: #d32f2f;
  font-weight: 700;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid #f44336;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.coverage .coverage__card .coverage__form .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}
.coverage .coverage__card .coverage__form .form-group .form-error {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox {
  margin-bottom: 30px;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container input[type=checkbox] {
  display: none;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: white;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 12px;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container input:checked + .checkmark {
  background: var(--primary-color, #ff6b35);
  border-color: var(--primary-color, #ff6b35);
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container input:checked + .checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container .checkbox-text {
  font-size: 14px;
  color: black;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container .checkbox-text .politica-link {
  color: var(--primary-color, #ff6b35);
  text-decoration: underline;
  font-weight: 500;
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container .checkbox-text .politica-link:hover {
  color: var(--secondary-color);
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox .checkbox-container:hover .checkmark {
  border-color: var(--primary-color, #ff6b35);
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox.has-error .checkmark {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}
.coverage .coverage__card .coverage__form .form-group.form-checkbox.has-error .checkbox-text {
  color: #dc3545;
}
.coverage .coverage__card .coverage__form .form-submit {
  text-align: center;
  margin-top: 30px;
}
.coverage .coverage__card .coverage__form .form-submit .coverage__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 190px;
  height: 50px;
  background: var(--primary-color, #ff6b35);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__form .form-submit .coverage__button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.coverage .coverage__card .coverage__form .form-submit .coverage__button:active {
  transform: translateY(0);
}
.coverage .coverage__card .coverage__form .form-submit .coverage__button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.coverage .coverage__card .coverage__form .form-submit .coverage__button i {
  font-size: 14px;
}
.coverage .coverage__card .coverage__cta {
  text-align: center;
}
.coverage .coverage__card .coverage__cta .coverage__button {
  display: block;
  width: 190px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--primary-color, #ff6b35);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.coverage .coverage__card .coverage__cta .coverage__button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.coverage .coverage__card .coverage__cta .coverage__button i {
  font-size: 14px;
}

@media (max-width: 900px) {
  .coverage .container {
    width: 100% !important;
  }
  .coverage .container .coverage__card {
    width: 90% !important;
  }
}
@media (max-width: 768px) {
  .coverage__header {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
  }
  .coverage__header .contato__header-options .contato__header-options-items {
    flex-direction: column;
    align-items: center;
  }
  .coverage__header .contato__header-options .contato__header-options-items .contato-option {
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }
  .coverage__header div:first-child {
    width: 100%;
  }
  .coverage__form .form-group .form-control {
    font-size: 16px;
    padding: 14px 16px;
  }
  .coverage__form .form-group .form-textarea {
    min-height: 100px;
  }
  .coverage__form .form-group .textarea-container .char-counter {
    position: static;
    text-align: right;
    margin-top: 8px;
    background: transparent;
    padding: 0;
  }
  .coverage__form .form-group.form-checkbox .checkbox-container {
    gap: 10px;
  }
  .coverage__form .form-group.form-checkbox .checkbox-container .checkmark {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
  .coverage__form .form-group.form-checkbox .checkbox-container .checkbox-text {
    font-size: 13px;
  }
  .coverage__form .form-submit .coverage__button {
    width: 100%;
    max-width: 300px;
  }
}
.testimonials {
  padding: 80px 0;
  background: var(--primary-color);
}
.testimonials__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .testimonials__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.testimonials__content {
  max-width: 300px;
  padding: 20px;
  border-radius: 20px;
  color: white;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials__content {
    padding: 40px 30px;
  }
}
.testimonials__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 2rem;
  }
}
.testimonials__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
  opacity: 0.9;
}
.testimonials__navigation {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
.testimonials__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.testimonials__nav-btn:first-child {
  background: white;
  color: var(--primary-color);
}
.testimonials__nav-btn:first-child:hover {
  color: white;
  background: var(--primary-color);
}
.testimonials__nav-btn:last-child {
  background: var(--primary-color);
  color: white;
}
.testimonials__nav-btn:last-child:hover {
  background: white;
  color: var(--secondary-color);
}
.testimonials__verification-icon {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4CAF50;
  font-size: 0.9rem;
}
.testimonials__verification-text {
  display: flex;
  flex-direction: column;
}
.testimonials__verification-text span {
  font-size: 0.8rem;
  opacity: 0.9;
}
.testimonials__verification-text strong {
  font-size: 1.1rem;
  font-weight: 600;
}
.testimonials__carousel-wrapper {
  padding: 20px 0;
}
.testimonials__carousel .owl-stage-outer {
  padding: 10px 0;
}
.testimonials__carousel.owl-carousel {
  display: block;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  flex-direction: column;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card__quote {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1;
}
.testimonial-card__content {
  flex: 1;
  margin-bottom: 25px;
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
  margin: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card__avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.testimonial-card__name {
  font-size: 1.1rem;
  font-weight: 400;
  color: black;
  margin-bottom: 5px;
}
.testimonial-card__location {
  font-size: 0.9rem;
  color: #666;
}

.owl-carousel .owl-item {
  padding: 0 15px;
}
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-carousel .owl-item {
  display: flex;
  height: auto;
}

@media (max-width: 1024px) {
  .testimonials__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .testimonials__content {
    max-width: initial;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .testimonials__verification {
    width: 100%;
  }
  .testimonials__verification img {
    width: 100%;
  }
}
.blog {
  padding: 4rem 0;
  background-color: var(--secondary-color);
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--secondary-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-card__content {
  padding: 1.5rem;
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-card__excerpt {
  color: var(--tertiary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.blog-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.blog-card__meta .blog-card__author,
.blog-card__meta .blog-card__category {
  color: var(--tertiary-color);
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}
.blog-card__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.blog-card__link:hover {
  color: var(--tertiary-color);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog {
    padding: 2rem 0;
  }
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-card__content {
    padding: 1rem;
  }
  .blog-card__title {
    font-size: 1.125rem;
  }
  .blog-card__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.coverage .container .coverage__card {
  background-color: transparent;
}
.coverage .container .coverage__card .coverage__header .coverage__faq__description {
  color: white;
  font-size: 12px;
}
.coverage .container .coverage__card .coverage__header .title_faq {
  color: white;
  font-weight: 400;
}
.coverage .container .coverage__card .coverage__list .faq__title {
  color: white;
  display: flex;
  justify-content: end;
  padding-left: 20px;
  margin-top: 20px;
}
.coverage .container .coverage__card .coverage__list .faq__title span {
  font-size: 12px;
  margin-left: 30px;
}

.coverage .coverage__card .coverage__cta .button_faq {
  width: 100% !important;
}

.faq {
  background-color: white;
}
.faq .container {
  display: flex;
  position: relative;
}
.faq .container img {
  width: 677px;
}

.coverage__list__faq {
  max-width: 485px;
}

.faq__image {
  position: absolute;
  bottom: -104px;
  right: -775px;
}

.far_card {
  box-shadow: none !important;
  width: auto !important;
  margin: initial !important;
}

@media (max-width: 1600px) {
  .faq__image {
    right: -690px;
  }
}
@media (max-width: 1440px) {
  .faq__image {
    right: -570px;
  }
  .faq .container img {
    width: 550px;
  }
}
@media (max-width: 1280px) {
  .faq__image {
    right: -40px;
    top: 30%;
  }
  .faq .container {
    justify-content: center;
  }
  .faq .container img {
    display: none;
    width: 350px;
  }
  .far_card {
    width: 100% !important;
  }
  .coverage .coverage__card {
    width: 100% !important;
  }
  .coverage__list__faq {
    width: 100% !important;
    max-width: none;
  }
}
#indications {
  background-color: var(--primary-color);
  padding: 180px 0;
}
#indications .container {
  display: flex;
  gap: 32px;
}
#indications .container h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
}
#indications .container .indications__left .indications__topic {
  background: linear-gradient(90deg, #FFFFFF 0%, #F1CABA 100%);
  color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  align-items: center;
}
#indications .container .indications__left .indications__topic div {
  min-width: 40px;
  min-height: 40px;
  border: 3px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
#indications .container .indications__left .indications__topic div i {
  font-weight: 900;
}
#indications .container .indications__left .indications__topic:nth-child(3) {
  margin: 25px 0;
}
#indications .container .indications__left > p {
  color: white;
  margin-top: 30px;
  text-align: justify;
}
#indications .container .indications__right {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
#indications .container .indications__right > div {
  width: 348px;
  height: 281px;
  flex: 1 1 348px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 30px;
}
#indications .container .indications__right > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#indications .container .indications__right > div:last-child h4 {
  font-size: 40px;
  color: white;
}
#indications .container .indications__right .indications__right__image {
  display: flex;
  flex-direction: column;
}
#indications .container .indications__right .indications__right__image .indications_right_image_background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(43, 39, 100, 0) 2.28%, #2D2764 56.35%);
  border-radius: 20px;
  z-index: 2;
}
#indications .container .indications__right .indications__right__image p {
  margin-top: 18px;
  text-align: justify;
  font-size: 16px;
  font-weight: 300;
}
#indications .container .indications__right .indications__right__image h3 {
  font-size: 20px;
}
#indications .container .indications__right .indications__right__image h3, #indications .container .indications__right .indications__right__image p {
  position: relative;
  z-index: 3;
  color: white;
}
#indications .container .indications__right .indications__right__image img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

#btn-indications {
  margin-top: 42px;
}
#btn-indications div {
  width: 100%;
}
#btn-indications div a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 32px;
  color: white;
  font-weight: 700;
  height: 80px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
#btn-indications div a:hover {
  background-color: white;
  color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #indications .container {
    flex-wrap: wrap;
  }
  #indications .container .indications__left {
    max-width: initial;
  }
}
.cta-associates {
  background: var(--primary-color);
  padding: 220px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-associates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: white;
  clip-path: ellipse(120% 100% at 50% 0%);
  z-index: 2;
}
.cta-associates__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  text-align: center;
}
.cta-associates__text {
  color: white;
  max-width: 900px;
  margin: 0 auto;
}
.cta-associates__title {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 895px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-associates__action {
  display: flex;
  width: 100%;
  max-width: 1204px;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.cta-associates__btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.cta-associates__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.cta-associates__btn--primary {
  background-color: var(--tertiary-color);
  color: white;
  width: 100%;
}
.cta-associates__btn--primary:hover {
  background: white;
  color: var(--primary-color);
}
.cta-associates__btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-associates__btn--secondary:hover {
  background: white;
  color: var(--primary-color);
}
@media (max-width: 1024px) {
  .cta-associates {
    padding: 180px 0 60px 0;
  }
  .cta-associates::before {
    height: 160px;
  }
  .cta-associates__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-associates__title {
    font-size: 2rem;
  }
  .cta-associates__benefits {
    align-items: center;
  }
  .cta-associates__action {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-associates__btn {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .cta-associates {
    padding: 150px 0 50px 0;
  }
  .cta-associates::before {
    height: 120px;
  }
  .cta-associates__title {
    font-size: 1.8rem;
  }
  .cta-associates__subtitle {
    font-size: 1rem;
  }
  .cta-associates__action {
    flex-direction: column;
  }
  .cta-associates__btn {
    min-width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cta-associates {
    padding: 130px 0 40px 0;
  }
  .cta-associates::before {
    height: 100px;
  }
  .cta-associates__title {
    font-size: 1.5rem;
  }
  .cta-associates__content {
    gap: 30px;
  }
}

#address {
  display: flex;
}
#address .adress-right {
  padding: 4rem;
  color: #000;
  font-weight: 300;
  max-width: 529px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-size: 20px;
}
#address .adress-right .adress-right__title {
  color: #4A4C50;
}
#address .adress-right .adress-right__title h3 {
  font-weight: 400;
  font-size: 30px;
}
#address .adress-right .adress-right__title h4 {
  font-weight: 300;
  font-size: 20px;
}
#address iframe {
  width: calc(100% - 529px);
  flex-grow: 1;
}

@media (max-width: 900px) {
  #address {
    flex-direction: column;
  }
  #address .adress-right {
    width: 100%;
    max-width: initial;
  }
  #address iframe {
    width: 100%;
  }
}
#contato .contato__header {
  height: 520px;
  padding-top: 60px;
}
#contato .contato__header .container span, #contato .contato__header .container a {
  color: black;
  font-size: 14px;
  text-transform: uppercase;
}
#contato .contato__header .container h1, #contato .contato__header .container p {
  color: var(--secondary-color);
}
#contato .contato__header-options {
  position: absolute;
  bottom: 15%;
  width: 80%;
  z-index: 10;
}
#contato .contato__header-options h3 {
  margin-bottom: 16px;
  color: #1b1b1b;
  font-size: 2rem;
}
#contato .contato__header-options .contato__header-options-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px;
}
#contato .contato__header-options .contato__header-options-items .contato-option {
  height: 187px;
  width: 226px;
  background-color: white;
  border-radius: 20px;
  color: var(--secondary-color);
  font-size: 20px;
  flex: 1 1 226px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  flex-direction: column;
  cursor: pointer;
  align-items: start;
  transition: all 0.3s ease-in-out;
}
#contato .contato__header-options .contato__header-options-items .contato-option h4 {
  cursor: pointer;
}
#contato .contato__header-options .contato__header-options-items .contato-option {
  opacity: 0.6;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}
#contato .contato__header-options .contato__header-options-items .contato-option:hover {
  opacity: 0.8;
  filter: grayscale(0%);
  transform: scale(1.02);
}
#contato .contato__header-options .contato__header-options-items .contato-option.active {
  transform: scale(1.05) !important;
  transition: all 0.3s ease-in-out;
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  z-index: 10;
}
#contato .contato__header-options .contato__header-options-items .contato-option#contato__header-cotacao.active, #contato .contato__header-options .contato__header-options-items .contato-option#contato__header-sinistro.active, #contato .contato__header-options .contato__header-options-items .contato-option#contato__header-alteracao-de-contrato.active, #contato .contato__header-options .contato__header-options-items .contato-option#contato__header-contato.active, #contato .contato__header-options .contato__header-options-items .contato-option#contato__header-trabalhe-conosco.active {
  box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.7);
}
#contato .contato__header-options .contato__header-options-items .contato-option h4 {
  font-weight: 400;
}
#contato .file-upload-container {
  position: relative;
  border: 2px dashed #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fafafa;
}
#contato .file-upload-container:hover {
  border-color: var(--primary-color, #ff6b35);
  background: #f8f8f8;
}
#contato .file-upload-container .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
#contato .file-upload-container .file-upload-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #666;
}
#contato .file-upload-container .file-upload-info i {
  font-size: 24px;
  color: #999;
}
#contato .file-upload-container .file-upload-info span {
  font-size: 14px;
  font-weight: 500;
}
#contato .file-upload-container .file-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-color, #ff6b35);
}
#contato .file-upload-container .file-selected i {
  font-size: 18px;
}
#contato .file-upload-container .file-selected span {
  font-weight: 600;
  font-size: 14px;
}
#contato .file-upload-container .file-selected .remove-file {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#contato .file-upload-container .file-selected .remove-file:hover {
  background: rgba(231, 76, 60, 0.1);
  transform: scale(1.1);
}
#contato .file-upload-container .file-selected .remove-file i {
  font-size: 14px;
}

.container .contato__header {
  position: relative;
}

#contato .contato__header-options {
  bottom: 25%;
}

.containerContato {
  display: flex;
  gap: 3rem;
  color: white;
}
.containerContato > .coverage__card {
  background-color: white !important;
}

.container-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.container-info > div p {
  margin: 2rem 0;
}
.container-info div:first-child p:last-child {
  color: #2C88E8;
}
.container-info div:last-child div:last-child a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.container-info div:last-child div:last-child a i {
  font-size: 26px;
}
.container-info div:last-child div:last-child a {
  color: #67C15E;
  font-size: 20px;
  transition: all 0.3s ease;
}
.container-info div:last-child div:last-child a:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  #contato .contato__header-options {
    position: initial;
  }
  #contato .contato__header-options {
    width: 100% !important;
  }
  #contato .contato__header {
    padding: 25px !important;
  }
}
@media (max-width: 900px) {
  #contato .contato__header {
    padding: 50px;
  }
  #contato .contato__header-options {
    left: 42px;
  }
  #contato .contato__header-options {
    bottom: 10%;
  }
  .containerContato {
    flex-wrap: wrap;
    justify-content: center;
  }
  .container-info {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  #contato .contato__header-options {
    width: 90%;
  }
}
.realvale-info-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.realvale-info-section .realvale-info-container .realvale-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
}
.realvale-info-section .realvale-info-container .realvale-info-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Roboto", sans-serif;
}
.realvale-info-section .realvale-info-container .realvale-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.realvale-info-section .realvale-info-container .realvale-info-card {
  background-color: #f8f9fa;
  flex: 1 1 370px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}
.realvale-info-section .realvale-info-container .realvale-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.realvale-info-section .realvale-info-container .realvale-info-card__image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.realvale-info-section .realvale-info-container .realvale-info-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.realvale-info-section .realvale-info-container .realvale-info-card__image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.realvale-info-section .realvale-info-container .realvale-info-card__image:hover img {
  transform: scale(1.05);
}
.realvale-info-section .realvale-info-container .realvale-info-card__meta {
  padding: 20px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__date {
  background-color: #ff6600;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__author,
.realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #6c757d;
  font-family: "Roboto", sans-serif;
}
.realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__author i,
.realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__views i {
  font-size: 1rem;
  color: #495057;
}
.realvale-info-section .realvale-info-container .realvale-info-card__content {
  padding: 20px;
  background-color: #f8f9fa;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link {
  display: block;
  text-align: center;
  background-color: #ff6600;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
  margin-top: auto;
}
.realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}
.realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

@media (max-width: 1024px) {
  .realvale-info-section {
    padding: 60px 0;
  }
  .realvale-info-section .realvale-info-container .realvale-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card {
    min-height: 450px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__image {
    height: 200px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta {
    padding: 16px 16px 12px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__date {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__author,
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__views {
    font-size: 0.8rem;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__title {
    font-size: 1rem;
    margin-bottom: 16px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: auto;
  }
}
@media (max-width: 768px) {
  .realvale-info-section {
    padding: 40px 0;
  }
  .realvale-info-section .realvale-info-container .realvale-info-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card {
    min-height: 400px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__image {
    height: 180px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 16px 12px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__date {
    align-self: flex-start;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__author,
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__views {
    font-size: 0.8rem;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__title {
    font-size: 1rem;
    margin-bottom: 16px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-top: auto;
  }
}
@media (max-width: 480px) {
  .realvale-info-section .realvale-info-container .realvale-info-title {
    font-size: 1.75rem;
  }
  .realvale-info-section .realvale-info-container .realvale-info-subtitle {
    font-size: 0.9rem;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card {
    min-height: 350px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__image {
    height: 160px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta {
    padding: 12px 12px 8px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__date {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__author,
  .realvale-info-section .realvale-info-container .realvale-info-card__meta .realvale-info-card__views {
    font-size: 0.75rem;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__title {
    font-size: 0.9rem;
    margin-bottom: 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .realvale-info-section .realvale-info-container .realvale-info-card__content .realvale-info-card__link {
    padding: 10px 16px;
    font-size: 0.85rem;
    margin-top: auto;
  }
}
.blog-search-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.blog-search-section .blog-search__form {
  max-width: 800px;
  margin: 0 auto;
}
.blog-search-section .blog-search__input-group {
  display: flex;
  margin-bottom: 1rem;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.blog-search-section .blog-search__input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  outline: none;
}
.blog-search-section .blog-search__input::-moz-placeholder {
  color: #999;
}
.blog-search-section .blog-search__input::placeholder {
  color: #999;
}
.blog-search-section .blog-search__button {
  background: var(--secondary-color);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.blog-search-section .blog-search__button i {
  font-size: 1.2rem;
}
.blog-search-section .blog-search__filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-search-section .blog-search__select {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-search-section .blog-search__select:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}
.blog-search-section .blog-search__select option {
  background: var(--primary-color);
  color: white;
}

.search-header {
  background: var(--secondary-color);
  padding: 4rem 0;
  text-align: center;
  color: white;
}
.search-header__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.search-header__content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.search-form-section {
  background: #f8f9fa;
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}
.search-form-section .search-form {
  max-width: 1000px;
  margin: 0 auto;
}
.search-form-section .search-form__row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.search-form-section .search-form__row > div {
  flex-grow: 1;
}
.search-form-section .search-form__row > div > button {
  width: 100%;
}
.search-form-section .search-form__field {
  flex: 1;
  min-width: 200px;
}
.search-form-section .search-input,
.search-form-section .search-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.search-form-section .search-input:focus,
.search-form-section .search-select:focus {
  border-color: var(--secondary-color);
}
.search-form-section .search-button {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.search-form-section .search-button i {
  margin-right: 0.5rem;
}

.search-results-section {
  padding: 3rem 0;
}
.search-results-section .search-stats {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}
.search-results-section .search-stats h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.search-results-section .search-stats p {
  font-size: 1.1rem;
  color: #666;
}
.search-results-section .search-results {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
.search-results-section .search-result-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
}
.search-results-section .search-result-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.search-results-section .search-result-item__image img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.search-results-section .search-result-item__image-link {
  display: block;
  transition: transform 0.3s ease;
}
.search-results-section .search-result-item__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-results-section .search-result-item__title {
  margin: 0;
}
.search-results-section .search-result-item__title a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.search-results-section .search-result-item__title a:hover {
  color: var(--secondary-color);
}
.search-results-section .search-result-item__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
}
.search-results-section .search-result-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-results-section .search-result-item__meta span i {
  color: var(--secondary-color);
}
.search-results-section .search-result-item__excerpt {
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.search-results-section .search-result-item__read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.search-results-section .search-result-item__read-more:hover {
  color: var(--primary-color);
  gap: 0.8rem;
}
.search-results-section .search-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.search-results-section .search-pagination .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results-section .search-pagination .pagination li a, .search-results-section .search-pagination .pagination li span {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.search-results-section .search-pagination .pagination li a:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}
.search-results-section .search-pagination .pagination li .active {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}
.search-results-section .search-pagination .pagination li .disabled {
  color: #999;
  cursor: not-allowed;
}
.search-results-section .no-results {
  text-align: center;
  padding: 4rem 2rem;
}
.search-results-section .no-results__icon {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.search-results-section .no-results h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.search-results-section .no-results p {
  color: #666;
  margin-bottom: 2rem;
}
.search-results-section .no-results__suggestions {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}
.search-results-section .no-results__suggestions h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.search-results-section .no-results__suggestions ul {
  list-style: none;
  padding: 0;
}
.search-results-section .no-results__suggestions ul li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}
.search-results-section .no-results__suggestions ul li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.posts-recentes-section {
  padding: 4rem 0;
  background: #f8f9fa;
}
.posts-recentes-section .posts-recentes__title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
}
.posts-recentes-section .posts-recentes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.posts-recentes-section .post-recente-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.posts-recentes-section .post-recente-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.posts-recentes-section .post-recente-item__image {
  height: 200px;
  overflow: hidden;
}
.posts-recentes-section .post-recente-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.posts-recentes-section .post-recente-item:hover .posts-recentes-section .post-recente-item__image img {
  transform: scale(1.05);
}
.posts-recentes-section .post-recente-item__content {
  padding: 1.5rem;
}
.posts-recentes-section .post-recente-item__title {
  margin: 0 0 1rem 0;
}
.posts-recentes-section .post-recente-item__title a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.posts-recentes-section .post-recente-item__title a:hover {
  color: var(--secondary-color);
}
.posts-recentes-section .post-recente-item__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #666;
}
.posts-recentes-section .post-recente-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.posts-recentes-section .post-recente-item__meta span i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}
.posts-recentes-section .post-recente-item__excerpt {
  color: #555;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}
.posts-recentes-section .post-recente-item__read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.posts-recentes-section .post-recente-item__read-more:hover {
  color: var(--primary-color);
  gap: 0.8rem;
}
.posts-recentes-section .post-recente-item__read-more i {
  font-size: 0.8rem;
}
.posts-recentes-section .no-posts {
  text-align: center;
  padding: 3rem;
  color: #666;
  grid-column: 1/-1;
}

.categories-section {
  padding: 4rem 0;
  background: white;
}
.categories-section .categories__title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}
.categories-section .categories__subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.categories-section .categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.categories-section .category-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.categories-section .category-item:hover {
  background: white;
  border-color: var(--secondary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.categories-section .category-item__icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.categories-section .category-item__content {
  flex: 1;
}
.categories-section .category-item__name {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
.categories-section .category-item__count {
  color: #666;
  font-size: 0.9rem;
}
.categories-section .category-item__arrow {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.categories-section .category-item:hover .categories-section .category-item__arrow {
  transform: translateX(5px);
}

.main-blog-layout {
  padding: 2rem 0;
}
.main-blog-layout .container {
  max-width: 1200px;
}

.top-blog-section {
  margin-bottom: 3rem;
}
.top-blog-section__content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.top-blog-section .blogs-principais {
  flex: 2;
  min-width: 0;
}
.top-blog-section .blogs-principais .blogs-principais__text {
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 1rem;
}
.top-blog-section .blogs-principais .blogs-principais__text .section-title {
  margin: 0;
  padding: 0;
  height: 31px;
  width: 14px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 3px;
  border-bottom: none;
}
.top-blog-section .blogs-principais .blogs-principais__text .blogs-principais__bars {
  display: flex;
  width: 100%;
}
.top-blog-section .blogs-principais .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--left {
  height: 5px;
  width: 79px;
  background-color: var(--primary-color);
}
.top-blog-section .blogs-principais .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--right {
  border-bottom: 1px solid #ccc;
  width: calc(100% - 79px);
}
.top-blog-section .blogs-principais .blogs-principais__text .blogs-principais__text-bar {
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 31px;
}
.top-blog-section .blogs-tendencias {
  flex: 1;
  min-width: 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-section__principal__image {
  transition: transform 0.3s ease;
  height: 100%;
}
.blog-section__principal__image a {
  height: 100%;
}
.blog-section__principal__image a img {
  height: 100%;
}
.blog-section__principal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-section__tendencias__image .tendencia-item {
  margin-bottom: 1.5rem;
  height: 97px;
}
.blog-section__tendencias__image .tendencia-item a {
  display: flex;
  gap: 1rem;
  align-items: start;
}
.blog-section__tendencias__image .tendencia-item a h2 {
  margin-top: 0;
  color: black;
  cursor: pointer;
  font-weight: 400;
}
.blog-section__tendencias__image .tendencia-item a img {
  width: 97px;
  height: 97px;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section__tendencias__image .tendencia-item:last-child {
  margin-bottom: 0;
}
.blog-section__tendencias__image .tendencia-item img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.blog-section__tendencias__image .tendencia-item:hover img {
  transform: scale(1.05);
}
.blog-section__tendencias__image .tendencia-item h2 {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.blog-section__destaques__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-section__destaques__content .destaque-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.blog-section__destaques__content .destaque-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.blog-section__destaques__content .destaque-item__image {
  height: 200px;
  overflow: hidden;
}
.blog-section__destaques__content .destaque-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-section__destaques__content .destaque-item:hover .blog-section__destaques__content .destaque-item__image img {
  transform: scale(1.05);
}
.blog-section__destaques__content .destaque-item__content {
  padding: 1.5rem;
}
.blog-section__destaques__content .destaque-item__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #666;
}
.blog-section__destaques__content .destaque-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-section__destaques__content .destaque-item__meta span i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.destaques-section {
  margin-bottom: 3rem;
}
.destaques-section__content .section-title {
  margin-bottom: 2rem;
}

.bottom-blog-section__content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.bottom-blog-section .blogs-list {
  flex: 2;
  min-width: 0;
}
.bottom-blog-section .blogs-list .blog-section__principal {
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.bottom-blog-section .blogs-list .blog-section__principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.bottom-blog-section .blogs-list .blog-section__principal__image {
  height: 250px;
  overflow: hidden;
}
.bottom-blog-section .blogs-list .blog-section__principal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.bottom-blog-section .blogs-list .blog-section__principal:hover .bottom-blog-section .blogs-list .blog-section__principal__image img {
  transform: scale(1.03);
}
.bottom-blog-section .blogs-list .blog-section__principal__content {
  padding: 1.5rem;
}
.bottom-blog-section .blog-sidebar {
  width: 100%;
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 2rem;
}

.blog-sidebar .sidebar-section {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.blog-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.blog-sidebar > div:first-child {
  background-color: rgba(239, 239, 239, 0.9960784314);
  border-radius: 0;
}
.blog-sidebar > div:nth-child(2) {
  background-color: rgba(239, 239, 239, 0.9960784314);
  border-radius: 0;
}
.blog-sidebar > div:nth-child(2) .section-title {
  margin: 0;
  padding: 0;
  height: 31px;
  width: 200px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 7px;
  border-bottom: none;
}
.blog-sidebar > div:nth-child(2) .blogs-principais__bars {
  display: flex;
  width: 100%;
}
.blog-sidebar > div:nth-child(2) .blogs-principais__bars .blogs-principais__text-bar--left {
  height: 5px;
  width: 150px;
  background-color: var(--primary-color);
}
.blog-sidebar > div:nth-child(2) .blogs-principais__bars .blogs-principais__text-bar--right {
  border-bottom: 1px solid #ccc;
  width: calc(100% - 150px);
}
.blog-sidebar > div:nth-child(3) {
  background-color: rgba(239, 239, 239, 0.9960784314);
  border-radius: 0;
}
.blog-sidebar .blogs-principais__text {
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 1rem;
}
.blog-sidebar .blogs-principais__text .section-title {
  margin: 0;
  padding: 0;
  height: 31px;
  width: 14px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 7px;
  border-bottom: none;
}
.blog-sidebar .blogs-principais__text .blogs-principais__bars {
  display: flex;
  width: 100%;
}
.blog-sidebar .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--left {
  height: 5px;
  width: 100px;
  background-color: var(--primary-color);
}
.blog-sidebar .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--right {
  border-bottom: 1px solid #ccc;
  width: calc(100% - 100px);
}
.blog-sidebar .blogs-principais__text .blogs-principais__text-bar {
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 31px;
}
.blog-sidebar .sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sidebar-search-form .sidebar-search-input-group {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.sidebar-search-form .sidebar-search-input-group:focus-within {
  border-color: var(--secondary-color);
}
.sidebar-search-form .sidebar-search-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
}
.sidebar-search-form .sidebar-search-input::-moz-placeholder {
  color: #999;
  font-size: 0.9rem;
}
.sidebar-search-form .sidebar-search-input::placeholder {
  color: #999;
  font-size: 0.9rem;
}
.sidebar-search-form .sidebar-search-button {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.sidebar-search-form .sidebar-search-button i {
  font-size: 0.9rem;
}
.sidebar-search-form .sidebar-search-button:hover {
  background-color: var(--secondary-color);
}

.posts-recentes-sidebar .post-recente-sidebar-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}
.posts-recentes-sidebar .post-recente-sidebar-item:last-child {
  border-bottom: none;
}
.posts-recentes-sidebar .post-recente-sidebar-link {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  font-family: serif;
}
.posts-recentes-sidebar .post-recente-sidebar-link:hover {
  color: var(--secondary-color);
}

.categorias-sidebar .categoria-sidebar-link {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}
.categorias-sidebar .categoria-sidebar-link:last-child {
  border-bottom: none;
}
.categorias-sidebar .categoria-sidebar-link:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .blog-search__filters {
    flex-direction: column;
    width: 100%;
  }
  .blog-search__select {
    width: 100%;
  }
  .search-form__row {
    flex-direction: column;
  }
  .search-form__field {
    width: 100%;
  }
  .search-result-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
  }
  .search-result-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  .search-result-item__image img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  .search-result-item__image-link {
    display: block;
    transition: transform 0.3s ease;
  }
  .search-result-item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .search-result-item__title {
    margin: 0;
  }
  .search-result-item__title a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .search-result-item__title a:hover {
    color: var(--secondary-color);
  }
  .search-result-item__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
  }
  .search-result-item__meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-result-item__meta span i {
    color: var(--secondary-color);
  }
  .search-result-item__excerpt {
    color: #555;
    line-height: 1.6;
    margin: 0;
  }
  .search-result-item__read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  .search-result-item__read-more:hover {
    color: var(--primary-color);
    gap: 0.8rem;
  }
  .search-header {
    padding: 2rem 0;
  }
  .search-header__content h1 {
    font-size: 2rem;
  }
  .main-blog-layout {
    padding: 1rem 0;
  }
  .main-blog-layout .container {
    max-width: 100%;
  }
  .top-blog-section {
    margin-bottom: 2rem;
  }
  .top-blog-section__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .top-blog-section .blogs-principais,
  .top-blog-section .blogs-tendencias {
    flex: none;
    width: 100%;
  }
  .blog-section__principal__image img {
    height: 200px;
  }
  .blog-section__tendencias__image .tendencia-item img {
    height: 100px;
  }
  .blog-section__tendencias__image .tendencia-item h2 {
    font-size: 0.8rem;
  }
  .destaques-section {
    margin-bottom: 2rem;
  }
  .destaques-section .blog-section__destaques__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .destaques-section .blog-section__destaques__content .destaque-item__image {
    height: 180px;
  }
  .bottom-blog-section__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bottom-blog-section .blogs-list,
  .bottom-blog-section .blog-sidebar {
    flex: none;
    width: 100%;
  }
  .bottom-blog-section .blog-sidebar {
    position: static;
  }
  .bottom-blog-section .blogs-list .blog-section__principal {
    margin-bottom: 1.5rem;
  }
  .bottom-blog-section .blogs-list .blog-section__principal__image {
    height: 200px;
  }
  .blog-sidebar .sidebar-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .blog-sidebar .sidebar-search-form .sidebar-search-input-group .sidebar-search-input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  .blog-sidebar .sidebar-search-form .sidebar-search-input-group .sidebar-search-button {
    padding: 0.6rem 0.8rem;
  }
  .blog-sidebar .sidebar-search-form .sidebar-search-input-group .sidebar-search-button i {
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .posts-recentes-section {
    padding: 2rem 0;
  }
  .posts-recentes-section .posts-recentes__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .posts-recentes-section .posts-recentes__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .posts-recentes-section .post-recente-item__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .categories-section {
    padding: 2rem 0;
  }
  .categories-section .categories__title {
    font-size: 2rem;
  }
  .categories-section .categories__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .categories-section .category-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  .categories-section .category-item__icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .categories-section .category-item__name {
    font-size: 1.1rem;
  }
  .blog-show-header {
    padding: 2rem 0;
  }
  .blog-show-header__title {
    font-size: 2rem;
  }
  .blog-show-header__meta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .blog-show-content {
    padding: 2rem 0;
  }
  .blog-show-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .blog-show-main .blog-article__image {
    height: 250px;
  }
  .blog-show-main .blog-article__content {
    padding: 1.5rem;
    font-size: 1rem;
  }
  .blog-show-sidebar {
    position: static;
    width: 100%;
  }
  .blog-show-sidebar .related-blogs .related-blog-link:hover,
  .blog-show-sidebar .related-blogs .popular-blog-link:hover,
  .blog-show-sidebar .popular-blogs .related-blog-link:hover,
  .blog-show-sidebar .popular-blogs .popular-blog-link:hover {
    transform: none;
  }
  .search-results-section .search-result-item {
    display: flex;
    flex-direction: column;
  }
}
.blog-show-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  color: white;
}
.blog-show-header__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.blog-show-header__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-show-header__meta .back-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}
.blog-show-header__meta .back-link:hover {
  opacity: 0.8;
}
.blog-show-header__meta .blog-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-show-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.blog-show-header__info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}
.blog-show-header__info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-show-header__info span i {
  color: var(--secondary-color);
}

.blog-show-content {
  padding: 4rem 0;
}
.blog-show-content .container {
  max-width: 1200px;
}

.blog-show-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.blog-show-main {
  flex: 2;
  min-width: 0;
}
.blog-show-main .blog-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blog-show-main .blog-article__image {
  height: 400px;
  overflow: hidden;
}
.blog-show-main .blog-article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-show-main .blog-article__content {
  padding: 2rem;
  line-height: 1.8;
  color: #333;
  font-size: 1.1rem;
}
.blog-show-main .blog-article__content h1, .blog-show-main .blog-article__content h2, .blog-show-main .blog-article__content h3, .blog-show-main .blog-article__content h4, .blog-show-main .blog-article__content h5, .blog-show-main .blog-article__content h6 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem 0;
}
.blog-show-main .blog-article__content p {
  margin-bottom: 1.5rem;
}
.blog-show-main .blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.blog-show-sidebar {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 2rem;
}
.blog-show-sidebar .sidebar-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.blog-show-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.blog-show-sidebar .sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.related-blogs .related-blog-item {
  margin-bottom: 1rem;
}
.related-blogs .related-blog-item:last-child {
  margin-bottom: 0;
}
.related-blogs .related-blog-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.related-blogs .related-blog-link:hover {
  transform: translateX(5px);
}
.related-blogs .related-blog-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-blogs .related-blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-blogs .related-blog-content {
  flex: 1;
  min-width: 0;
}
.related-blogs .related-blog-content h4 {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.related-blogs .related-blog-content .related-blog-date {
  color: #666;
  font-size: 0.8rem;
}

.popular-blogs .popular-blog-item {
  margin-bottom: 1rem;
}
.popular-blogs .popular-blog-item:last-child {
  margin-bottom: 0;
}
.popular-blogs .popular-blog-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.popular-blogs .popular-blog-link:hover {
  transform: translateX(5px);
}
.popular-blogs .popular-blog-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.popular-blogs .popular-blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-blogs .popular-blog-content {
  flex: 1;
  min-width: 0;
}
.popular-blogs .popular-blog-content h4 {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.popular-blogs .popular-blog-content .popular-blog-views {
  color: #666;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.popular-blogs .popular-blog-content .popular-blog-views i {
  color: var(--secondary-color);
}

.destaque-item__title-link,
.recente-item__title-link,
.blog-section__principal__title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.destaque-item__title-link:hover,
.recente-item__title-link:hover,
.blog-section__principal__title-link:hover {
  color: var(--secondary-color);
}

.blog-section__principal__image-link {
  display: block;
  transition: transform 0.3s ease;
}
.tendencia-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.tendencia-item__link:hover {
  transform: translateY(-2px);
}
.tendencia-item__link h2 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.tendencia-item__link:hover h2 {
  color: var(--secondary-color);
}

.header-blogs {
  background-color: var(--secondary-color);
}
.header-blogs .container .categorias-sidebar {
  display: flex;
  flex-wrap: wrap;
}
.header-blogs .container .categorias-sidebar a {
  flex: 1 1 200px;
  border: none;
  padding: 20px 0;
  color: white;
  text-transform: uppercase;
  text-align: center;
}
.header-blogs .container .categorias-sidebar a:hover {
  color: var(--primary-color);
}

#blogPrincipal {
  position: relative;
  height: 484px;
}
#blogPrincipal div:first-child {
  height: 100%;
  filter: grayscale(80%);
  background-color: #ccc;
  transition: all 0.3s ease;
}
#blogPrincipal div:first-child:hover {
  filter: grayscale(0%);
  background-color: transparent;
}
#blogPrincipal > .blog-section__principal__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
#blogPrincipal > .blog-section__principal__content span {
  background-color: var(--primary-color);
  color: white;
  text-transform: uppercase;
  padding: 5px 15px;
}
#blogPrincipal > .blog-section__principal__content h2 {
  margin-top: 1rem;
  font-weight: 400;
  max-width: 400px;
}
#blogPrincipal > .blog-section__principal__content h2 a {
  color: white;
}

.blogs-tendencias .blogs-principais__text {
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 1rem;
}
.blogs-tendencias .blogs-principais__text .section-title {
  margin: 0;
  padding: 0;
  height: 31px;
  width: 14px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 7px;
  border-bottom: none;
}
.blogs-tendencias .blogs-principais__text .blogs-principais__bars {
  display: flex;
  width: 100%;
}
.blogs-tendencias .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--left {
  height: 5px;
  width: 100px;
  background-color: var(--primary-color);
}
.blogs-tendencias .blogs-principais__text .blogs-principais__bars .blogs-principais__text-bar--right {
  border-bottom: 1px solid #ccc;
  width: calc(100% - 100px);
}
.blogs-tendencias .blogs-principais__text .blogs-principais__text-bar {
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 31px;
}

#otherBlogs {
  display: flex;
  position: relative;
  border-radius: 0;
  height: 227px;
}
#otherBlogs > .blog-section__principal__image {
  width: 200px;
  height: auto;
}
#otherBlogs > .blog-section__principal__image a {
  display: block;
  max-width: 396px;
  height: 100%;
}
#otherBlogs > .blog-section__principal__image a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#otherBlogs > .blog-section__principal__content {
  width: calc(100% - 396px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#otherBlogs > .blog-section__principal__content span {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  padding: 5px 15px;
  background-color: var(--primary-color);
}
#otherBlogs > .blog-section__principal__content h2 a {
  color: black;
  font-family: serif;
  font-weight: 400;
}
#otherBlogs > .blog-section__principal__content .blog-section__principal__description {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
  overflow: hidden;
}
#otherBlogs > .blog-section__principal__content .blog-section__principal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  width: 150px;
  color: #666;
  font-size: 14px;
  border: 1px solid #666;
  padding: 7px 20px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}

body {
  font-family: "Helvetica", sans-serif;
}

.section__title_before {
  font-size: 50px;
  max-width: 700px;
  font-weight: 400;
  margin: 5rem auto 5rem auto;
  text-align: center;
}

.image-comparison {
  margin-right: auto;
  margin-left: auto;
}

.image-comparison__slider-wrapper {
  position: relative;
}

.image-comparison__label {
  font-size: 0;
  line-height: 0;
}

.image-comparison__label,
.image-comparison__range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: ew-resize;
  z-index: 20;
}

@media (hover) {
  .image-comparison__range:hover ~ .image-comparison__slider .image-comparison__thumb {
    transform: scale(1.2);
  }
}

.image-comparison .image-comparison__slider-wrapper .image-comparison__range:active ~ .image-comparison__slider .image-comparison__thumb,
.image-comparison .image-comparison__slider-wrapper .image-comparison__range:focus ~ .image-comparison__slider .image-comparison__thumb,
.image-comparison .image-comparison__slider-wrapper .image-comparison__range--active ~ .image-comparison__slider .image-comparison__thumb {
  transform: scale(0.8);
  background-color: rgba(0, 97, 127, 0.5);
}

.image-comparison__image-wrapper--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 1px);
  height: 100%;
  overflow: hidden;
}

.image-comparison__figure {
  margin: 0;
}
.image-comparison__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
}
.image-comparison__figure:not(.image-comparison__figure--overlay) {
  position: relative;
  padding-top: 66.666666667%;
}

.image-comparison__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 50%;
     object-position: 0 50%;
  overflow: hidden;
}
.image-comparison__figure--overlay .image-comparison__image {
  z-index: 1;
}

.image-comparison__caption {
  position: absolute;
  bottom: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 40.063em) {
  .image-comparison__caption {
    font-size: 12px;
  }
}

.image-comparison__caption--before {
  left: 12px;
  z-index: 2;
}

.image-comparison__caption--after {
  right: 12px;
  text-align: right;
}

.image-comparison__caption-body {
  max-width: 40vmin;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.55);
}

.image-comparison__slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
  z-index: 10;
}
.image-comparison__range--active ~ .image-comparison__slider {
  background-color: rgba(255, 255, 255, 0);
}

.image-comparison__thumb {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0091df;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.5);
  transform-origin: center;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.image-comparison__range::-webkit-slider-runnable-track {
  width: 40px;
  height: 40px;
  opacity: 0;
}

.image-comparison__range::-moz-range-thumb {
  width: 40px;
  height: 40px;
  opacity: 0;
}

.image-comparison__range::-webkit-slider-thumb {
  width: 40px;
  height: 40px;
  opacity: 0;
}

.image-comparison__range::-ms-fill-lower {
  background-color: transparent;
}

.image-comparison__range::-ms-track {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: transparent;
  outline: none;
  cursor: col-resize;
}

.image-comparison__range::-ms-thumb {
  width: 0.5%;
  height: 100%;
  opacity: 0;
}

.image-comparison__range::-ms-tooltip {
  display: none;
}

.services-section {
  background-color: var(--primary-color);
}
.services-section > .container {
  padding: 100px 0;
}
.services-section .services-header {
  text-align: center;
  background-color: #87662A;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.services-section .services-carousel {
  background-color: #87662A;
}
.services-section .services-carousel .service-item {
  padding: 10px 20px;
  margin: 10px 0;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-section .services-carousel .service-item h3 {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  cursor: pointer;
}
.services-section .services-carousel .service-item:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.services-section .services-carousel .service-item.active {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.services-section .services-carousel .owl-nav {
  margin-top: 15px;
  text-align: center;
}
.services-section .services-carousel .owl-nav button.owl-prev,
.services-section .services-carousel .owl-nav button.owl-next {
  background: #333;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  transition: background 0.3s ease;
}
.services-section .services-carousel .owl-nav button.owl-prev:hover,
.services-section .services-carousel .owl-nav button.owl-next:hover {
  background: #666;
}
.services-section .service-details {
  padding: 40px;
  background-color: #fff;
  border-radius: 30px;
  text-align: left;
}
.services-section .service-details #service-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.services-section .service-details #service-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.services-section .service-details #service-description {
  max-width: 700px;
  height: 280px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.service-details-header {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .service-details, #service-description {
    height: auto;
  }
  .footer__content {
    justify-content: center;
    align-items: center;
  }
}
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  text-align: left;
  transition: all 0.3s ease;
}
.product-card .product-image {
  display: flex;
  height: 272px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.product-card .product-image img {
  max-width: 100%;
  max-height: 272px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .product-body {
  flex-grow: 1;
}
.product-card .product-body .product-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.product-card .product-body .product-subtitle {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}
.product-card .product-body .product-description {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.product-card .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  margin-top: 12px;
}
.product-card .product-footer .btn-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.product-card .product-footer .btn-buy:hover {
  background: #333;
}

.products-carousel .owl-dots {
  margin: 80px 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.products-carousel .owl-dots button {
  border-radius: 100%;
  width: 24px;
  height: 24px;
  background-color: #D9D9D9;
}
.products-carousel .owl-dots button.active {
  background-color: #231815;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.header-main {
  position: relative;
}
.header-main .header {
  position: absolute;
  width: 100%;
}

.container {
  width: 70%;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, label, p, strong, span {
  cursor: default;
}

a, button {
  cursor: pointer;
}

input, textarea {
  outline: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.cta-associates__btn--primary {
  background-color: var(--secondary-color);
}

.reviews-carousel .owl-carousel {
  position: relative;
}
.reviews-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .review-card .review-header {
  justify-content: space-between;
  align-items: center;
}
.reviews-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .review-card .review-header > div {
  display: flex;
  align-items: center;
}
.reviews-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .review-card .review-header img {
  width: 50px;
  height: 50px;
}
.reviews-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .review-card .review-text {
  height: 100px;
  overflow-y: auto;
}
.reviews-carousel .owl-carousel .owl-nav {
  position: absolute;
  z-index: 3;
  width: 95%;
  left: 20px;
  top: 50%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.reviews-carousel .owl-carousel .owl-nav button {
  color: var(--primary-color) !important;
  pointer-events: all;
}
.reviews-carousel .owl-carousel .owl-nav button span {
  font-size: 4rem;
}

.testimonials__nav-next {
  background-color: var(--secondary-color) !important;
}

.testimonials__nav-btn:hover {
  transform: translateY(-5px) !important;
  color: var(--primary-color) !important;
}

.testimonials__nav-prev:hover {
  background-color: var(--secondary-color) !important;
  color: white !important;
}

@media (max-width: 1440px) {
  .container {
    width: 80%;
  }
  .header__logo a img {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .header > .container > .header__content > nav > ul {
    gap: 8px;
  }
}
