/* ================================================================
   PAULA PETERS — CSS VARIABLES
   ================================================================ */
:root {
  --pp-brown: #9c3f16;
  --pp-yellow: #ffc107;
  --pp-pink: #f8447f;
  --pp-pink-mid: #ec3672;
  --pp-green: #46e398;
  --pp-green-dark: #006a65;
  --pp-dark: #161d1f;
  --pp-text: #414751;
  --pp-bg-foot: #e2e9ec;
  --pp-white: #ffffff;
  --pp-font-head: "Plus Jakarta Sans", sans-serif;
  --pp-font-body: "Be Vietnam Pro", sans-serif;
  /* Compatibilidade com CSS legado do blog */
  --main-color: #9c3f16;
  --second-color: #46e398;
  --third-color: #f8447f;
}

/* ================================================================
   PP HEADER — INTEGRAÇÃO COM BLOG WORDPRESS
   ================================================================ */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f4fafd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

body.admin-bar .pp-header {
  top: 32px;
}

.pp-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-header__logo-text {
  font-family: var(--pp-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8447f;
  text-decoration: none;
}

.pp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-nav__list {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.pp-nav__link {
  padding: 8px 14px;
  font-family: var(--pp-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pp-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s;
}

.pp-nav__link:hover,
.pp-nav__link--active {
  color: var(--pp-brown);
  text-decoration: none;
}

.pp-nav__cta {
  margin-left: 32px;
  padding: 10px 24px;
  background: var(--pp-brown);
  color: #fff;
  border-radius: 9999px;
  font-family: var(--pp-font-body);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.pp-nav__cta:hover,
.pp-nav__cta:focus {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}

.pp-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pp-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pp-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Overlay do menu mobile */
.pp-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}

.pp-nav-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ================================================================
   BLOG CONTENT SPACING
   ================================================================ */
.site-content.new-blog-content {
  padding-top: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

.bb-footer,
.site-content:not(.maintenance-content),
.site-header {
  padding: 0;
}

.posts__grid {
  display: grid;
  grid-template-columns: 60% auto;
  border: 1px solid var(--bb-content-border-color);
  border-radius: var(--bb-block-radius);
  margin-bottom: 2rem;
  overflow: hidden;
}

.new__blog__card.first__post {
  grid-row-start: 1;
  grid-row-end: 3;
  min-height: 500px;
}

.new__blog__card {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1rem;
}

.new__blog__card a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.new__blog__card__category {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.new__blog__card__category:after {
  content: "";
  height: 2px;
  width: 40px;
  display: block;
  background-color: var(--main-color);
}

.new__blog___content {
  background-color: #2d318686;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

#block-2 {
  padding: 0;
  overflow: hidden;
}

#block-2 p {
  display: none;
}

#block-2 .rock-convert-banner {
  margin: 0;
}

.blog__menu {
  background-color: var(--main-color);
  padding: 0.5rem 1rem;
}

.blog__menu__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1290px;
  margin: 0 auto;
}

.asl_w_container.asl_w_container_1 {
  width: 20%;
}

#blog__menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
  width: 100%;
}

#blog__menu li {
  list-style: none;
}

#blog__menu li a {
  list-style: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: 0.3s ease;
  line-height: normal;
}

#blog__menu li a:hover {
  color: var(--second-color);
}

.page-title {
  color: var(--main-color) !important;
}

#hero {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__container {
  max-width: 1600px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  position: absolute;
}

.hero__content {
  margin-top: -2rem;
}

.hero__content__title {
  color: #4ec3c1;
  font-family: var(--principal-font) !important;
  font-size: 4.7rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: -1rem;
}

.hero__content__text {
  color: #174052;
  text-align: center;
  font-family: var(--principal-font);
  font-size: 1.7625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__content__text span {
  font-weight: 700;
}

.hero__content__button__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.hero__content__button {
  border-radius: 32.5px;
  background: #174052;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 9px 56px 8px;
  transition: 0.3s ease;
}

.hero__content__button:hover {
  cursor: pointer;
  opacity: 0.9;
}

section#values {
  margin-top: -5rem;
  position: relative;
  z-index: 2;
}

