/* Banner Section */
#billboard {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  background-image: url(./images/bg-footer.jpg);
}

#billboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
}

.banner-swiper {
  position: relative;
  z-index: 2;
}

.banner-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.banner-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content h6 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-content .info li {
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-slide {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

:root {
  --primary-color: #F2B821;
  --secondary-color: #000000;
  --black-color: #292929;
  --light-black-color: #343536;
  --dark-color: #313131;
  --body-color: #5A5A5A;
  --gray-color: #777F81;
  --light-color: #fdfdfd;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

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

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}


/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 6em;
    padding-bottom: 6em;
  }
  .service-block .col-lg-9 {
    background: rgb(0 0 0) !important;
  }
  section#sobre {
    padding-top: 30px;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.project-content.bg-black img,.project-content.bg-black video {
  width: 100%;
  height: 595px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Estilos dos botões de controle do vídeo */
.video-play-button,
.video-pause-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.8;
}

.video-play-button:hover,
.video-pause-button:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-project {
  cursor: pointer;
}

.video-project:hover .video-play-button,
.video-project:hover .video-pause-button {
  opacity: 1;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}

.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}

#catalogo-materiais .material-item {
  padding: 15px;
  transition: transform 0.2s ease-in-out;
}

#catalogo-materiais .material-item:hover {
  transform: translateY(-5px);
}

.service-bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-bg .overlay {
  z-index: 1;
}

.service-content {
  z-index: 2;
  padding: 60px 0;
  max-width: 90%;
}

#catalogo-materiais .material-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.project-content.bg-black img {
  width: 595px;
  height: 595px;
  object-fit: cover;
  object-position: center;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}

.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}

#catalogo-materiais .material-item {
  padding: 15px;
  transition: transform 0.2s ease-in-out;
}

#catalogo-materiais .material-item:hover {
  transform: translateY(-5px);
}

.service-bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-bg .overlay {
  z-index: 1;
}

.service-content {
  z-index: 2;
  padding: 60px 0;
  max-width: 90%;
}

#catalogo-materiais .material-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

#catalogo-materiais .material-item h5 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--dark-color);
}

#nossos-servicos {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #000000;
}
section#nossos-servicos .section-header h6, section#nossos-servicos .section-header h2 {
    color: #fff !important;
}
#nossos-servicos .section-header p {
  font-size: 1.1em;
  line-height: 1.7;
}

#nossos-servicos .service-item {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease-in-out;
}

#nossos-servicos .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary-color);
}

#nossos-servicos .service-icon img {
  filter: invert(30%) sepia(20%) saturate(1000%) hue-rotate(10deg) brightness(80%) contrast(90%);
}

#nossos-servicos .service-item h4 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--dark-color);
}

#nossos-servicos .service-item p {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-color);
}

#nossos-servicos .service-icon img {
  width: 70px;
  height: 70px;
}

section#catalogo-materiais {
    background: #e7e7e7;
}

/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}

header .navbar-brand .logo {
  width: 100%;
  height: 86px;
  object-position: center;
  object-fit: contain;
  transform: scale(1.5);
}

section#sobre img.img-fluid.shadow-lg {
  max-height: 450px;
  margin-left: auto;
  display: block;
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}


footer#footer {
  background-color: #000000;
  background-image: url(./images/bg-footer.jpg);
}

/* Footer Logo - Smaller and White */
footer#footer .logo {
  filter: brightness(0) invert(1);
  max-width: 120px;
  transition: all 0.3s ease;
}

footer#footer .logo:hover {
  transform: scale(1.05);
}

/* Footer Contact Icons Styling */
footer#footer .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1rem;
}

footer#footer .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

footer#footer .contact-icon i {
  color: var(--primary-color);
  font-size: 1rem;
}

footer#footer .contact-item:hover .contact-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

footer#footer .contact-item:hover .contact-icon i {
  color: #ffffff;
}

footer#footer .contact-details {
  flex: 1;
}

footer#footer .contact-details p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

footer#footer .contact-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

footer#footer .contact-link:hover {
  color: var(--primary-color);
}

/* Banner Navigation Fix - Remove Duplicate Arrows */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: scale(1.1) !important;
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

/* Banner Pagination Fix */
.banner-swiper .swiper-pagination {
  bottom: 30px !important;
  z-index: 10 !important;
}

.banner-swiper .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 2px solid var(--primary-color) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.banner-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  transform: scale(1.2) !important;
}

/* Hide Global Swiper Blue Arrows - Keep Only Banner Orange Arrows */
.swiper-button-next:not(.banner-swiper .swiper-button-next),
.swiper-button-prev:not(.banner-swiper .swiper-button-prev) {
  display: none !important;
}

/* Alternative: Hide all swiper arrows except banner */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  display: flex !important;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

