/*

Theme Name: CAFEPRINTER
Theme URI: https://cafeprinter.com.br
Author: RODRIGO NICHE
Author URI: https://consultoriaemmarketing.com.br/
Version: 1.0
Text Domain: CP Consultoria

*/

body,
html,
* {
  font-family: "Archivo", sans-serif;
  font-style: normal;
}

#smooth-content {
  will-change: transform;
}

.pt-50 {
  padding-top: 5em;
}

.py-50 {
  padding-top: 5em;
  padding-bottom: 5em;
}

.pb-50 {
  padding-bottom: 5em;
}

.py-100 {
  padding-top: 10em;
  padding-bottom: 10em;
}

.pt-100 {
  padding-top: 10em;
}

.pb-100 {
  padding-bottom: 10em;
}

.px-100 {
  padding-left: 10em;
  padding-right: 10em;
}

.py-150 {
  padding-top: 15em;
  padding-bottom: 15em;
}

.pt-150 {
  padding-top: 15em;
}

.pt-200 {
  padding-top: 20em !important;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --h1: 2.5rem;
  --h2: 3.65rem;
  --h3: 2.75rem;
  --h4: 1.5rem;
  --h5: 1.25rem;
  --p: 1.2rem;
  --black: #232630;
  --red: #d71321;
  --strong-grad: linear-gradient(90deg, #d21f29 0%, #fda528 100%);
  --yellow: #fda528;
  --gray: #f4f6f6;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1;
}

h1 {
  font-size: var(--h1);
  margin-bottom: 1rem;
}

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

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

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

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

p {
  font-size: var(--p);
  font-weight: 400;
  line-height: 1.25;
}

b,
strong {
  font-size: inherit;
  font-weight: 500;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.5em 1.75em;
  border-radius: 50em;
  font-weight: 700;
  font-size: calc(var(--p) / 0.15rem);
  border: 3px solid;
  gap: 0.5em;
  cursor: pointer;
  align-items: center;
  background: transparent;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn:hover {
  padding: 0.5em 2em;
  border-color: inherit;
  color: initial;
  background: transparent;
  border: 3px solid;
  opacity: 0.6;
}

.btn-white,
.btn-white:hover {
  color: white;
  border-color: white;
}

.btn-whatsapp-white,
.btn-whatsapp-white:hover {
  color: white;
  border: none;
  background: var(--strong-grad);
}

.btn-whatsapp-white:after,
.services-slider .slide-content .btn-whatsapp::after {
  content: "";
  width: 1.15em;
  height: 1.15em;
  background: url(assets/img/icons/ic-whatsapp-white.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 0.25em;
}

.btn-whatsapp-white.no-icon:after,
.services-slider .slide-content .btn-whatsapp.no-icon::after,
.btn-whatsapp-solid.no-icon:after {
  content: none;
}

.btn-whatsapp-black,
.btn-whatsapp-black:hover {
  border-color: var(--red);
}

.btn-whatsapp-black::after,
#clientes .btn-whatsapp::after {
  content: "";
  width: 1.15em;
  height: 1.15em;
  background: url(assets/img/icons/ic-whatsapp-black.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 0.25em;
}

.btn-whatsapp-solid,
.btn-whatsapp-solid:hover {
  height: 4em;
  background: var(--strong-grad);
  border: 0;
  color: white;
}

.btn-whatsapp-solid:after {
  content: "";
  width: 1.15em;
  height: 1.15em;
  background: url(assets/img/icons/ic-whatsapp-white.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 0.25em;
}

#glambot .btn-whatsapp-white,
#glambot .btn-whatsapp-white:hover {
  border-color: var(--yellow);
}

/* HEADER */

#header-container {
  position: fixed;
  top: 2em;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#header-container nav {
  background: white;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1);
  width: fit-content;
  height: auto;
  display: flex;
  gap: 2.5em;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0.5em;
  margin: 0 auto;
  border-radius: 50em;
  position: relative;
}

.logo-nav {
  width: 8em;
  height: 4em;
  background: var(--gray);
  padding: 0.25em;
  border-radius: 50em;
}

.logo-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header-container nav > ul {
  display: flex;
  gap: 1.5em;
}

#header-container nav ul li {
  font-size: calc(var(--p) + 0.01rem);
  transition: all 0.3s ease;
}