.values__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: #efefef;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.values__card {
  width: 33%;
  height: 100%;
  padding: 20px 2rem 1rem;
}

.values__container__divisor {
  content: "";
  display: block;
  width: 4px;
  height: auto;
  background: linear-gradient(180deg, #73f6e2 0%, #49bcbd 100%);
}

.values__card__title__container {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.values__card__title__container img {
  margin-right: 12px;
}

.values__card__title {
  color: #174052;
  font-family: var(--principal-font) !important;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

.values__card__text {
  color: #6B6B6B;
  text-align: justify;
  font-family: var(--principal-font);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#values__card__text__middle {
  color: #174052;
}

section#about__us {
  padding: 5rem 1rem;
}

.about__us__content {
  max-width: 625px;
  margin-left: 105px;
}

.about__us__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5rem;
}

.about__us__content__title {
  color: #174052;
  font-family: var(--principal-font) !important;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}

.about__us__content__title span {
  color: #56ccb1;
}

.about__us__content__text {
  color: #6b6b6b;
  font-family: var(--principal-font);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about__us__content__button__container {
  display: flex;
  margin-top: 2.5rem;
}

.about__us__content__button {
  border-radius: 32.5px;
  background: #174052;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 13px 40px 11px;
  transition: 0.3s ease;
}

.about__us__content__button:hover {
  cursor: pointer;
  opacity: 0.8;
}

section#cta__stripe {
  background-image: url(../images/cta-stripe-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta__stripe__container {
  max-width: 1205px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.75rem 1rem;
  transform: translateX(-3rem);
}

.cta__stripe__title {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
  font-family: var(--principal-font) !important;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}

.cta__stripe__text {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
  font-family: var(--principal-font);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}

.cta__stripe__button {
  border-radius: 32.5px;
  background: #174052;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 13px 36px 11px;
  transition: 0.3s ease;
}

.cta__stripe__button:hover {
  opacity: 0.8;
  cursor: pointer;
}

section#services {
  padding: 5rem 1rem 1rem;
}

.service__container {
  max-width: 1200px;
  margin: 0 auto;
}

.service__title__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.4375rem;
  margin-bottom: 40px;
}

.service__title {
  color: #174052;
  font-family: var(--principal-font) !important;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 95%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.service__title span {
  color: #56ccb1;
}

.service__title__text {
  color: #6b6b6b;
  font-family: var(--principal-font);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 728px;
}

.service__cards__container {
  max-width: 1200px;
  background: #efefef;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
}

.service__card {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 300px;
  border-bottom: 8px solid #49bcbd;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  padding-top: 33px;
}

#service__card__second {
  border-bottom: 8px solid #174052;
}

.service__card__number {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #174052;
  font-family: var(--principal-font);
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  color: transparent;
  margin: 0;
  margin-bottom: 15px;
}

.service__card__number span {
  -webkit-text-stroke-color: #56ccb1;
}

.service__card__title {
  color: #174052;
  font-family: var(--principal-font) !important;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 20px;
}

.service__card__title span {
  color: #56ccb1;
}

.service__card__text {
  color: #6b6b6b;
  font-family: var(--principal-font);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 322px;
}

.services__button__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.services__button {
  border-radius: 32.5px;
  background: #174052;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 13px 40px 11px;
  transition: 0.3s ease;
}

.services__button:hover {
  opacity: 0.8;
  cursor: pointer;
}

section#blog {
  padding: 4rem 0;
}

.blog__container {
  max-width: 2556px;
  margin: 0 auto;
}

.blog__title__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5625rem;
  background: #174052;
  padding-top: 47px;
  padding-bottom: 30px;
}

