/*#region Componentes */
/* Cards list */
.cards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1280px;
}
.cards-list .card-item {
  flex: 0 0 calc(100% / 2 - 20px);
  position: relative;
  padding: 32px;
  border: 2px solid rgba(7, 22, 34, 0.1);
}
.cards-list .card-item .card-icon {
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
}
.cards-list .card-item h4 {
  margin-bottom: 16px;
}
.cards-list .card-item.gray-bg {
  border: none;
  background-color: rgba(7, 22, 34, 0.1);
}
.cards-list .card-item.dark-blue-bg {
  border: none;
  background-color: rgba(12, 63, 98, 0.05);
}
.cards-list .card-item.center-text {
  text-align: center;
}
.cards-list .card-item + .big-btn {
  flex: 0 0 calc(100% / 2 - 20px);
  height: auto;
  min-width: auto;
}
.cards-list .card-item:has(.card-icon) {
  padding-top: 48px;
}
.cards-list:has(.card-icon) {
  gap: 72px 40px;
}
.cards-list .card-item:has(.link-btn) p {
  margin-bottom: 24px;
}
.cards-list.counter-text {
  flex: 0 0 100%;
  padding: 80px 0;
}
.cards-list.counter-text .card-item {
  padding: 40px;
}
.cards-list.counter-text .counter-box {
  display: flex;
  flex-direction: column;
}
.cards-list.counter-text .counter-box span {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.cards-list.counter-text .counter-box span:first-child {
  font-weight: 400;
  color: #105789;
}
.cards-list.counter-text .counter-box p {
  font-family: 'Outfit', sans-serif;
  color: #105789;
  font-size: 88px;
  line-height: 98px;
  font-weight: 800;
}
.cards-list.check-mark {
  flex: 0 0 100%;
  padding: 80px 0;
}
.cards-list.check-mark .card-item {
  padding: 40px;
}
.cards-list.check-mark .card-item i {
  position: absolute;
  top: -16px;
  left: 50%;
  color: #2CABE2;
  font-size: 32px;
  z-index: 1;
  transform: translateX(-50%);
}
.cards-list.check-mark .card-item::after {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  background-color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cards-list.check-mark .card-item p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
/* Website Templates Card */
.site-list-item {
  position: relative;
  border: 1px solid rgba(7, 22, 34, 0.1);
}
.site-list-item .site-info {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-end;
  text-align: center;
  gap: 32px;
  background-color: #071622;
  background: linear-gradient(0deg, #071622 0%, rgba(7, 22, 34, 0.45) 100%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.site-list-item .site-info .site-name {
  flex: 0 0 100%;
  color: #FFFFFF;
}
.site-list-item:hover .site-info {
  visibility: visible;
  opacity: 1;
}
.site-label {
  position: absolute;
  top: -50px;
  left: -50px;
  display: flex;
  align-items: center;
  width: 250px;
  height: 250px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  transform: rotate(-45deg);
}
.site-label span {
  flex: 0 0 100%;
  display: block;
  padding: 8px 32px;
  background-color: #0c3f62;
}
/* Site list card */
.cta-call {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px;
  gap: 16px;
  background-color: #071622;
}
.cta-call i {
  flex: 0 0 48px;
  font-size: 48px;
}
.cta-call div {
  font-weight: 600;
}
.cta-call div span {
  display: block;
  font-size: 32px;
}
.cta-call div .cta-call-footnote {
  font-size: 13px;
  font-weight: 400;
}
/* Testimonials list */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
  max-width: 1600px;
}
.testimonial-list-item {
  flex: 0 0 calc(100% / 3 - 80px / 3);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-list-img {
  overflow: hidden;
  position: relative;
  font-size: 0;
}
.testimonial-list-img img {
  object-fit: contain;
}
.testimonial-list-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/yt.svg") no-repeat center / 60px 42px;
  cursor: pointer;
}
.testimonial-list-img a:hover {
  background-image: url("../images/yt-hover.svg");
}
.testimonial-list-info:has(.link-btn) .testimonial-list-company {
  margin-bottom: 8px;
}
.testimonial-list-lead {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 24px;
  color: #105789;
  text-transform: initial;
}
.testimonial-list-name {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
}
.testimonial-list-company {
  font-size: 16px;
}
.video-content {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*#endregion Componentes */
/*#region sections */
.section-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  padding: 120px 0;
  margin: 0 auto;
  max-width: 1600px;
}
.section-page-title {
  background-color: rgba(7, 22, 34, 0.05);
  justify-content: center;
  align-content: center;
}
.section-page-title .section-text {
  flex: 0 0 100%;
  max-width: 1600px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.section-page-title .section-text h1 {
  margin-bottom: 0;
  text-align: center;
  max-width: 960px;
}
.section-page-title .section-text p {
  text-align: center;
}
.section-page-title.dk-blue {
  background-color: #0C3F62;
}
.section-page-title.dk-blue h1 {
  color: #FFFFFF;
}
.section-video {
  justify-content: center;
}
.section-video .video-content {
  position: relative;
  font-size: 0;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: calc(1600px - 240px);
  max-width: 1280px;
  padding-bottom: 0;
}
.section-video .video-content iframe {
  display: none;
  width: 100%;
  height: 100%;
}
.section-video .video-content iframe:first-child {
  display: block;
}
.section-video .video-content picture {
  display: none;
  aspect-ratio: 16/9;
}
.section-video .video-content picture:first-child {
  display: block;
}
.section-video .video-content .big-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-video:has(.section-text) .section-text {
  flex: 0 0 auto;
  width: auto;
  text-align: center;
  align-self: center;
}
.section-video:has(.section-text) .section-text h2 {
  max-width: 22ch;
}
.section-site-list {
  justify-content: center;
}
.section-site-list .site-list-header {
  display: flex;
  flex: 0 0 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 22, 34, 0.1);
}
.section-site-list .site-list-header .site-list-search {
  margin-left: auto;
}
.section-site-list .site-list-header .site-list-search form {
  position: relative;
}
.section-site-list .site-list-header .site-list-search input {
  height: 40px;
  padding-right: 40px;
}
.section-site-list .site-list-header .site-list-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #0C3F62;
  color: #FFFFFF;
  font-size: 24px;
}
.section-site-list .site-list {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  gap: 40px;
}
.section-site-list .site-list .site-list-item {
  flex: 0 0 calc(100% / 3 - 80px / 3);
  overflow: hidden;
}
.section-site-list .site-list.col-2 .site-list-item {
  flex: 0 0 calc(100% / 2 - 40px / 2);
}
.section-site-list h4 {
  text-align: center;
}
.section-site-features {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 48px;
  background-color: rgba(12, 63, 98, 0.1);
}
.section-site-features::before,
.section-site-features::after {
  content: '';
  width: 160px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(12, 63, 98, 0.1);
}
.section-site-features::before {
  right: 100%;
}
.section-site-features::after {
  left: 100%;
}
.section-site-features h2 {
  margin-bottom: 0;
}
.section-site-features p {
  max-width: initial;
}
.section-site-features .site-features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.section-site-features .site-feature-item {
  width: 100%;
  max-width: 768px;
  padding: 32px;
  background-color: #FFFFFF;
}
.section-site-features .site-feature-item ul {
  margin-top: 24px;
}
.section-site-features .site-feature-item ul li {
  display: flex;
  gap: 4px;
  margin-bottom: 42px;
}
.section-site-features .site-feature-item ul li:last-child {
  margin-bottom: 0;
}
.section-site-features .site-feature-item ul li i {
  font-size: 24px;
}
.section-contact-hero {
  padding-top: 0;
  padding-bottom: 0;
  color: #FFFFFF;
  background-color: #0C3F62;
}
.section-contact-hero::before,
.section-contact-hero::after {
  content: '';
  display: block;
  width: 160px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: inherit;
}
.section-contact-hero::before {
  right: 100%;
}
.section-contact-hero::after {
  left: 100%;
}
.section-contact-hero .section-text {
  flex: 0 0 calc(45%);
}
.section-contact-hero .section-text svg {
  width: 320px;
  height: auto;
  margin-bottom: 56px;
}
.section-contact-hero .section-text p.large {
  margin-bottom: 40px;
}
.section-contact-hero .section-text:has(.cta-call) p.large {
  margin-bottom: 80px;
}
.section-contact-hero .section-text .primary-btn {
  margin-top: 24px;
}
.section-contact-hero .contact-form {
  margin-left: auto;
  flex: 1;
  max-width: 640px;
  padding: 64px;
  background-color: rgba(255, 255, 255, 0.1);
}
.section-contact-hero .contact-form h4 {
  margin-bottom: 40px;
}
.section-contact-hero .contact-form h4 span {
  font-weight: 400;
}
.section-contact-hero .contact-form label {
  color: inherit;
}
.section-contact-hero .contact-form .checkbox-label a {
  color: rgba(255, 255, 255, 0.8);
}
.section-contact-hero .contact-form .checkbox-label a:hover {
  color: #ffffff;
}
.section-contact-hero .contact-form .primary-btn {
  background-color: #071622;
}
.section-contact-hero .contact-form .primary-btn:hover {
  background-color: rgba(7, 22, 34, 0.7);
}
section.img-bg {
  padding: 0;
}
section.img-bg .section-text {
  position: absolute;
  max-width: 960px;
  color: #FFFFFF;
}
section.img-bg .section-image {
  flex: 0 0 100%;
}
.section-brands {
  flex-direction: column;
  gap: 80px;
  background-color: rgba(7, 22, 34, 0.1);
}
.section-brands .brands-bar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 80px 64px;
  width: 100%;
  max-width: 1600px;
}
.section-brands .brands-bar-list img {
  max-width: 210px;
  object-fit: contain;
}
.section-events-type {
  flex-direction: column;
}
.section-events-type h2,
.section-events-type p {
  max-width: unset;
}
.section-events-type h4 {
  font-size: 24px;
  line-height: 32px;
  margin-top: 24px;
}
.section-events-type h4 + p {
  margin-bottom: 32px;
  flex: 1;
}
.section-events-type .primary-btn {
  width: 100%;
  align-self: flex-end;
  white-space: nowrap;
}
.section-events-type .section-text {
  flex: 0 0 auto;
  width: 100%;
  align-self: flex-start;
}
.section-events-type .cards-list {
  width: 100%;
  max-width: 100%;
}
.section-events-type .cards-list .card-item {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  flex: 1 0 calc(100% / 4 - 40px * 3 / 4);
  padding: 24px;
}
.section-events-type .cards-list .card-item .product-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.section-events-type .cards-list .card-item .product-icon img {
  max-width: 180px;
  max-height: 36px;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
.section-events-type .cards-list .card-item .product-icon:has(img+img) img {
  width: calc(100%/2 - 8px);
}
.section-events-type .cards-list .card-item.blue-bg {
  flex-direction: column;
  background-color: #2CABE2;
  border: none;
}
.section-events-type .cards-list .card-item.blue-bg h4 {
  margin-top: 0;
  color: #FFFFFF;
  flex: 1;
}
.section-events-type .cards-list .card-item.blue-bg h4:last-of-type {
  margin-bottom: 32px;
}
.section-events-type .cards-list:has( > :last-child:nth-child(3)) .card-item {
  flex: 1 0 calc(100% / 3 - 40px * 2 / 3);
}
.section-calendar {
  flex: 0 0 100%;
  width: 100%;
}
.section-calendar iframe {
  width: 100%;
  border-width: 0;
  aspect-ratio: 16/9;
}
/*#endregion sections */
/*#region CRM PAGE */
.crm-content .section-video {
  padding-top: 0;
  padding-bottom: 0;
}
.crm-content .section-video:before,
.crm-content .section-video:after {
  content: '';
  display: block;
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0;
  z-index: -1;
}
.crm-content .section-video:before {
  top: 0;
  background-color: rgba(7, 22, 34, 0.05);
}
.crm-content .section-video:after {
  bottom: 0;
  background-color: #071622;
}
.crm-content .section-crm-features {
  flex-direction: column;
  align-items: center;
}
#crm-mobile .section-image {
  position: relative;
  display: flex;
  justify-content: center;
}
#crm-mobile .section-image picture {
  max-width: 307px;
  max-height: 620px;
}
#crm-mobile .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 980px;
  height: 484px;
  z-index: -1;
  right: 30px;
  bottom: 55px;
  background-color: rgba(12, 63, 98, 0.1);
}
#crm-mobile h2 {
  max-width: 14ch;
}
/*#endregion CRM PAGE */
/*#region REALESTATE WEBSITE PAGE */
#site-hero {
  padding-top: 0;
  padding-bottom: 0;
}
#site-hero .section-image {
  position: relative;
  max-width: 782px;
}
#site-hero .section-image picture {
  height: 100%;
}
#site-hero .section-image .big-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
#site-templates {
  padding-left: 0;
  padding-right: 0;
}
.site-template-swiper .swiper-slide {
  opacity: 0.5;
}
.site-template-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.site-template-swiper .swiper-button-next {
  left: calc(100% / 3 + 100% / 3 - 12px);
  transform: translateX(-50%);
}
.site-template-swiper .swiper-button-prev {
  left: calc(100% / 3 + 12px);
  transform: translateX(-50%);
}
#site-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 266px);
  background-color: #E5E7E8;
  z-index: -1;
}
#site-premium .section-image {
  display: flex;
  gap: 40px;
  flex: 0 0 100%;
  justify-content: center;
  overflow: hidden;
  margin-left: unset;
}
#site-premium .section-image picture {
  align-self: flex-end;
}
#site-premium .section-image picture img {
  width: 781px;
}
#site-premium .section-image picture:first-child img {
  width: 192px;
}
#site-custom {
  flex-direction: column;
  padding-bottom: 0;
}
#site-custom .section-image {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 0 0 100%;
  max-width: 1280px;
  margin-left: unset;
}
#site-custom .section-image .section-image-text {
  flex: 1;
  align-self: flex-end;
  padding-bottom: 120px;
}
#site-custom .section-image .section-image-text h4 {
  color: #FFFFFF;
  margin-bottom: 40px;
}
#site-custom .section-image picture {
  flex: 0 0 894px;
}
#site-custom .section-image picture img {
  max-width: 894px;
}
#site-custom .section-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 537px;
  background-color: #105789;
  z-index: -1;
}
/*#endregion REALESTATE WEBSITE PAGE */
/*#region REALESTATE WEBSITE PREMIUM PAGE */
#site-premium-highlight h2 {
  max-width: initial;
}
#site-premium-highlight picture {
  position: relative;
  max-width: 782px;
}
#site-premium-highlight picture::after {
  content: '';
  display: block;
  position: absolute;
  left: 160px;
  top: 88px;
  width: 100%;
  height: 100%;
  background-color: #071622;
  z-index: -1;
}
#site-premium-highlight picture img {
  object-fit: contain;
}
#site-premium-highlight .big-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
/*#endregion REAL ESTATE WEBSITE PREMIUM PAGE */
/*#region REALESTATE WEBSITE CUSTOM PAGE */
#custom-site-highlight {
  padding-top: 0;
}
#custom-site-highlight picture {
  position: relative;
  max-width: 920px;
}
#custom-site-highlight picture::after {
  content: '';
  display: block;
  position: absolute;
  left: 160px;
  top: 0;
  width: 100%;
  height: calc(100% + 88px);
  background-color: #0C3F62;
  z-index: -1;
}
/*#endregion REALESTATE WEBSITE CUSTOM PAGE */
/*#region PORTALS PAGE */
#portals-hero {
  padding-top: 0;
  margin-bottom: 88px;
  gap: 64px 0;
}
#portals-hero .section-text {
  padding-right: 40px;
}
#portals-hero .section-image {
  position: relative;
  max-width: 782px;
}
#portals-hero .section-image picture {
  height: 100%;
}
#portals-hero .section-image .big-btn {
  position: absolute;
  top: 100%;
  right: 0;
}
#portals-hero .section-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -88px;
  display: block;
  width: calc(100% + 88px + 160px);
  height: calc(100% + 88px);
  background-color: rgba(7, 22, 34, 0.1);
  z-index: -1;
}
#national-portals {
  flex-direction: column;
  padding-bottom: 0;
}
#national-portals .card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1280px;
}
#national-portals .card-item {
  flex: 1;
  position: relative;
  padding: 80px;
  color: #FFFFFF;
}
#national-portals .card-item svg {
  width: auto;
  height: 32px;
  margin-bottom: 48px;
}
#national-portals .card-item h4 {
  margin-bottom: 24px;
}
#national-portals .card-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 320px;
  height: 100%;
}
#national-portals .card-item.sc-card {
  background-color: #005BAA;
}
#national-portals .card-item.sc-card::before {
  right: 100%;
  background-color: inherit;
}
#national-portals .card-item.cs-card {
  background-color: #71AC41;
}
#national-portals .card-item.cs-card::before {
  left: 100%;
  background-color: inherit;
}
#portals-packs {
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  background-color: rgba(7, 22, 34, 0.05);
}
#portals-packs::before,
#portals-packs::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 160px;
  height: 100%;
  background-color: rgba(7, 22, 34, 0.05);
}
#portals-packs::before {
  right: 100%;
}
#portals-packs::after {
  left: 100%;
}
.portals-packs-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1024px;
  text-align: center;
}
.portals-packs-list h4 {
  margin-bottom: 32px;
}
.portals-packs-list .portals-label {
  background-color: rgba(7, 22, 34, 0.1);
  height: 40px;
  line-height: 40px;
}
.portals-packs-list ul {
  display: flex;
  flex-wrap: wrap;
}
.portals-packs-list ul li {
  flex: 0 0 calc(100% / 4);
  background-color: #FFFFFF;
  border-left: 1px solid rgba(7, 22, 34, 0.1);
  border-top: 1px solid rgba(7, 22, 34, 0.1);
}
.portals-packs-list ul li:nth-child(4n + 1) {
  border-left: none;
}
.portals-packs-list ul li:nth-child(-n + 4) {
  border-top: none;
}
.portals-packs-list ul li picture {
  position: relative;
}
.portal-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 16px;
  font-size: 14px;
  color: #FFFFFF;
  background-color: #0C3F62;
}
.portal-tag:empty {
  display: none;
}
/*#endregion PORTALS PAGE */
/*#region SUPERCASA PAGE */
.supercasa-content .section-contact-hero {
  background-color: #005BAA;
}
#sc-testimonials {
  flex-direction: column;
}
#sc-testimonials .primary-btn {
  align-self: center;
}
/*#endregion SUPERCASA PAGE */
/*#region CASASAPO PAGE */
.casasapo-content .section-contact-hero {
  background-color: #71AC41;
}
#cs-e-merketing {
  padding-top: calc(120px + 88px);
}
#cs-e-merketing .section-image picture {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: auto;
}
#cs-e-merketing .section-image picture img {
  max-width: 782px;
}
#cs-e-merketing .section-image picture::after,
#cs-e-merketing .section-image picture::before {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: rgba(7, 22, 34, 0.1);
}
#cs-e-merketing .section-image picture::after {
  width: calc(100% + 88px);
  height: calc(100% + 88px);
  right: 0;
}
#cs-e-merketing .section-image picture::before {
  width: 160px;
  height: calc(100% + 88px);
  left: 100%;
}
#cs-client-profile {
  padding-top: calc(120px + 88px);
}
#cs-client-profile .section-image picture {
  position: relative;
  width: 100%;
  max-width: 702px;
  height: auto;
}
#cs-client-profile .section-image picture::after,
#cs-client-profile .section-image picture::before {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: rgba(7, 22, 34, 0.1);
}
#cs-client-profile .section-image picture::after {
  width: calc(100% + 88px);
  height: calc(100% + 88px);
  left: 0;
}
#cs-client-profile .section-image picture::before {
  width: 160px;
  height: calc(100% + 88px);
  right: 100%;
}
#cs-barometro {
  padding-top: calc(120px + 88px);
}
#cs-barometro .section-image picture {
  position: relative;
  width: 100%;
  max-width: 702px;
  height: auto;
  margin-left: auto;
}
#cs-barometro .section-image picture::after,
#cs-barometro .section-image picture::before {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: rgba(7, 22, 34, 0.1);
}
#cs-barometro .section-image picture::after {
  width: calc(100% + 88px);
  height: calc(100% + 88px);
  right: 0;
}
#cs-barometro .section-image picture::before {
  width: 160px;
  height: calc(100% + 88px);
  left: 100%;
}
/*#endregion CASASAPO PAGE */
/*#region MKT DIGITAL PAGE */
#mkt-digital-hero {
  padding-top: 0;
  padding-bottom: calc(120px + 88px);
}
#mkt-digital-hero .section-image picture {
  position: relative;
  width: 100%;
  max-width: 940px;
  height: 100%;
  max-height: 920px;
  margin-left: 160px;
}
#mkt-digital-hero .section-image picture::before {
  content: '';
  position: absolute;
  top: calc(100% - 88px);
  display: block;
  z-index: -1;
  background-color: rgba(7, 22, 34, 0.1);
  right: 0;
  width: calc(100% + 88px);
  height: 176px;
}
#mkt-digital-hero .section-image picture .big-btn {
  position: absolute;
  top: 100%;
  right: 160px;
}
#mkt-social-media .section-image picture {
  position: relative;
  width: 100%;
  max-width: 702px;
  height: auto;
}
#mkt-social-media .section-image picture::before {
  content: '';
  position: absolute;
  top: 226px;
  display: block;
  z-index: -1;
  background-color: rgba(16, 87, 137, 0.1);
  width: 940px;
  width: calc(100% + 160px + 88px);
  height: 345px;
  left: -160px;
}
#mkt-email-mkt {
  gap: 64px 0;
}
#mkt-email-mkt .section-image picture {
  position: relative;
  width: 100%;
  max-width: 645px;
  height: auto;
  margin-left: auto;
}
#mkt-email-mkt .section-image picture::before {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: #071622;
  width: 940px;
  width: calc(100% + 160px * 2);
  height: 310px;
  right: -160px;
}
#mkt-campaign .section-image picture {
  position: relative;
  width: 100%;
  max-width: 782px;
  height: auto;
}
#mkt-campaign .section-image picture::before {
  content: '';
  position: absolute;
  bottom: -88px;
  display: block;
  z-index: -1;
  background-color: rgba(12, 63, 98, 0.1);
  width: 100%;
  height: calc(100% / 3 * 2);
  left: -160px;
}
/*#endregion MKT DIGITAL PAGE */
/*#region PLANS PAGE */
#pricing-section {
  gap: 0;
}
.pricing-switch {
  margin: 0 auto calc(88px + 32px + 40px) auto;
  width: 100%;
  max-width: 400px;
}
.pricing-switch .toggle-checkbox {
  display: none;
}
.pricing-switch .toggle-checkbox:checked + .toggle-content::before {
  left: 50%;
}
.pricing-switch .toggle-checkbox:checked + .toggle-content .toggle-item {
  transition: color 0.3s ease;
}
.pricing-switch .toggle-checkbox:checked + .toggle-content .toggle-item:first-child {
  color: #071622;
}
.pricing-switch .toggle-checkbox:checked + .toggle-content .toggle-item:last-child {
  color: #FFFFFF;
}
.pricing-switch .toggle-content {
  position: relative;
  display: flex;
  border: 1px solid #105789;
  margin: 0;
  cursor: pointer;
}
.pricing-switch .toggle-content::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  background: #105789;
  transition: all 0.3s ease;
}
.pricing-switch .toggle-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: calc(100% / 2);
  padding: 16px;
  color: #FFFFFF;
}
.pricing-switch .toggle-item:last-child {
  color: #071622;
}
.pricing-switch .toggle-label {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 1px);
  height: 32px;
  font-size: 13px;
  text-align: center;
  color: #071622;
  background-color: rgba(12, 63, 98, 0.2);
}
.pricing-table {
  display: flex;
  gap: 40px;
  flex: 0 0 100%;
  width: 100%;
}
.pricing-table .pricing-item {
  /* flex: 1; */
  flex-basis: calc(100% / 3 - 40px * 2 / 3);
  /* flex: 1;
        max-width: calc(100% / 3 - 40px * 2 / 3);
        min-width: 30%; */
  border: 1px solid rgba(7, 22, 34, 0.1);
  text-align: center;
  padding-bottom: 40px;
  transition: all 0.3s ease;
}
.pricing-table .pricing-item:hover {
  background-color: rgba(16, 87, 137, 0.1);
}
.pricing-table .pricing-item .pricing-item-label {
  display: none;
  height: 40px;
  padding: 0 16px;
}
.pricing-table .pricing-item .pricing-item-title {
  padding: 32px 16px;
  font-weight: 600;
  color: #105789;
  border-bottom: 1px solid rgba(7, 22, 34, 0.1);
}
.pricing-table .pricing-item .pricing-item-value {
  max-width: initial;
  padding: 32px 16px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(7, 22, 34, 0.1);
}
.pricing-table .pricing-item .pricing-item-value > span {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: initial;
  font-weight: 400;
  color: rgba(7, 22, 34, 0.5);
}
.pricing-table .pricing-item .pricing-item-features {
  padding: 32px 16px;
}
.pricing-table .pricing-item .pricing-item-features ul li {
  padding: 16px;
  font-size: 24px;
}
.pricing-table .pricing-item .pricing-item-features ul li.not-included {
  color: #9BA1A5;
  text-decoration: line-through;
}
.pricing-table .pricing-item .pricing-item-features ul li .link-btn {
  font-size: 16px;
  font-weight: 400;
}
.pricing-table .pricing-item .big-btn {
  width: 100%;
  max-width: calc(100% - 80px);
  min-width: initial;
}
.pricing-table .pricing-item.is-highlight {
  position: relative;
}
.pricing-table .pricing-item.is-highlight .pricing-item-label {
  position: absolute;
  left: 0;
  bottom: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(16, 87, 137, 0.2);
}
.pricing-table .pricing-item.is-highlight .pricing-item-title {
  color: #FFFFFF;
  background-color: #071622;
}
.pricing-footnotes {
  margin-top: 24px;
}
.pricing-footnotes p {
  font-size: 16px;
  max-width: unset;
  margin-bottom: 8px;
}
/*#endregion PLANS PAGE */
/*#region ABOUT US PAGE */
.section-about-hero {
  background-color: #071622;
}
.section-about-hero .section-text {
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 168px;
}
.section-about-hero .section-image picture {
  margin: 0 auto;
  height: 100%;
  height: 960px;
}
.section-about-features {
  margin-top: -168px;
  background-color: #FFFFFF;
}
/*#endregion ABOUT US PAGE */
/*#region DEMOS */
.content-demos h2 {
  max-width: 20ch;
}
.content-demos section.reverse .section-image picture {
  margin-left: initial;
}
.content-demos .section-image picture {
  position: relative;
  width: 100%;
  max-width: 782px;
  height: auto;
  margin-left: auto;
  aspect-ratio: 4/3;
}
.content-demos .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
}
.content-demos .section-contact-hero {
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FFFFFF;
}
.content-demos .section-contact-hero > div {
  max-width: 1600px;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}