#header-container nav ul > li:hover {
  padding: 0 0.25em;
  color: var(--red);
}

#header-container nav ul li ul li {
  color: var(--black);
}

#header-container nav ul li ul li:hover {
  padding: 0 0.25em;
  color: var(--red);
}

.navbar-toggle {
  display: none;
}

#header-container .menu-servicos-container {
  display: none;
}

#header-container .menu-servicos-container.active {
  display: block;
  position: absolute;
  top: 4em;
  left: 0;
  width: 100%;
  padding-top: 1em;
}

#header-container .menu-servicos-container.active ul {
  display: grid;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1);
  border-radius: 0.75em;
  padding: 1.5em;
}

#header-container .menu-servicos-container.active ul li {
  font-size: calc(var(--p) / 1.15);
  transition: all 0.3s ease;
}

/* BANNER */

.banner-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-img-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.banner-slider-container .banner-home-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
  object-position: center center;
}

.banner-slider-container .banner-content {
  position: relative;
  z-index: 1;
}

.banner-slider-container .banner-content h1,
.banner-intern .banner-content h1 {
  font-size: calc(var(--h1) * 1.65);
  color: white;
}

.banner-slider-container .banner-content strong,
.banner-intern .banner-content strong {
  background: var(--strong-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-slider-container .banner-content p,
.banner-intern .banner-content p {
  color: white;
}

.banner-slider-container .banner-content p:last-of-type,
.banner-intern .banner-content p:last-of-type {
  margin-bottom: 3em;
}

.banner-slider-container .banner-content .btn + .btn {
  margin-left: 1em;
}
.banner-slider-container .slide-content-inner {
  padding-top: 16em;
  padding-bottom: 10em;
}

/* SOBRE */

.about-home-section {
  position: relative;
  overflow: hidden;
}

.about-home-section .gallery-container {
  position: absolute;
  width: 21%;
  height: auto;
  z-index: 0;
}

.about-home-section .gallery-left {
  left: 0;
  top: 0;
}

.about-home-section .gallery-right {
  right: 0;
  bottom: 0;
}

.about-home-section .gallery-container .gallery-item {
  width: 100%;
  height: auto;
  padding: 0.15em 0;
}

.about-home-section .gallery-container .gallery-item img {
  width: 100%;
  height: 14em;
  object-fit: cover;
}

.about-home-section h2 strong {
  font-weight: 600;
  color: var(--red);
}

.about-home-section .line {
  width: 90%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin: 3em auto;
}

.about-home-section p {
  font-size: calc(var(--p) / 1.05);
}

.about-home-section p strong {
  font-weight: 700;
}

.about-home-section p:last-of-type {
  margin-bottom: 1.5em;
}

.about-home-section .btn + .btn,
#glambot .btn + .btn {
  margin-left: 0.75em;
}

/* GLAMBOT */

#glambot {
  background: url(assets/img/elements/el-glambot-bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.gradient-glambot {
  background: linear-gradient(315deg, #d21f29 35%, #fda528 100%);
  border-radius: 2em;
  padding: 3em;
}

.gradient-glambot h2 {
  font-size: calc(var(--h1) * 1.75);
  color: white;
}

.gradient-glambot p {
  font-size: calc(var(--p) / 1.25);
  color: white;
}

.gradient-glambot p:last-of-type {
  margin-bottom: 3em;
}

.glambot-slider {
  position: relative;
  width: 100%;
  margin-right: 3em;
  height: 9em;
  margin-top: 2em;
  overflow: hidden;
}

.glambot-slider .swiper-slide {
  overflow: hidden;
  border-radius: 0.5em;
}

.glambot-slider .swiper-pagination {
  left: inherit;
  right: -3em;
  bottom: inherit;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  justify-content: center;
}
/* CLIENTES */

#clientes {
}

#clientes h2 {
  display: inline-block;
}

#clientes .btn {
  margin-left: auto;
  border-color: var(--red);
  height: fit-content;
}

/* DEPOIMENTOS */

#depoimentos {
  background: var(--yellow);
  color: white;
}

.buttons-container {
  position: absolute;
  bottom: 5em;
  right: 8.33333333%;
  display: flex;
  width: 8em;
  height: 3em;
  border: 2px solid white;
  border-radius: 0.45em;
  z-index: 2;
  align-items: center;
}