.blog__title {
  color: #fff;
  font-family: var(--principal-font) !important;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 98%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.blog__title__text {
  color: #fff;
  font-family: var(--principal-font);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 632px;
}

.blog__card__container {
  display: flex;
}

.blog__card {
  height: 550px;
  padding: 3.125rem 1.8125rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog__card__content__title {
  color: #fff;
  font-family: var(--principal-font) !important;
  font-size: 1.475rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
  min-height: 75px;
}

.blog__card__content p {
  color: #fff;
  font-family: var(--principal-font);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  height: 65px;
}

.blog__container__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.blog__button {
  border-radius: 32.5px;
  background: #174052;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 12px 90px 10px;
  transition: 0.3s ease;
}

.blog__button:hover {
  opacity: 0.8;
  cursor: pointer;
}

#comments {
  padding-bottom: 3rem;
}

.comments__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.comments__slider__container {
  width: 650px;
  height: 400px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding-top: 62px;
  padding-left: 52px;
  position: absolute;
  right: 44rem;
}

.comments__slider__title__container {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.comments__slider__title {
  color: #174052;
  font-family: var(--principal-font) !important;
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
  margin-left: 21px;
}

.comments__slide__card__text {
  color: #6b6b6b;
  font-family: var(--principal-font);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 517px;
}

.comments__slide__card__author__container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comments__slide__card__author__text {
  color: #174052;
  font-family: var(--principal-font);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}

#sua-viagem-prev-button::before,
#sua-viagem-next-button::before {
  content: none;
}

#sua-viagem-prev-button,
#sua-viagem-next-button {
  width: 47px;
  height: 47px;
  opacity: 1;
  right: -3.9rem;
  left: auto;
  top: auto;
  bottom: -76px;
}

#sua-viagem-next-button {
  bottom: -26px;
}

#footer__novo {
  background: #174052;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 3rem 1rem;
}

.footer__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__container__logo {
  margin-right: 0;
}

.footer__container__title {
  color: #49bcbd;
  font-family: var(--principal-font) !important;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 19px;
}