@media only screen and (min-width: 990px) {
  header nav ul li.nav-item.px-3.py-1.py-lg-0 {
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 990px) {
  a.nav-link {
    font-size: 1.5rem;
  }
  div#bdNavbar.show li {
    margin-bottom: 14px;
    transition: 0.5s;
  }
  section#sobre img.img-fluid.shadow-lg {
    margin-right: auto;
    margin-left: auto;
  }
  a.nav-link.active::after,
  a.nav-link:focus::after,
  a.nav-link:hover::after {
    width: 0%;
  }

  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--primary-color) !important;
  }
  footer .logo{
    margin: auto;
    max-width: 195px !important;
    display: block;
}
}


/* 4.2 Brand Section
/*----------------------------------------------*/
img.brand-image {
  filter: contrast(0);
  transition: all 0.3s ease-in;
}

img.brand-image:hover {
  filter: contrast(1);
}


/* 4.3 About Section 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}



/* 4.4 Services Section
/*----------------------------------------------*/
/* Jarallax */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


/* 4.5 Project Section
/*----------------------------------------------*/


.project-content .portfolio-img {
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-img {
  opacity: 0.3;
}

.portfolio-description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-description {
  opacity: 1;
}



/* 4.6 CTA Section
/*----------------------------------------------*/
.border-dotted {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}


.material-image {
  overflow: hidden;
  height: 330px;
  margin-bottom: 26px;
  border-radius: 5px;
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.material-info h4.material-title {
  font-size: 1.2rem;
}

a.whatsapp-float {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  background: #000000;
  padding: 10px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/


/* 5.1 Projects Page
/*----------------------------------------------*/

button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}

.service-block .col-lg-9 {
  background: rgb(0 0 0 / 61%);
  padding: 40px;
  border-radius: 7px;
}
footer#footer * {
  color: #f1f1f1;
}
img.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  transition: 0.5s ease-out;
}
/*--------------------------------------------------------------
 5.2 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--secondary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}

footer#footer * {
    color: #f1f1f1;
}
/*--------------------------------------------------------------
 5.3 Reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}
section#nossos-servicos .row.row-cols-1.row-cols-md-2.row-cols-lg-3.g-4 {
    justify-content: center;
}
form button.btn.btn-primary.btn-slide.hover-slide-right.mt-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

footer .social-icons {
    display: flex;
    gap: 10px;
}

/* Estilos da paginação dos materiais */
.materials-pagination {
  position: relative !important;
  margin-top: 30px !important;
  text-align: center;
}

.materials-pagination .swiper-pagination-bullet, .project-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.materials-pagination .swiper-pagination-bullet-active, .project-swiper .swiper-pagination-bullet-active {
  background: var(--dark-color);
  transform: scale(1.2);
}

.materials-pagination .swiper-pagination-bullet:hover, .project-swiper .swiper-pagination-bullet:hover {
  background: var(--dark-color);
  transform: scale(1.1);
}

/* Materials Responsive adjustments */
@media (max-width: 768px) {
  .materials-swiper-container {
    padding: 0 30px;
  }
  section#sobre .imageblock.position-relative {
    margin-bottom: 40px;
}
  .material-card {
    min-height: 280px;
  }
  .footer-social {
    border-top: 1px solid #e7e7e7;
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
}
  .footer-social {
    margin: 50px 0;
    text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
  .materials-swiper-button-next,
  .materials-swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .banner-swiper .swiper-button-next, .banner-swiper .swiper-button-prev {
    display: none !important;
  }
}

/* Nova Timeline Vertical Moderna */
.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(0, 123, 255, 0.2) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.history-step {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.history-step:nth-child(odd) {
  flex-direction: row;
}

.history-step:nth-child(even) {
  flex-direction: row-reverse;
}

.history-year {
  position: relative;
  z-index: 10;
  width: 100px;
  height: 100px;
  background: #484848;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  flex-shrink: 0;
  border: 4px solid white;
}

.history-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin: 0 3rem;
  flex: 1;
  max-width: 450px;
  position: relative;
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.history-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.history-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.history-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.3;
  text-align: center;
}

.history-text {
  color: var(--secondary-color);
  line-height: 1.7;
  margin: 0;
  text-align: center;
  font-size: 14px;
}
section#depoimentos {
  padding-top: 0;
}
p.testimonial-text.mb-3 {
  font-size: 14px;
  line-height: 140%;
  padding-bottom: 30px;
}

/* Responsive para a nova timeline */
@media (max-width: 768px) {
  .history-timeline::before {
    left: 30px;
  }
  .about-content .row.g-3.mb-4 .col-6 {
    width: 100% !important;
  }
  .about-content .d-flex.align-items-center a {
    font-size: 14px;
    width: 100%;
  }
  .history-step {
    flex-direction: row !important;
    margin-left: 30px;
  }
  
  .history-year {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
    margin-right: 1.5rem;
  }
  
  .history-content {
    margin: 0;
    max-width: none;
    margin-right: 15px;
    padding: 1rem;
  }
  
  .history-icon {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .history-title {
    font-size: 1rem;
    margin: 1.2rem 0 0.8rem 0;
  }
}