.buttons-container .swiper-button-prev,
.buttons-container .swiper-button-next {
  position: relative;
  width: 4em;
  height: 3em;
  left: 0;
  right: 0;
  margin: 0 !important;
  top: 0;
}

.buttons-container .swiper-button-prev:after,
.buttons-container .swiper-button-next:after {
  content: "";
  width: 35%;
  height: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(assets/img/icons/ic-arrow-white.svg) no-repeat;
  background-size: contain;
  background-position: center center;
}

.buttons-container .swiper-button-prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

#servicos {
  overflow: hidden;
}

.services-slider {
  position: relative;
  padding-top: 3em;
}

.services-slider .buttons-container .swiper-button-prev:after,
.services-slider .buttons-container .swiper-button-next:after {
  background: url(assets/img/icons/ic-arrow-black.svg) no-repeat;
}

.services-slider .buttons-container {
  top: -3em;
  border-color: black;
}

.services-slider .swiper-slide {
  background: var(--gray);
  color: white;
  padding: 3em;
  border-radius: 1em;
  transition: all 0.3s ease;
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
  opacity: 0.2;
  overflow: hidden;
}

.services-slider .swiper-slide .slide-pics {
  display: flex;
  justify-content: center;
  position: relative;
  width: 50%;
  height: 100%;
}

.services-slider .swiper-slide .slide-pics img {
  width: 22em;
  height: 22em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  object-fit: cover;
}

.services-slider .swiper-slide .slide-pics img:nth-child(1),
.services-slider .swiper-slide .slide-pics img:nth-child(3) {
  z-index: 0;
  opacity: 0.6;
  transform: translateY(-50%) scale(0.75);
}

.services-slider .swiper-slide .slide-pics img:nth-child(1) {
  left: 0;
}

.services-slider .swiper-slide .slide-pics img:nth-child(3) {
  right: 0;
}

.services-slider .swiper-slide .slide-pics img:nth-child(2) {
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.slider-bg {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--gray);
  z-index: -1;
  background-position: center center;
  background-size: cover;
  mask: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
}

.services-slider .swiper-slide-active {
  background: var(--red);
  opacity: 1;
}

.services-slider .slide-content {
  width: 45%;
  padding: 5em 0;
}

.services-slider .slide-content h5 {
  padding-top: 0.25em;
  padding-bottom: 1.5em;
}

.services-slider .slide-content p {
  font-size: calc(var(--p) / 1.25);
}

.services-slider .slide-content p:last-of-type {
  margin-bottom: 1.5em;
}

.services-slider .slide-content .btn-whatsapp {
  background: var(--yellow);
  border: none;
  color: white;
}

.services-slider .slide-content .btn + .btn {
  margin-left: 0.75em;
}

#clientes {
  overflow: hidden;
}