.footer_contact__text {
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

.footer_contact__text__link {
  color: #fff !important;
  font-family: var(--principal-font);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

.footer__social__links a {
  margin-right: 5px;
}

.mobile__hero__image__container {
  display: none;
}

.banner__home__image {
  width: 100%;
}

@media screen and (max-width: 1360px) {
  .comments__slider__container {
    right: auto;
    left: 2rem;
  }
}

@media screen and (max-width: 1300px) {
  .primary-menu > li > a {
    font-size: 1.1rem;
  }
  .header__button__container__cta {
    font-size: 1.2rem;
    margin-left: 20px;
    padding: 0.5rem 1.5rem 0.3rem;
  }
  #site__logo {
    max-width: 200px;
  }
  .header__top__stripe__container {
    transform: translateX(0);
  }
  .hero__content__title {
    font-size: 4rem;
  }
  .hero__content__text {
    font-size: 1.5625rem;
  }
  .hero__content__button {
    font-size: 1.25rem
  }
  .about__us__container {
    margin-left: 0;
  }
  .about__us__content {
    margin-left: 60px;
  }
  .cta__stripe__container {
    transform: translateX(0);
  }
  .blog__title__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer__container__logo img {
    width: 80%
  }
}

@media screen and (max-width: 1080px) {
  .bb-template-v2 .bb-mobile-panel-inner .bb-primary-menu .current-menu-item>a,
  .bb-template-v2 .bb-mobile-panel-inner .side-panel-menu .menu-item>a {
    background-color: transparent;
    color: var(--main-color) !important;
    font-family: var(--principal-font);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    text-transform: uppercase;
    height: auto;
  }
  .header__top__stripe {
    display: none !important;
  }
  .header-aside { 
    display: none;
  }
  .container__header {
    display: none;
  }
  .bb-single-icon .mobile-logo-wrapper {
    justify-content: flex-end;
  }
  .bb-mobile-header-wrapper,
  .bb-mobile-panel-wrapper {
    display: block !important;
  }
  body:not(.logged-in) .bb-mobile-header .flex-1 {
    justify-content: flex-end;
  }
  .bb-mobile-panel-header .logo-wrap img {
    max-width: 76px;
  }
  .bb-icon-file {
    display: none !important;
  }
  .novo__site {
    padding-top: 65px;
  }
  .hero__content__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
  }
  .hero__content__text {
    font-size: 1.3rem;
    display: block;
    width: 260px;
    margin: 0 auto;
  }
  .hero__content__button {
    font-size: 1.1rem;
    padding: 9px 36px 8px;
  }
  section#values {
    margin-top: -3rem;
  }
  .about__us__container {
    margin-left: 0;
  }
  .about__us__img__container {
    margin-bottom: 1rem;
  }
  .about__us__content__title {
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .about__us__content__button {
    font-size: 1.2rem;
    padding: 14px 30px 13px;
    margin: 0 auto;
  }
  .about__us__content {
    max-width: 425px;
    margin-left: 2rem;
  }
  .cta__stripe__container {
    flex-direction: column;
    transform: translate(0);
  }
  .cta__stripe__title {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    text-align: center;
  }
  .cta__stripe__text {
    font-size: 1.5rem;
    text-align: center;
  }
  .cta__stripe__text br {
    display: none;
  }
  .cta__stripe__button {
    font-size: 1.2rem;
    padding: 11px 36px 10px;
  }
  .service__title__container {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }
  .service__title {
    font-size: 2.5rem;
  }
  section#services {
    padding: 3rem 0;
  }
  .service__card {
    padding: 1rem;
  }
  .services__button {
    font-size: 1.2rem;
    padding: 11px 36px 10px;
  }
  .service__card__number {
    font-size: 3.2rem;
  }
  .service__card__title {
    font-size: 1.3rem;
  }
  section#blog {
    padding: 2rem 0 4rem;
  }
  .blog__title__container {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
  }
  .blog__title {
    font-size: 2.3rem;
  }
  .blog__card {
    height: 400px;
    padding: 2.125rem 0.8125rem;
  }
  .blog__card__content__title {
    font-size: 1.15rem;
  }
  .blog__card__content p {
    height: 85px;
  }
  .blog__button {
    font-size: 1.2rem;
    padding: 10px 60px 9px;
  }
  #sua-viagem-prev-button, #sua-viagem-next-button {
    bottom: -61px;
    right: -5rem;
  }
  #sua-viagem-next-button {
    bottom: -11px;
  }
  #comments {
    padding: 1rem 1rem 4rem;
  }
  .comments__slider__container {
    position: static;
    width: 100%;
    max-width: 650px;
    height: auto;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .comments__container {
    flex-direction: column;
  }
  .comments__slider__title {
    font-size: 2.2rem;
  }
  .comments__container .slick-dots {
    bottom: -36px;
  }
  .comments__slider__title__container {
    justify-content: center;
  }
  .comments__slide__card {
    width: fit-content;
    margin: 0 auto;
  }
  .footer__container {
    justify-content: space-around;
    gap: 2rem;
  }
  .footer__container__logo {
    max-width: 240px;
    margin-right: 0;
  }
  .footer__container__contact {
    margin-right: 0;
  }
  .blog__menu {
    display: none;
  }
  .site-content.new-blog-content {
    padding-top: 0 !important;
  }

  /* PP Header — side panel mobile (direita → esquerda) */
  .pp-nav__toggle {
    display: flex;
  }

  .pp-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
    gap: 0;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  #pp-blog-nav.pp-nav--open {
    transform: translateX(0);
  }

  /* Cabeçalho interno do painel */
  .pp-nav::before {
    content: "Menu";
    display: block;
    width: 100%;
    padding: 20px 28px 18px;
    font-family: var(--pp-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pp-dark);
    border-bottom: 1px solid #f0f4f6;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .pp-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 8px 0;
  }

  .pp-nav__list li {
    width: 100%;
  }

  .pp-nav__link {
    display: block;
    padding: 14px 28px;
    border-radius: 0;
    border-bottom: 1px solid #f4f7f8;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pp-dark);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .pp-nav__link:hover,
  .pp-nav__link--active {
    background: #f4fafd;
    color: var(--pp-brown);
    padding-left: 34px;
  }

  .pp-nav__cta {
    margin: 24px 28px 0;
    width: calc(100% - 56px);
    text-align: center;
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Hamburguer → X */
  .pp-nav__toggle {
    transition: 0.2s ease;
  }

  .pp-nav__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .pp-nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .pp-nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.admin-bar .pp-nav {
    padding-top: 0;
  }
  
  .pp-nav__cta {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .banner__home__image {
    display: none;
  }
  body:not(.logged-in) .bb-mobile-header .flex-1 {
    justify-content: flex-end;
  }
  .bb-mobile-panel-header .logo-wrap img {
    max-width: 76px;
  }
  .bb-icon-file {
    display: none !important;
  }
  .novo__site {
    height: auto;
    padding-top: 76px;
  }
  
  #hero {
    background-image: url(../images/banner-mobile.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
  }
  .hero__content {
    margin-top: 0;
  }
  .hero__container {
    align-items: center;
    justify-content: center;
    padding: 4rem 0 6rem;
    position: static;
  }
  .hero__content__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
  }
  .hero__content__text {
    font-size: 1.3rem;
    display: block;
    width: 260px;
    margin: 0 auto;
  }
  .hero__content__button {
    font-size: 1.1rem;
    padding: 9px 36px 8px;
  }
  .hero__container {
    height: auto;
  }
  .mobile__hero__image__container {
    display: block;
  }
  .mobile__hero__image__container img {
    width: 100%;
  }
  section#values {
    margin-top: -1rem;
  }
  .values__container {
    flex-direction: column;
  }
  .values__container__divisor {
    width: 100%;
    height: 4px;
  }
  .values__card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .about__us__container {
    margin-left: 0;
    flex-direction: column;
  }
  .about__us__img__container {
    margin-bottom: 1rem;
  }
  .about__us__content__title {
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .about__us__content {
    margin-left: 0;
  }
  .about__us__content__button {
    font-size: 1.2rem;
    padding: 14px 30px 13px;
    margin: 0 auto;
  }
  .cta__stripe__container {
    flex-direction: column;
    transform: translate(0);
  }
  .cta__stripe__title {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    text-align: center;
    margin: 0 auto .5rem;
  }
  .cta__stripe__text {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .cta__stripe__text br {
    display: none;
  }
  .cta__stripe__button {
    font-size: 1.2rem;
    padding: 11px 36px 10px;
  }
  .service__title__container {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }
  .service__title {
    font-size: 2.5rem;
  }
  section#services {
    padding: 3rem 1rem;
  }
  .service__cards__container {
    flex-direction: column;
  }
  .service__card {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .services__button {
    font-size: 1.2rem;
    padding: 11px 36px 10px;
  }
  section#blog {
    padding: 2rem 0 4rem;
  }
  .blog__title__container {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
  }
  .blog__title {
    font-size: 2.3rem;
  }
  .blog__card__content p {
    height: 65px;
  }
  .blog__card__container {
    flex-direction: column;
  }
  .blog__card {
    height: 300px;
  }
  .blog__button {
    font-size: 1.2rem;
    padding: 10px 60px 9px;
  }
  #comments {
    padding: 1rem 1rem 4rem;
  }
  .comments__slider__container {
    position: static;
    width: 100%;
    max-width: 650px;
    height: auto;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .comments__container {
    flex-direction: column;
  }
  .comments__slider__title {
    font-size: 2.2rem;
  }
  .comments__container .slick-dots {
    bottom: -36px;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .footer__container__logo {
    margin-right: 0;
    max-width: 220px;
  }
  .footer__container__contact {
    margin-right: 0;
  }
  .footer__container__title {
    text-align: center;
  }
  .footer__contact__subtitle {
    text-align: center;
  }
  .footer_contact__text {
    text-align: center;
  }
  .footer__container__menu {
    margin-right: 0;
  }
  .footer__menu__link {
    text-align: center;
  }
  .blog__menu {
    display: none;
  }
}

#rpwwt-recent-posts-widget-with-thumbnails-2 li a {
  display: flex;
  flex-direction: column;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 li a img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

#block-8 {
  padding: 0;
}

#block-8 p,
#block-8 .rock-convert-banner {
  margin: 0;
}