.content-demos .section-contact-hero .contact-form {
  flex: 1;
  background-color: #FFFFFF;
}
.content-demos .section-contact-hero .contact-form h4 {
  color: #071622;
}
.content-demos .section-contact-hero .contact-form label {
  color: rgba(7, 22, 34, 0.6);
}
.content-demos .section-contact-hero .contact-form .checkbox-label a {
  color: #071622;
}
.content-demos .section-contact-hero .contact-form .primary-btn {
  background-color: #0C3F62;
}
.content-demos .section-contact-hero::before,
.content-demos .section-contact-hero::after {
  display: none;
}
.content-demos .section-contact-hero.demo-crm-hero {
  background-image: url('../images/demo-crm-hero.jpg'), url('../images/demo-crm-hero.webp');
}
.content-demos .section-contact-hero.demo-site-hero {
  background-image: url('../images/demo-site-hero.jpg'), url('../images/demo-site-hero.webp');
}
#demo-crm-section-01 {
  padding-bottom: calc(160px + 80px);
}
#demo-crm-section-01 .section-image picture::after {
  bottom: -80px;
  right: -160px;
  width: calc(100% + 160px + 80px);
  height: 286px;
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-crm-section-02 {
  position: relative;
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-crm-section-02 .section-text {
  max-width: 680px;
}
#demo-crm-section-02 svg {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
}
#demo-crm-section-03 {
  padding-top: calc(120px + 80px);
}
#demo-crm-section-03 .section-image picture::after {
  bottom: 0;
  right: -160px;
  width: calc(100% - 160px);
  height: calc(100% + 80px);
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-crm-section-04 {
  padding-top: 0;
}
#demo-site-section-01 .section-image picture::after {
  top: -120px;
  right: -160px;
  width: calc(100% + 160px + 80px);
  height: 100%;
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-site-section-02 .section-image picture::after {
  bottom: -80px;
  left: -160px;
  width: 100%;
  height: 80%;
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-site-section-03 .section-image picture::after {
  bottom: 0;
  right: -160px;
  width: calc(100% - 160px);
  height: calc(100% + 80px);
  background-color: rgba(7, 22, 34, 0.1);
}
#demo-site-section-04 {
  padding-top: 0;
}
.section-img-layer {
  padding-top: 40px;
  justify-content: center;
}
.section-img-layerContent {
  max-width: 1600px;
}
.section-img-layer .section-image {
  position: absolute;
  bottom: 0;
}
.section-img-layer .section-image picture {
  max-width: 590px;
  height: auto;
  aspect-ratio: unset;
}
.section-img-layer .banner-box {
  position: relative;
  display: flex;
  max-width: 1330px;
  padding: 80px 160px;
}
.section-img-layer .banner-box.light {
  background-color: #FFFFFF;
}
.section-img-layer .banner-box .section-text {
  margin-left: auto;
  max-width: 50%;
}
.section-img-layer .banner-box .section-text.light {
  color: #FFFFFF;
}
.gradient-bg.medium-blue {
  background: #105789;
  background: linear-gradient(40deg, #105789 0%, #2CABE2 100%);
}
/*#endregion DEMOS */
/*#region DEMO TODO: REMOVER */
.demo-content h3 {
  text-transform: initial;
  margin-bottom: 0;
}
.demo-content .section-page-title .section-text {
  padding-bottom: 168px;
}
.demo-content .section-about-features {
  max-width: 1024px;
  padding: 64px 80px;
}
.demo-content .cards-list .card-item {
  padding: 40px 24px 24px 24px;
}
.demo-content .cards-list .card-item i {
  position: absolute;
  top: -16px;
  left: 50%;
  color: #2CABE2;
  font-size: 32px;
  z-index: 1;
  transform: translateX(-50%);
}
.demo-content .cards-list .card-item::after {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  background-color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.demo-content .cards-list .card-item + .big-btn {
  padding: 40px 24px;
}
/*#endregion DEMO */
/* #region Acquisition PAGE */
#acquisition-hero::after {
  background-color: #008DA7;
}
#acquisition-hero-text {
  background-color: #008DA7;
  padding-top: 80px;
}
#acquisition-hero-text h3 {
  margin-bottom: 48px;
}
#acquisition-hero-text h3 img {
  max-width: 240px;
  height: auto;
}
#acquisition-punchline h3 {
  margin-bottom: 48px;
}
#acquisition-punchline h3 img {
  max-width: 240px;
  height: auto;
}
.acquisition-content .section-video {
  padding-top: 0;
  padding-bottom: 0;
}
.acquisition-content .section-video:before,
.acquisition-content .section-video:after {
  content: '';
  display: block;
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0;
  z-index: -1;
}
.acquisition-content .section-video:before {
  top: 0;
  background-color: rgba(7, 22, 34, 0.05);
}
.acquisition-content .section-video:after {
  bottom: 0;
  background-color: #071622;
}
#acquisition-screen {
  gap: 80px;
}
#acquisition-screen h3 img {
  height: 30px;
  width: auto;
}
#acquisition-screen .section-text {
  flex: 0 0 calc(45% - 40px);
}
#acquisition-screen .section-image {
  flex: 0 0 calc(55% - 40px);
  margin-left: auto;
  position: relative;
}
#acquisition-screen .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 980px;
  height: 484px;
  z-index: -1;
  left: -48px;
  top: -48px;
  background-color: rgba(12, 63, 98, 0.1);
}
#routes-screen {
  gap: 80px;
}
#routes-screen h3 img {
  height: 30px;
  width: auto;
}
#routes-screen .section-text {
  flex: 0 0 calc(45% - 40px);
}
#routes-screen .section-image {
  flex: 0 0 calc(55% - 40px);
  margin-left: auto;
  position: relative;
}
#routes-screen .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 980px;
  height: 484px;
  z-index: -1;
  right: -48px;
  bottom: -48px;
  background-color: rgba(12, 63, 98, 0.1);
}
#market-evolution-screen {
  gap: 80px;
}
#market-evolution-screen h3 img {
  height: 30px;
  width: auto;
}
#market-evolution-screen .section-text {
  flex: 0 0 calc(45% - 40px);
}
#market-evolution-screen .section-image {
  flex: 0 0 calc(55% - 40px);
  margin-left: auto;
  position: relative;
}
#market-evolution-screen .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 1200px;
  height: 96px;
  z-index: -1;
  right: -48px;
  bottom: -48px;
  background-color: rgba(12, 63, 98, 0.1);
}
#market-analysis-screen {
  gap: 80px;
}
#market-analysis-screen h3 img {
  height: 30px;
  width: auto;
}
#market-analysis-screen .section-text {
  flex: 0 0 calc(45% - 40px);
}
#market-analysis-screen .section-image {
  flex: 0 0 calc(55% - 40px);
  margin-left: auto;
  position: relative;
}
#market-analysis-screen .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 200px;
  height: 400px;
  z-index: -1;
  left: -48px;
  top: -48px;
  background-color: rgba(12, 63, 98, 0.1);
}
#integration-screen {
  gap: 80px;
}
#integration-screen h3 img {
  height: 30px;
  width: auto;
}
#integration-screen .section-text {
  flex: 0 0 calc(45% - 40px);
}
#integration-screen .section-image {
  flex: 0 0 calc(55% - 40px);
  margin-left: auto;
  position: relative;
}
#integration-screen .section-image picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 400px;
  z-index: -1;
  right: -48px;
  bottom: -48px;
  background-color: rgba(12, 63, 98, 0.1);
}
#acquisition-color {
  margin: 96px auto 0;
  padding: 80px 40px;
}
#acquisition-color .section-text {
  flex-direction: row;
  max-width: 1280px;
}
#acquisition-color .section-text span {
  font-size: 24px;
  letter-spacing: -1px;
  padding: 40px;
  font-family: 'Amulya', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#acquisition-color .section-text h2 {
  flex: 1;
  font-size: 32px;
  line-height: 40px;
  background-color: #E5E7E8;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* #endregion Acquisition PAGE */