.ic-quote {
  width: 6em;
  margin-bottom: 1em;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-slider h3 {
  font-size: calc(var(--h3) / 1.95);
}

.testimonial-slider p {
  font-size: calc(var(--p) * 1.3);
  margin-bottom: 1.5em;
}

.testimonial-slider .buttons-container {
  position: relative;
  bottom: 0;
  right: 0;
  margin-top: 3em;
}

.border-right {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-section {
  padding: 8em 0;
  position: relative;
}

.bg-container {
  width: 100%;
  height: 100%;
  background: url(assets/img/elements/el-cta-bg.jpg) no-repeat;
  background-size: 60% cover;
  background-position: center right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg-container::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(30, 30, 30) 60%,
    rgba(30, 30, 30, 0) 100%
  );
  top: 0;
  left: 0;
  z-index: 0;
}

.cta-section h2 {
  font-size: calc(var(--h1) * 1.15);
  margin-bottom: 1em;
  color: white;
}

.cta-section h2 strong {
  background: var(--strong-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section p {
  width: 60%;
  color: white;
}

.cta-section p:last-of-type {
  margin-bottom: 2em;
}

footer {
  padding: 5em 0;
}

footer .logo-footer {
  width: 8em;
  display: block;
}

footer h5 {
  font-weight: 500;
}

footer .line {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.footer-bar {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  padding-top: 3em;
}

.social-container {
  display: flex;
  gap: 1em;
  align-items: center;
}

.social-container h5,
.footer-bar p {
  font-size: calc(var(--p) / 1.25);
}

.social-container ul {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.social-container img {
  width: 1.75em;
  height: 1.75em;
}

.col-footer .line {
  margin: 1.5em 0;
}

.col-footer.col-footer-services ul {
  column-count: 3;
}

.col-footer li {
  margin-bottom: 1em;
}

.col-footer li a {
  transition: all 0.3s ease;
}

.col-footer li a:hover {
  color: var(--red);
}

.banner-intern {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-intern .banner-content {
  position: relative;
  z-index: 1;
  padding: 15em 0;
}

.banner-intern .banner-home-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
  object-position: center center;
}

.about-intern-section {
  position: relative;
  z-index: 1;
}

.about-intern-section img,
.function-section img {
  width: 100%;
  max-width: 480px;
  height: 100%;
  max-height: 660px;
  object-fit: cover;
  aspect-ratio: 9 / 12;
  box-shadow: 0em 0em 1.5em rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.about-intern-section #ytvideosplayer {
  width: 100%;
  height: 48em;
  padding: 3em;
}

.about-intern-section .second-container {
  padding: 5em;
  background: black;
  color: white;
  border-radius: 1.5em;
  position: relative;
  margin-bottom: -5em;
  box-shadow: 0em 0em 1.5em rgba(0, 0, 0, 0.3);
}

.about-intern-section .second-container h2 {
  margin-bottom: 0.75em;
}

.about-intern-section .second-container h2 strong {
  background: var(--strong-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.function-section .card-item p {
  font-size: calc(var(--p) / 1.25);
  line-height: 1.65;
}

.function-section {
  padding: 15em 0;
  background: var(--red);
  color: white;
  position: relative;
  z-index: 0;
}

.function-section .card-item {
  padding: 3em;
  background: white;
  color: black;
  border-radius: 1.25em;
}

.function-section .card-item + .card-item {
  margin-top: 0.5em;
}

.function-section .card-item h4 {
  font-weight: 700;
  position: relative;
}

.function-section .card-item h4::before {
  content: "";
  position: absolute;
  width: 0.75em;
  height: 0.75em;
  background: url(assets/img/icons/ic-arrow-red.svg);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.function-section .card-item h4,
.function-section .card-item p {
  padding-left: 35px;
}

.function-section .section-bg {
  position: absolute;
  width: 70%;
  height: 80%;
  bottom: 0;
  left: 0;
  background-size: cover !important;
  background-position: center center;
  z-index: -1;
  background-repeat: no-repeat;
  box-shadow: inset -5em 5em 5em var(--red);
  mix-blend-mode: multiply;
  opacity: 0.1;
}

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

.bg-red .btn-whatsapp-white {
  background: var(--yellow);
}

.banner-about h1 {
  font-size: calc(var(--h1) * 1.37);
  margin-bottom: 1em;
  font-weight: 600;
}

.banner-about p {
  font-size: calc(var(--p) / 1.15);
  line-height: 1.65;
}

.banner-about p:last-of-type {
  margin-bottom: 2em;
}

.gallery-about-container {
  padding-top: 5px;
}

.gallery-about-container img {
  width: 100%;
  height: 100%;
  max-height: 20em;
  object-fit: cover;
}

.banner-about {
  position: relative;
}

.banner-about .banner-content {
  position: relative;
  z-index: 1;
}

.banner-about .banner-img-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.banner-about .banner-img-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-section h2 {
  margin-bottom: 0.5em;
}

.about-content-section h2 strong {
  color: var(--red);
  font-weight: 700;
}

.about-content-section h3 {
  font-size: calc(var(--h3) / 1.35);
  margin-bottom: 0.5em;
  font-weight: 600;
}

.about-content-section p {
  font-size: calc(var(--p) / 1.15);
  line-height: 1.65;
}

.about-content-section p strong {
  font-weight: 700;
}

.strong-ul-container {
  padding-top: 3em;
}

.strong-ul-container ul {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.strong-ul-container ul li {
  font-size: var(--p);
  font-weight: 600;
  border: 2px solid var(--red);
  padding: 0.75em 1.25em;
  border-radius: 0.75em;
  align-items: center;
  display: flex;
  gap: 0.5em;
}

.strong-ul-container ul li::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background: url(assets/img/icons/ic-arrow-left-red.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}

.form-container {
  margin-bottom: 0.5em;
}

.form-container input {
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid white;
  border-radius: 0.5em;
  margin-bottom: 0.5em;
  background: none;
  color: white;
  font-size: var(--p);
}

.form-container input::placeholder {
  color: white;
}

.form-container textarea {
  font-size: var(--p);
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid white;
  border-radius: 0.5em;
  margin-bottom: 1em;
  background: none;
  color: white;
}

.form-container textarea::placeholder {
  color: white;
}

.form-container .btn.btn-whatsapp {
  background: var(--yellow);
  border: none;
  color: white;
}

.contact-container li {
  margin-bottom: 0.5em;
  transition: all 0.3s ease;
}

.contact-container li:hover {
  padding-left: 0.5em;
}

.contact-container li a {
  font-size: calc(var(--p) * 1.1);
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.contact-container li a::before {
  content: "";
  width: 1em;
  height: 1em;
  background-size: contain;
  display: inline-block;
}

.ic-phone::before {
  background: url(assets/img/icons/ic-phone.svg) no-repeat !important;
}

.ic-email::before {
  background: url(assets/img/icons/ic-mail.svg) no-repeat !important;
}

.ic-address::before {
  background: url(assets/img/icons/ic-location.svg) no-repeat !important;
}

.accordion-flush > .accordion-item {
  border-radius: 0.75em;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.accordion-item {
  border: 0 !important;
}

.accordion-button {
  font-size: calc(var(--p) * 1.05);
  font-family: "Archivo", sans-serif;
  font-weight: 500;
}

.accordion-body {
  font-size: calc(var(--p) / 1.15);
  font-family: "Archivo", sans-serif;
  font-weight: 400;
}

.accordion-button:not(.collapsed) {
  background: white;
  border-bottom: solid 1px #f4f6f6;
}

.banner-effect-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
  z-index: 0;
}

.banner-about .row {
  z-index: 1;
  position: relative;
}

.consumers-slider {
  position: relative;
  padding-top: 3em;
}

.consumers-slider .cliente-item {
  width: 100%;
  height: auto;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consumers-slider .cliente-item img {
  width: 100%;
  height: 5em;
  max-width: 9em;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.consumers-slider .cliente-item:hover img {
  filter: grayscale(0%);
}

.events-slider-container .swiper-slide {
  display: flex;
  place-self: center;
  transition: all 0.3s ease;
}

.events-slider-container .swiper-slide:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 3;
}

.events-slider-container lite-youtube {
  width: 100%;
  height: 100%;
}

.ic-instagram {
  width: 3em;
  height: 3em;
  display: block;
  margin: 0 auto;
  filter: invert(1);
}

.form-thanks {
  min-height: 70vh;
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer-list.contact-container li a {
  font-size: 1rem;
}

.footer-list.contact-container li a::before {
  content: none;
}

.form-orcamento-container label {
  width: 100%;
  margin-top: 0.5em;
}

.form-orcamento-container input {
  border: 2px solid var(--red);
  color: var(--black);
  font-size: var(--p);
  margin-top: 0.5em;
}

.form-orcamento-container input::placeholder {
  color: var(--black);
}

.form-orcamento-container select {
  width: 100%;
  border: 2px solid var(--red);
  color: var(--black);
  font-size: var(--p);
  padding: 0.75em 1em;
  border-radius: 0.5em;
  margin-top: 0.5em;
}

.form-orcamento-container textarea {
  border: 2px solid var(--red);
  color: var(--black);
  border-radius: 0.5em;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.form-orcamento-container textarea::placeholder {
  color: var(--black);
}

.p-small {
  font-size: calc(var(--p) / 1.25);
}

.orcamento-section h2 strong {
  color: var(--red);
  font-weight: 700;
}

.orcamento-section .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
}

.orcamento-section .wpcf7-list-item {
  margin: 0;
}

.orcamento-section .wpcf7-list-item label {
  display: inline-flex;
  gap: 0.5em;
}

.orcamento-section .wpcf7-list-item label input {
  font-size: 1rem;
  width: auto;
  margin: 0;
}


/* ===== MEGA MENU SERVIÇOS ===== */

/* Container do megamenu */
#header-container nav > ul li.menu-item-has-children {
    position: relative;
}

.mega-menu-container {
    position: absolute;
    top: calc(100% + 1.5em);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 1em;
    box-shadow: 0 1.5em 3em rgba(0, 0, 0, 0.15);
    padding: 2.5em;
    min-width: 800px;
    max-width: 950px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

#header-container nav > ul li.menu-item-has-children:hover .mega-menu-container,
#header-container nav > ul li.menu-item-has-children:focus-within .mega-menu-container {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Setinha do megamenu */
.mega-menu-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

/* Grid das categorias */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5em;
}

/* Cada coluna de categoria */
.mega-menu-column {
    min-width: 0;
}

.mega-menu-category-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red, #d71321);
    margin-bottom: 0.75em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--red, #d71321);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lista de serviços */
.mega-menu-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-services-list li {
    margin-bottom: 0.4em;
}

.mega-menu-services-list li a {
    font-size: 0.85rem;
    color: var(--black, #232630);
    transition: all 0.3s ease;
    display: block;
    padding: 0.2em 0;
    line-height: 1.4;
}

.mega-menu-services-list li a:hover {
    color: var(--red, #d71321);
    padding-left: 0.5em;
}

/* Fallback para menu padrão */
.menu-services-fallback {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    padding: 0.5em;
}

.menu-services-fallback li {
    font-size: calc(var(--p, 1.2rem) / 1.15);
}

/* ===== RESPONSIVO ===== */

/* Tablets e telas médias */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .mega-menu-container {
        min-width: 600px;
        max-width: 750px;
        padding: 2em;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5em;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    /* Esconder megamenu no mobile */
    .mega-menu-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: unset;
        max-width: 100%;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        background: transparent;
        transition: none;
    }

    .mega-menu-container::before {
        display: none;
    }

    .mega-menu-container.active {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.5em;
        padding: 1em 0;
    }

    .mega-menu-column {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.5em;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-menu-category-title {
        font-size: 0.9rem;
        margin-bottom: 0.25em;
        padding: 0.5em 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
    }

    .mega-menu-category-title::after {
        content: "+";
        font-size: 1.2rem;
        color: var(--red, #d71321);
        transition: transform 0.3s ease;
        font-weight: 300;
    }

    .mega-menu-category-title.active::after {
        transform: rotate(45deg);
    }

    .mega-menu-services-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 0.5em;
    }

    .mega-menu-services-list.active {
        max-height: 500px;
    }

    .mega-menu-services-list li {
        margin-bottom: 0.3em;
    }

    .mega-menu-services-list li a {
        font-size: 0.9rem;
        padding: 0.3em 0;
    }

    /* Ajuste no menu mobile existente */
    #header-container nav > ul {
        display: none;
    }

    #header-container nav > ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1.5em;
        border-radius: 1em;
        box-shadow: 0 1em 2em rgba(0, 0, 0, 0.1);
        gap: 0.5em;
        z-index: 999;
    }

    #header-container nav > ul.active li {
        padding: 0.5em 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    #header-container nav > ul.active li:last-child {
        border-bottom: none;
    }

    .navbar-toggle {
        display: block !important;
    }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
    .mega-menu-container {
        padding: 0;
    }

    .mega-menu-grid {
        padding: 0.5em 0;
    }

    .mega-menu-category-title {
        font-size: 0.85rem;
    }

    .mega-menu-services-list li a {
        font-size: 0.85rem;
    }
	
/* ===== MEGA MENU SERVIÇOS ===== */

/* Desktop */
.mega-menu-container {
    position: absolute;
    top: calc(100% + 1.5em);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 1em;
    box-shadow: 0 1.5em 3em rgba(0, 0, 0, 0.15);
    padding: 2.5em;
    min-width: 900px;
    max-width: 1100px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

#header-container nav > ul li.menu-item-has-children:hover .mega-menu-container,
#header-container nav > ul li.menu-item-has-children:focus-within .mega-menu-container,
.mega-menu-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Setinha do megamenu */
.mega-menu-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

/* Grid - 5 colunas no desktop */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5em;
    width: 100%;
}

/* Cada coluna */
.mega-menu-column {
    min-width: 0;
}

.mega-menu-category-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red, #d71321);
    margin-bottom: 0.75em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--red, #d71321);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lista de serviços */
.mega-menu-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-services-list li {
    margin-bottom: 0.4em;
}

.mega-menu-services-list li a {
    font-size: 0.85rem;
    color: var(--black, #232630);
    transition: all 0.3s ease;
    display: block;
    padding: 0.2em 0;
    line-height: 1.4;
}

.mega-menu-services-list li a:hover {
    color: var(--red, #d71321);
    padding-left: 0.5em;
}

/* Link "Ver mais" */
.ver-mais {
    margin-top: 0.3em;
    padding-top: 0.3em;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.ver-mais a {
    color: var(--red, #d71321) !important;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.ver-mais a:hover {
    padding-left: 0.5em !important;
    color: var(--red, #d71321) !important;
}

/* Ícone de seta no link Serviços */
#services-btn::after {
    content: "▾";
    font-size: 0.7em;
    margin-left: 0.3em;
    display: inline-block;
    transition: transform 0.3s ease;
}

#services-btn.active::after {
    transform: rotate(180deg);
}

/* ===== RESPONSIVO - TABLET ===== */
@media (min-width: 769px) and (max-width: 1199.98px) {
    .mega-menu-container {
        min-width: 650px;
        max-width: 850px;
        padding: 1.5em;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5em;
    }
    
    .mega-menu-category-title {
        font-size: 0.75rem;
    }
    
    .mega-menu-services-list li a {
        font-size: 0.8rem;
    }
}

/* ===== RESPONSIVO - MOBILE ===== */
@media (max-width: 768px) {
    /* Reset do megamenu */
    .mega-menu-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: unset;
        max-width: 100%;
        padding: 0.5em 0;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        background: transparent;
        transition: none;
        width: 100%;
    }

    .mega-menu-container::before {
        display: none;
    }

    .mega-menu-container.active {
        display: block;
        padding: 0.5em 0;
    }

    /* Grid em coluna única */
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.25em;
        padding: 0;
    }

    /* Cada categoria vira um accordion */
    .mega-menu-column {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    /* Título da categoria - clicável */
    .mega-menu-category-title {
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.75em 0.5em;
        margin: 0;
        border-bottom: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--black, #232630);
        background: transparent;
        transition: all 0.3s ease;
        border-radius: 0.5em;
    }

    .mega-menu-category-title:hover {
        background: rgba(215, 19, 33, 0.05);
    }

    .mega-menu-category-title::after {
        content: "▾";
        font-size: 0.8rem;
        color: var(--red, #d71321);
        transition: transform 0.3s ease;
        font-weight: 300;
        margin-left: 0.5em;
    }

    .mega-menu-category-title.active::after {
        transform: rotate(180deg);
    }

    /* Lista de serviços - escondida por padrão */
    .mega-menu-services-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 0.5em;
        margin: 0;
    }

    .mega-menu-services-list.active {
        max-height: 1000px;
        padding-bottom: 0.75em;
    }

    .mega-menu-services-list li {
        margin-bottom: 0.3em;
        padding: 0.15em 0;
    }

    .mega-menu-services-list li a {
        font-size: 0.85rem;
        padding: 0.3em 0.5em;
        display: block;
        border-radius: 0.3em;
        transition: all 0.2s ease;
    }

    .mega-menu-services-list li a:hover {
        background: rgba(215, 19, 33, 0.08);
        padding-left: 1em;
    }

    /* Link "Ver mais" no mobile */
    .ver-mais {
        padding: 0.3em 0.5em;
        border-top: none;
    }
    
    .ver-mais a {
        font-size: 0.85rem !important;
        display: inline-block;
    }

    /* Menu mobile principal */
    #header-container nav > ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1em 1.5em;
        border-radius: 1em;
        box-shadow: 0 1em 2em rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }

    #header-container nav > ul.active {
        display: flex;
        flex-direction: column;
        gap: 0.25em;
    }

    #header-container nav > ul.active li {
        padding: 0.5em 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    #header-container nav > ul.active li:last-child {
        border-bottom: none;
    }

    #header-container nav > ul.active li a {
        font-size: 1rem;
        padding: 0.3em 0;
        display: block;
    }

    /* Esconder menu antigo de serviços */
    #menu-services {
        display: none !important;
    }

    .navbar-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0.5em;
    }

    /* Botão de orçamento no mobile */
    #header-container nav .btn-whatsapp-solid {
        display: none;
    }
}

/* ===== MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .mega-menu-category-title {
        font-size: 0.85rem;
        padding: 0.6em 0.3em;
    }

    .mega-menu-services-list li a {
        font-size: 0.8rem;
    }
}