#block-8 img {
  border-radius: 10px;
}

/* ================================================================
   PP FOOTER — INTEGRAÇÃO COM BLOG WORDPRESS
   ================================================================ */
.pp-footer {
  background: #e2e9ec;
  color: var(--pp-text);
}

.pp-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.pp-footer__brand-name {
  font-family: var(--pp-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ec3672;
  margin-bottom: 17px;
  display: block;
}

.pp-footer__brand-text {
  font-family: var(--pp-font-body);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 282px;
  font-weight: 400;
  color: var(--pp-text);
}

.pp-footer__col-title {
  font-family: var(--pp-font-body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pp-dark);
  margin-bottom: 22px;
}

.pp-footer__link {
  display: block;
  font-family: var(--pp-font-body);
  font-size: 1rem;
  color: var(--pp-text);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
  background: transparent;
  padding: 0;
  border: none;
  outline: none;
}

.pp-footer__link:hover,
.pp-footer__link:focus {
  color: #ec3672;
  text-decoration: none;
}

.pp-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.pp-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.pp-footer__social-link:hover {
  transform: translateY(-2px);
}

.pp-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--pp-font-body);
  font-size: 0.82rem;
  color: var(--pp-text);
}

.pp-social__rights {
  font-family: var(--pp-font-body);
  font-size: 0.75rem;
  color: #414751;
  margin-top: 1.65rem;
}