/*#region Webinars */
#webinars-hero .section-content {
  position: relative;
}
#webinars-hero .section-image {
  position: absolute;
  top: 0;
  left: calc(50% + 26px);
}
#webinars-hero .section-image picture {
  max-width: 782px;
}
.training-calendar-content .section-page-title.light-blue-bg {
  background-color: rgba(171, 212, 242, 0.2);
}
/*#endregion Webinars */
/*#region Workshops e formações */
#workshops-hero {
  padding-top: 0;
}
#workshops-hero .section-text {
  padding-top: 5%;
}
#workshops-hero .section-image picture {
  position: relative;
  margin-left: auto;
  max-width: 782px;
  max-height: 696px;
  aspect-ratio: 1 / 1.1;
}
#workshops-hero .section-image picture::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 0;
  display: block;
  width: 300px;
  height: calc(100% + 80px);
  background-color: rgba(12, 63, 98, 0.05);
  z-index: -1;
}
.workshops-content .section-video {
  position: relative;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}
.workshops-content .section-video::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 240px;
  background-color: #071622;
  z-index: -1;
}
/*#endregion Workshops */
/*#region CONTACT PAGE */
.contact-content .section-contact-hero a {
  text-decoration: underline;
}
/*#endregion CONTACT PAGE */
/* #region eGO CRM - Intermediação crédito */
.credit-content #crm-credit-hero {
  position: relative;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  background-color: #051A29;
  padding-bottom: 0;
  margin-bottom: 200px;
  gap: 120px;
}
.credit-content #crm-credit-hero .section-text {
  flex: 0 0 auto;
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.credit-content #crm-credit-hero .section-text h1 {
  font-size: 64px;
  line-height: 1.1em;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .credit-content #crm-credit-hero .section-text h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .credit-content #crm-credit-hero .section-text h1 {
    font-size: 40px;
  }
}
.credit-content #crm-credit-hero .section-text p {
  width: 100%;
  max-width: unset;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}
@media screen and (max-width: 480px) {
  .credit-content #crm-credit-hero .section-text p {
    font-size: 20px;
    line-height: 28px;
  }
}
.credit-content #crm-credit-hero .section-text .primary-btn {
  align-self: center;
}
.credit-content #crm-credit-hero .section-image {
  flex: 0 0 auto;
  max-width: 1600px;
  margin: 0 auto -200px auto;
  z-index: 1;
}
.credit-content #crm-credit-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #105789;
  background: linear-gradient(0deg, #105789 0%, rgba(10, 53, 84, 0) 100%);
  opacity: 0.6;
}
@media screen and (max-width: 1600px) {
  .credit-content #crm-credit-hero {
    overflow: unset;
  }
}
@media screen and (max-width: 1024px) {
  .credit-content #crm-credit-hero {
    padding-left: 40px;
    padding-right: 40px;
  }
  .credit-content #crm-credit-hero .section-text {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .credit-content #crm-credit-hero {
    gap: 80px;
  }
}
@media screen and (max-width: 640px) {
  .credit-content #crm-credit-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.credit-content .section-crm-features .section-text {
  max-width: 1100px;
}
.credit-content .section-crm-features .section-text h2 {
  font-size: 56px;
  line-height: 1.1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .credit-content .section-crm-features .section-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .credit-content .section-crm-features .section-text h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .credit-content .section-crm-features {
    padding-left: 40px;
    padding-right: 40px;
  }
  .credit-content .section-crm-features .section-text {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .credit-content .section-crm-features {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.credit-content .cards-list {
  max-width: unset;
}
.credit-content .cards-list .card-item {
  flex: 0 0 calc(100% / 2 - 40px / 2);
  padding: 24px;
}
.credit-content .cards-list .card-item h3 {
  font-size: 24px;
  line-height: 32px;
  text-transform: unset;
  margin-bottom: 16px;
}
.credit-content .cards-list .card-item p {
  font-size: 16px;
  line-height: 22px;
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .credit-content .cards-list {
    gap: 24px;
  }
  .credit-content .cards-list .card-item {
    flex: 0 0 100%;
  }
}
.credit-content .section-brands .section-text {
  max-width: 960px;
}
.credit-content .section-brands h2 {
  font-size: 40px;
  line-height: 1.1em;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .credit-content .section-brands h2 {
    font-size: 32px;
  }
}
.credit-content .section-brands h2:has(+ button) {
  margin-bottom: 48px;
}
.credit-content .section-brands p {
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 480px) {
  .credit-content .section-brands p {
    font-size: 20px;
    line-height: 28px;
  }
}
.credit-content .section-brands .brands-bar-list {
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .credit-content .section-brands {
    padding-left: 40px;
    padding-right: 40px;
  }
  .credit-content .section-brands .section-text,
  .credit-content .section-brands .brands-bar-list {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .credit-content .section-brands .brands-bar-list img {
    max-width: 170px;
  }
}
@media screen and (max-width: 640px) {
  .credit-content .section-brands {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* #endregion eGO CRM - Intermediação crédito */
/*#region Responsive */
@media screen and (max-width: 1920px) {
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-premium .section-image {
    justify-content: start;
    max-width: 1920px;
    padding-left: calc((1920px - 1600px) / 2);
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
}
@media screen and (max-width: 1600px) {
  .section-brands .brands-bar-list {
    justify-content: center;
  }
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-premium {
    padding-left: 0;
    padding-right: 0;
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region MKT DIGITAL PAGE */
  #mkt-digital-hero .section-text {
    padding-top: 88px;
  }
  #mkt-digital-hero .section-image picture {
    margin-left: 80px;
  }
  #mkt-digital-hero .section-image picture .big-btn {
    right: 0;
  }
  #mkt-social-media .section-image picture::before {
    width: calc(100% + 80px + 40px);
    left: -80px;
  }
  #mkt-email-mkt .section-text {
    padding-right: 40px;
  }
  #mkt-email-mkt .section-image picture::before {
    width: calc(100% + 160px);
    right: -80px;
  }
  #mkt-campaign .section-image picture::before {
    left: -80px;
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region ABOUT US PAGE */
  .section-about-hero .section-text {
    padding-bottom: 0;
  }
  .section-about-hero .section-image picture {
    height: 680px;
  }
  .section-about-features {
    margin-top: 0;
  }
  /*#endregion ABOUT US PAGE */
  /*#region DEMOS */
  #demo-crm-section-02 {
    overflow: initial;
  }
  /*#endregion DEMOS */
  /*#region Webinars */
  #webinars-hero {
    overflow: unset;
  }
  /*#endregion Webinars */
}
@media screen and (max-width: 1280px) {
  .section-calendar iframe {
    aspect-ratio: 4/3;
  }
  .section-events-type .cards-list .card-item {
    flex: 1 0 calc(100% / 2 - 40px / 2);
  }
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-hero .section-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #site-premium {
    padding-left: 80px;
    padding-right: 80px;
  }
  #site-premium .section-image {
    padding-left: 0;
  }
  #site-premium .section-image picture img {
    width: 100%;
  }
  #site-premium .section-image picture:first-child img {
    width: 100%;
  }
  #site-custom .section-image picture {
    flex-basis: 60%;
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region PORTALS PAGE */
  #portals-hero .section-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #portals-hero .section-image::before {
    left: -40px;
  }
  /*#endregion PORTALS PAGE */
  /*#region MKT DIGITAL PAGE */
  #mkt-email-mkt .section-image picture::before {
    width: calc(100% + 120px);
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region ABOUT US PAGE */
  .section-about-features {
    padding: 120px 80px;
  }
  /*#endregion ABOUT US PAGE */
  /*#region DEMOS */
  .section-img-layer .banner-box {
    padding: 80px;
  }
  .section-img-layer .banner-box .section-text {
    flex-basis: 50%;
  }
  .section-img-layer .section-image {
    width: 40%;
  }
  .section-img-layer .section-image picture {
    max-width: initial;
    width: 100%;
  }
  /*#endregion DEMOS */
  /*#region DEMO TODO: REMOVER */
  .demo-content .section-page-title .section-text {
    padding-bottom: 0;
  }
  .demo-content .section-about-features {
    padding: 120px 0;
  }
  /*#endregion DEMO */
}
@media screen and (max-width: 1024px) {
  .section-contact-hero {
    padding: 88px 0 0 0;
    align-items: center;
  }
  .section-contact-hero .section-text {
    width: 100%;
    padding-top: 0;
  }
  .section-contact-hero .contact-form {
    margin-left: initial;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  section.img-bg .section-text {
    width: 100%;
    max-width: 100%;
  }
  .section-brands .brands-bar-list {
    padding-left: 40px;
    padding-right: 40px;
  }
  .testimonial-list {
    padding: 0 40px;
  }
  .testimonial-list-item {
    flex: 0 0 calc(100% / 2 - 40px / 2);
  }
  .section-site-list {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-site-list .site-list .site-list-item {
    flex: 0 0 calc(100% / 2 - 40px / 2);
  }
  .section-site-features {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-events-type .cards-list {
    padding: 0 40px;
  }
  .section-calendar {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-video {
    align-content: center;
    align-items: center;
  }
  .section-video .video-content {
    max-width: calc(100% - 80px);
  }
  .section-video::after {
    height: 50%;
  }
  /*#region CRM PAGE */
  .crm-content .section-crm-features {
    padding-top: 120px;
    padding-right: 40px;
    padding-bottom: 88px;
    padding-left: 40px;
  }
  .crm-content .section-contact {
    padding-top: 0;
  }
  #crm-mobile .section-image picture::after {
    width: 100%;
    right: 0;
  }
  /*#endregion CRM PAGE */
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-hero {
    padding-top: 88px;
  }
  #site-hero .section-text {
    padding-top: 0;
    padding-bottom: 0;
  }
  #site-hero .section-image {
    max-width: initial;
  }
  #site-hero .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  .site-template-swiper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .site-template-swiper .swiper-button-next {
    left: initial;
    right: 40px;
    transform: none;
  }
  .site-template-swiper .swiper-button-prev {
    left: 40px;
    transform: none;
  }
  #site-premium {
    padding-left: 40px;
    padding-right: 40px;
  }
  #site-premium::before {
    height: calc(100% - 20%);
  }
  #site-premium .section-image {
    padding: 0 40px;
    gap: 24px;
  }
  #site-custom .section-image {
    position: relative;
    flex-direction: column;
    background-color: #105789;
  }
  #site-custom .section-image::before {
    display: none;
  }
  #site-custom .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #site-custom .section-image picture img {
    max-width: initial;
  }
  #site-custom .section-image .section-image-text {
    padding: 64px 0 24px 0;
    align-self: center;
    max-width: 600px;
    text-align: center;
  }
  .site-content .section-contact {
    padding-top: 0;
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region REAL ESTATE WEBSITE TEMPLATES */
  .site-templates-content .section-contact {
    padding-top: 0;
  }
  /*#endregion REAL ESTATE WEBSITE TEMPLATES */
  /*#region REAL ESTATE WEBSITE PREMIUM PAGE */
  .premium-site-content .section-contact {
    padding-top: 0;
  }
  #site-premium-highlight .section-image {
    padding: 0 40px;
  }
  /*#endregion REAL ESTATE WEBSITE PREMIUM PAGE */
  /*#region REAL ESTATE WEBSITE CUSTOM PAGE */
  .custom-site-content .section-contact {
    padding-top: 0;
  }
  #custom-site-highlight {
    padding-top: 88px;
  }
  #custom-site-highlight .section-text {
    width: 85%;
  }
  #custom-site-highlight h2 {
    max-width: initial;
  }
  #custom-site-highlight .section-image {
    padding: 0 40px;
  }
  #custom-site-highlight .section-image picture {
    max-width: 100%;
  }
  /*#endregion REAL ESTATE WEBSITE CUSTOM PAGE */
  /*#region PORTALS PAGE */
  #portals-hero {
    padding-top: 88px;
  }
  #portals-hero .section-text {
    padding-top: 0;
    padding-bottom: 0;
  }
  #portals-hero .section-image {
    max-width: 100%;
  }
  #portals-hero .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #portals-packs {
    padding-left: 40px;
    padding-right: 40px;
  }
  /*#endregion PORTALS PAGE */
  /*#region CASASAPO PAGE */
  #cs-e-merketing,
  #cs-client-profile,
  #cs-barometro {
    padding-top: 88px;
  }
  #cs-e-merketing .section-image picture,
  #cs-client-profile .section-image picture,
  #cs-barometro .section-image picture {
    padding: 88px 40px 0 40px;
    text-align: center;
    max-width: initial;
  }
  #cs-e-merketing .section-image picture::before,
  #cs-client-profile .section-image picture::before,
  #cs-barometro .section-image picture::before {
    display: none;
  }
  #cs-e-merketing .section-image picture::after,
  #cs-client-profile .section-image picture::after,
  #cs-barometro .section-image picture::after {
    width: 100%;
    height: 100%;
  }
  #cs-client-profile .section-image picture img,
  #cs-barometro .section-image picture img {
    max-width: 702px;
  }
  /*#endregion CASASAPO PAGE */
  /*#region MKT DIGITAL PAGE */
  .mkt-digital-content h2 {
    max-width: unset;
  }
  .mkt-digital-content .section-contact {
    padding-top: 0;
  }
  #mkt-digital-hero {
    padding-bottom: calc(88px + 88px);
  }
  #mkt-digital-hero .section-image picture {
    margin: 0 auto;
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #mkt-digital-hero .section-image picture::before {
    width: calc(100% + 80px);
    right: 50%;
    transform: translateX(50%);
  }
  #mkt-social-media .section-image picture {
    margin: 0 auto;
  }
  #mkt-social-media .section-image picture::before {
    width: 200%;
    max-width: 1024px;
    left: 50%;
    transform: translateX(-50%);
  }
  #mkt-email-mkt .section-image picture {
    margin: 0 auto;
  }
  #mkt-email-mkt .section-image picture::before {
    width: 200%;
    max-width: 1024px;
    right: 50%;
    transform: translateX(50%);
  }
  #mkt-campaign .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #mkt-campaign .section-image picture::before {
    width: calc(100% + 80px);
    left: 50%;
    transform: translateX(-50%);
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region PLANS PAGE */
  .pricing-content .section-contact {
    padding-top: 0;
  }
  #pricing-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pricing-table {
    flex-direction: column;
  }
  .pricing-table .pricing-item {
    flex-basis: 100%;
  }
  .pricing-table .pricing-item.is-highlight {
    margin-top: 40px;
  }
  /*#endregion PLANS PAGE */
  /*#region ABOUT US PAGE */
  .section-about-features {
    padding: 88px 40px;
  }
  .section-about-features .section-text {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .section-about-features .section-image picture {
    height: 600px;
  }
  .about-us-content .section-contact {
    padding-top: 0;
  }
  /*#endregion ABOUT US PAGE */
  /*#region Acquisition PAGE */
  #acquisition-hero {
    padding-top: 56px;
  }
  #acquisition-hero .section-image picture {
    margin: 0 auto;
    max-height: initial;
    aspect-ratio: 4/3;
  }
  #acquisition-screen,
  #routes-screen,
  #market-evolution-screen,
  #market-analysis-screen,
  #integration-screen {
    gap: 64px;
  }
  #acquisition-screen .section-text,
  #routes-screen .section-text,
  #market-evolution-screen .section-text,
  #market-analysis-screen .section-text,
  #integration-screen .section-text {
    width: 80%;
    flex: 1;
  }
  #acquisition-screen .section-image,
  #routes-screen .section-image,
  #market-evolution-screen .section-image,
  #market-analysis-screen .section-image,
  #integration-screen .section-image {
    flex: 0 0 100%;
  }
  #acquisition-screen .section-image picture,
  #routes-screen .section-image picture,
  #market-evolution-screen .section-image picture,
  #market-analysis-screen .section-image picture,
  #integration-screen .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #acquisition-screen .section-image picture::after,
  #routes-screen .section-image picture::after,
  #market-evolution-screen .section-image picture::after,
  #market-analysis-screen .section-image picture::after,
  #integration-screen .section-image picture::after {
    height: 180px;
    right: 0;
    bottom: -60px;
    width: calc(100% - 80px);
  }
  #acquisition-color {
    margin-top: 0;
  }
  #acquisition-color .section-text {
    flex-direction: column;
  }
  #acquisition-color .section-text span {
    padding: 24px;
  }
  /*#endregion Acquisition PAGE */
  /*#region DEMOS */
  .content-demos .section-contact-hero {
    background-position: top center;
    background-size: cover;
    background-color: #105789;
  }
  .content-demos .section-contact-hero > div {
    flex-direction: column;
    align-content: flex-start;
  }
  .content-demos .section-contact-hero .contact-form {
    background-color: rgba(255, 255, 255, 0.85);
  }
  .content-demos .section-center-content .section-text:has(.cards-list) {
    width: 100%;
    max-width: 100%;
  }
  .content-demos .section-contact {
    padding-top: 0;
  }
  #demo-crm-section-01 .section-image picture,
  #demo-crm-section-03 .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #demo-crm-section-03 {
    padding-top: 88px;
  }
  #demo-crm-section-03 .section-image picture img {
    object-position: top;
  }
  #demo-crm-section-03 .section-image picture::after {
    width: 1024px;
    height: calc(100% - 80px);
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
  }
  #demo-crm-section-04,
  #demo-site-section-04 {
    padding-top: 88px;
  }
  #demo-site-section-01 .section-image picture,
  #demo-site-section-02 .section-image picture,
  #demo-site-section-03 .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  #demo-site-section-03 {
    padding-top: 88px;
  }
  #demo-site-section-03 .section-image picture::after {
    width: 1024px;
    height: calc(100% - 80px);
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
  }
  #demo-site-section-01 .section-image picture::after {
    top: 80px;
  }
  .cards-list.counter-text .card-item,
  .cards-list.check-mark .card-item {
    flex: 1 0 calc(100% / 2 - 20px);
  }
  .section-img-layer .section-img-layer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 40px;
  }
  .section-img-layer .banner-box {
    width: 60%;
    padding: 40px;
  }
  .section-img-layer .banner-box .section-text {
    flex-basis: 100%;
    max-width: initial;
    padding: 0;
  }
  .section-img-layer .banner-box.light {
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1;
  }
  .section-img-layer .section-image {
    width: 48%;
    left: -10%;
    z-index: 0;
  }
  /*#endregion DEMOS */
  /*#region DEMO TODO: Remover */
  .demo-content .section-about-features {
    padding-left: 40px;
    padding-right: 40px;
  }
  /*#endregion DEMO */
  /*#region Webinars */
  .webinars-content .section-events-type + .section-contact {
    padding-top: 0;
  }
  #webinars-hero .section-image {
    position: initial;
    top: initial;
    left: initial;
  }
  #webinars-hero .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 4 / 3;
  }
  #webinars-hero .section-image picture img {
    object-position: center;
  }
  /*#endregion Webinars */
  /*#region Workshops e Formação */
  #workshops-hero {
    padding-top: 88px;
  }
  #workshops-hero .section-text {
    padding-top: 0;
  }
  #workshops-hero .section-image picture {
    margin: 0 auto;
    max-width: calc(100% - 80px);
    max-height: initial;
    aspect-ratio: 16 / 9;
  }
  /*#endregion Workshops e Formação */
}
@media screen and (max-width: 768px) {
  .section-site-list {
    padding-top: 40px;
    gap: 24px;
  }
  .section-site-list .site-list-header .site-list-search {
    width: 50%;
  }
  .section-site-list .site-list .site-list-item,
  .section-site-list .site-list.col-2 .site-list-item {
    flex: 0 0 100%;
  }
  .site-list-item {
    display: flex;
    flex-direction: column;
  }
  .site-list-item .site-info {
    visibility: visible;
    opacity: 1;
    position: initial;
    height: auto;
    flex: 1;
    align-content: flex-start;
    padding: 24px;
    gap: 24px;
    background: rgba(12, 63, 98, 0.1);
  }
  .site-list-item .site-info .site-name {
    color: #071622;
  }
  .site-list-item .site-info .outline-btn {
    color: #0C3F62;
    border-color: #0C3F62;
  }
  .site-template-swiper .site-info {
    background: rgba(255, 255, 255, 0.8);
  }
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-premium .section-image {
    flex-wrap: wrap;
    justify-content: center;
  }
  #site-premium .section-image picture {
    flex: 0 0 72%;
  }
  #site-premium .section-image picture:first-child {
    flex-basis: 18%;
  }
  #site-custom {
    padding-top: 0;
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region MKT DIGITAL PAGE */
  #mkt-social-media .section-image picture {
    max-width: 640px;
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region PORTALS PAGE */
  .portals-packs-list ul li {
    flex: 0 0 calc(100% / 3);
  }
  .portals-packs-list ul li:nth-child(4n + 1) {
    border-left: 1px solid rgba(7, 22, 34, 0.1);
  }
  .portals-packs-list ul li:nth-child(3n + 1) {
    border-left: none;
  }
  .portals-packs-list ul li:nth-child(-n + 4) {
    border-top: 1px solid rgba(7, 22, 34, 0.1);
  }
  .portals-packs-list ul li:nth-child(-n + 3) {
    border-top: none;
  }
  /*#endregion PORTALS PAGE */
  /*#region CASASAPO PAGE */
  .casasapo-content #cs-barometro {
    padding-bottom: 0;
  }
  .casasapo-content .section-contact {
    padding-top: 0;
  }
  /*#endregion CASASAPO PAGE */
  /*#region ABOUT US PAGE */
  .section-about-hero .section-image picture {
    height: 500px;
  }
  /*#endregion ABOUT US PAGE */
  /*#region Acquisition PAGE */
  .acquisition-content .section-contact {
    padding-top: 0;
  }
  /*#endregion Acquisition PAGE */
  /*#region DEMOS*/
  .cards-list.counter-text,
  .cards-list.check-mark {
    flex-direction: column;
    flex-wrap: initial;
  }
  .cards-list.counter-text .card-item,
  .cards-list.check-mark .card-item {
    flex: 0 0 auto;
  }
  .section-img-layer {
    padding-top: 88px;
  }
  .section-img-layer .banner-box:first-child {
    padding-top: 0;
  }
  .section-img-layer .section-text * {
    text-align: center;
    max-width: initial;
  }
  .section-img-layer .section-img-layer-content {
    align-items: center;
  }
  .section-img-layer .banner-box {
    width: 100%;
    text-align: center;
  }
  .section-img-layer .section-image {
    display: none;
  }
  /*#endregion DEMOS */
  /*#region Workshops e formações */
  .workshops-content .section-video::after {
    height: calc(240px - 80px);
  }
  /*#endregion Workshops e formações */
}
@media screen and (max-width: 640px) {
  .section-contact-hero .contact-form {
    padding: 40px 24px;
  }
  .section-calendar {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-calendar iframe {
    aspect-ratio: initial;
    height: 600px;
  }
  .testimonial-list {
    padding: 0 24px;
  }
  .testimonial-list-item {
    flex: 0 0 100%;
  }
  .section-site-list {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-site-features {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-brands .brands-bar-list {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-events-type .cards-list {
    padding: 0 24px;
  }
  .section-video .video-content {
    max-width: calc(100% - 48px);
  }
  .cards-list {
    flex-direction: column;
  }
  /*#region CRM PAGE */
  .crm-content .section-crm-features {
    padding-left: 24px;
    padding-right: 24px;
  }
  #crm-mobile h2 {
    max-width: initial;
  }
  /*#endregion CRM PAGE */
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-hero .section-image picture {
    max-width: calc(100% - 48px);
  }
  .site-template-swiper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-template-swiper .swiper-button-next {
    right: 24px;
  }
  .site-template-swiper .swiper-button-prev {
    left: 24px;
  }
  #site-premium {
    padding-left: 24px;
    padding-right: 24px;
  }
  #site-premium .section-image {
    padding: 0;
  }
  #site-custom .section-image .section-image-text {
    padding-left: 24px;
    padding-right: 24px;
  }
  #site-custom .section-image picture {
    max-width: calc(100% - 48px);
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region REAL ESTATE WEBSITE PREMIUM PAGE */
  #site-premium-highlight .section-image {
    padding: 0 24px;
  }
  #site-premium-highlight .big-btn {
    bottom: initial;
    top: 100%;
  }
  /*#endregion REAL ESTATE WEBSITE PREMIUM PAGE */
  /*#region REAL ESTATE WEBSITE CUSTOM PAGE */
  #custom-site-highlight .section-text {
    width: 100%;
  }
  #custom-site-highlight .section-image {
    padding: 0 24px;
  }
  /*#endregion REAL ESTATE WEBSITE CUSTOM PAGE */
  /*#region PORTALS PAGE */
  #portals-hero .section-text {
    padding-right: 24px;
  }
  #portals-hero .section-image picture {
    max-width: calc(100% - 48px);
  }
  #portals-packs {
    padding-left: 24px;
    padding-right: 24px;
  }
  .portals-packs-list ul li {
    flex: 0 0 calc(100% / 2);
  }
  .portals-packs-list ul li:nth-child(3n + 1) {
    border-left: 1px solid rgba(7, 22, 34, 0.1);
  }
  .portals-packs-list ul li:nth-child(2n + 1) {
    border-left: none;
  }
  .portals-packs-list ul li:nth-child(-n + 3) {
    border-top: 1px solid rgba(7, 22, 34, 0.1);
  }
  .portals-packs-list ul li:nth-child(-n + 1) {
    border-top: none;
  }
  /*#endregion PORTALS PAGE */
  /*#region CASASAPO PAGE */
  #cs-e-merketing .section-image picture,
  #cs-client-profile .section-image picture,
  #cs-barometro .section-image picture {
    padding-left: 24px;
    padding-right: 24px;
  }
  /*#endregion CASASAPO PAGE */
  /*#region MKT DIGITAL PAGE */
  #mkt-digital-hero .section-image picture,
  #mkt-social-media .section-image picture,
  #mkt-email-mkt .section-image picture,
  #mkt-campaign .section-image picture {
    max-width: calc(100% - 48px);
  }
  #mkt-social-media .section-image picture::before {
    top: initial;
    bottom: -80px;
    height: 50%;
  }
  #mkt-email-mkt .section-image picture::before {
    height: 50%;
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region PLANS PAGE */
  #pricing-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  /*#endregion PLANS PAGE */
  /*#region ABOUT US PAGE */
  .section-about-features {
    padding-left: 24px;
    padding-right: 24px;
  }
  /*#endregion ABOUT US PAGE */
  /*#region DEMO */
  .demo-content .section-about-features {
    padding-left: 24px;
    padding-right: 24px;
  }
  /*#endregion DEMO */
  /*#region Acquisition PAGE */
  #acquisition-screen .section-image picture,
  #routes-screen .section-image picture,
  #market-evolution-screen .section-image picture,
  #market-analysis-screen .section-image picture,
  #integration-screen .section-image picture {
    max-width: calc(100% - 48px);
  }
  /*#endregion Acquisition PAGE */
  /*#region DEMOS */
  #demo-crm-section-01 .section-image picture,
  #demo-crm-section-03 .section-image picture {
    max-width: calc(100% - 48px);
  }
  #demo-site-section-01 .section-image picture,
  #demo-site-section-02 .section-image picture,
  #demo-site-section-03 .section-image picture {
    max-width: calc(100% - 48px);
  }
  .section-img-layer .section-img-layer-content {
    padding: 0 24px;
  }
  /*#endregion DEMOS*/
  /*#region Webinars */
  #webinars-hero .section-image picture {
    max-width: calc(100% - 48px);
  }
  /*#endregion Webinars */
  /*#region Workshops e Formação */
  #workshops-hero .section-image picture {
    max-width: calc(100% - 48px);
  }
  /*#endregion Workshops e Formação */
}
@media screen and (max-width: 480px) {
  .cards-list.counter-text,
  .cards-list.check-mark {
    padding: 48px 0;
  }
  .section-video .video-content {
    max-width: 100%;
  }
  .section-site-list .site-list-header .site-list-search {
    width: 100%;
  }
  /*#region REAL ESTATE WEBSITE PAGE */
  #site-hero .section-image picture,
  #site-custom .section-image picture {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
  .site-template-swiper .swiper-button-prev,
  .site-template-swiper .swiper-button-next {
    display: none;
  }
  /*#endregion REAL ESTATE WEBSITE PAGE */
  /*#region REAL ESTATE WEBSITE PREMIUM PAGE */
  #site-premium-highlight .section-image {
    padding: 0;
  }
  #site-premium-highlight .section-image picture {
    max-width: 100%;
  }
  /*#endregion REAL ESTATE WEBSITE PREMIUM PAGE */
  /*#region REAL ESTATE WEBSITE CUSTOM PAGE */
  #custom-site-highlight .section-image {
    padding: 0;
  }
  /*#endregion REAL ESTATE WEBSITE CUSTOM PAGE */
  /*#region CASASAPO PAGE */
  /*#endregion CASASAPO PAGE */
  /*#region MKT DIGITAL PAGE */
  #mkt-digital-hero .section-image picture,
  #mkt-campaign .section-image picture {
    max-width: 100%;
  }
  /*#endregion MKT DIGITAL PAGE */
  /*#region PLANS PAGE */
  .pricing-table .pricing-item .big-btn {
    max-width: calc(100% - 48px);
  }
  /*#endregion PLANS PAGE */
  /*#region Acquisition PAGE */
  #acquisition-screen,
  #routes-screen,
  #market-evolution-screen,
  #market-analysis-screen,
  #integration-screen {
    gap: 40px;
  }
  #acquisition-screen .section-text,
  #routes-screen .section-text,
  #market-evolution-screen .section-text,
  #market-analysis-screen .section-text,
  #integration-screen .section-text {
    width: auto;
  }
  #acquisition-screen .section-image,
  #routes-screen .section-image,
  #market-evolution-screen .section-image,
  #market-analysis-screen .section-image,
  #integration-screen .section-image {
    flex: 0 0 100%;
  }
  #acquisition-screen .section-image picture::after,
  #routes-screen .section-image picture::after,
  #market-evolution-screen .section-image picture::after,
  #market-analysis-screen .section-image picture::after,
  #integration-screen .section-image picture::after {
    height: 100%;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  #acquisition-color {
    padding: 24px;
  }
  #acquisition-color .section-text {
    padding: 48px 0;
  }
  #acquisition-color .section-text h2 {
    padding: 40px;
    font-size: 24px;
    line-height: 32px;
  }
  #acquisition-color .section-text span {
    padding: 24px;
  }
  #acquisition-punchline h3,
  #acquisition-hero-text h3 {
    margin-bottom: 48px;
  }
  #acquisition-punchline h3 img,
  #acquisition-hero-text h3 img {
    max-width: 180px;
    height: auto;
  }
  #acquisition-screen .section-image picture,
  #routes-screen .section-image picture,
  #market-evolution-screen .section-image picture,
  #market-analysis-screen .section-image picture,
  #integration-screen .section-image picture {
    max-width: 100%;
  }
  /*#endregion Acquisition PAGE */
  /*#region DEMOS */
  #demo-crm-section-01 .section-image picture,
  #demo-crm-section-03 .section-image picture {
    max-width: 100%;
  }
  #demo-site-section-01 .section-image picture,
  #demo-site-section-02 .section-image picture,
  #demo-site-section-03 .section-image picture {
    max-width: 100%;
  }
  /*#endregion DEMOS */
  /*#region Workshops e Formação */
  #workshops-hero .section-image picture {
    max-width: 100%;
  }
  /*#endregion Workshops e Formação */
}
/*#endregion Responsive */