@media (max-width: 991px) {
  .pp-footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .pp-footer__container {
    grid-template-columns: 1fr;
  }
}
        
        /* ------------ Whats Modal Form ------------ */

.whatsapp-bubble {
    position: fixed;
    bottom: 20px;
    right: 95px;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
    font-size: 14px;
    color: #333;
    z-index: 1000;
    max-width: 250px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out
}

.whatsapp-button, .whatsapp-modal {
    right: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .2)
}

.whatsapp-bubble.show {
    opacity: 1;
    transform: translateY(0)
}

.whatsapp-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5
}

.whatsapp-bubble:before {
    content: "";
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff
}

.whatsapp-bubble .close-bubble {
    position: absolute;
    top: 5px;
    right: 10px;
    background: 0 0;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #999
}

.whatsapp-button {
    position: fixed;
    z-index: 100;
    bottom: 20px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 30px;
    cursor: pointer;
    transition: transform .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

#preloader, .whatsapp-modal {
    position: fixed;
    background-color: #fff
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #25d366;
}

.whatsapp-button:focus {
    background-color: #25d366;
}

.whatsapp-button img {
    width: 30px;
    height: 30px
}

.whatsapp-modal {
    display: none;
    bottom: 100px;
    width: 350px;
    max-width: 100%;
    border-radius: 20px;
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    transform: translateY(20px)
}

.whatsapp-modal.show {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.whatsapp-modal-header {
    background-color: #00a884;
    color: #fff;
    padding: 15px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.whatsapp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.whatsapp-modal-header button {
    background: 0 0;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer
}

.whatsapp-modal-content {
    padding: 20px;
    background-color: #f9f9f9
}

.whatsapp-modal-content button, .whatsapp-modal-content input {
    width: calc(100% - 0px);
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px
}

.whatsapp-modal-content button {
    background-color: #00a884;
    color: #fff;
    border: none;
    cursor: pointer
}

.whatsapp-modal-content button:hover {
    background-color: #007a65
}

#block-10 {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#block-10 .wp-block-image {
    margin: 0;
}