@charset "UTF-8";
/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800;900&family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --primary: #FFB800;
  --dark-bg: #000000;
  --darker-bg: #1A1A1A;
  --gray-bg: #262626;
  --text-light: #ffffff;
  --text-dark: #000000;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

body {
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  width: 10px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #F0F0F0;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #211916;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid #211916;
  /* creates padding around scroll thumb */
}

.cd-top.cd-is-visible {
  background-color: rgb(213, 153, 44) !important;
  background-image: url("../img/icones/icon-up.svg") !important;
  bottom: 150px;
}

/* Grid Containers */
.container {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0px 15px;
}

@media (max-width: 1200px) {
  .container {
    width: auto;
  }
}

@media (max-width: 479px) {
  .container {
    padding: 0px 0px;
  }
}

/* Grid Containers */
.container-medio {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 15px;
}

@media (max-width: 1200px) {
  .container-medio {
    width: auto;
  }
}

@media (max-width: 479px) {
  .container-medio {
    padding: 0px 0px;
  }
}

.container-fluid {
  width: 100%;
  padding: 0px 15px;
}

.pt {
  padding-top: 0 !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pb {
  padding-bottom: 0 !important;
}

.mb {
  margin-bottom: 0 !important;
}

.mt {
  margin-top: 0 !important;
}

a h6 {
  color: var(--gray-scale-03);
}

.alm-listing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4rem 3.2rem;
  margin-bottom: 8rem;
}

@media (max-width: 1150px) {
  .alm-listing {
    grid-gap: 2rem;
    margin-bottom: 4rem;
  }
}

/* Gutenberg */
.wp-block-separator {
  padding-top: 30px;
  border: none;
  border-bottom: 1px solid var(--gray-scale-04);
  margin: 1em auto;
  margin-bottom: 30px;
}

.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wp-block-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Add vertical breathing room to the full row of columns. */
.wp-block-columns {
  margin: 20px 0;
}

/* Add horiztonal breathing room between individual columns. */
.wp-block-column {
  margin: 0 20px;
}

@media (max-width: 478px) {
  .wp-block-columns.has-3-columns {
    display: block;
  }

  .wp-block-column {
    margin: 20px 0;
  }
}

@media screen and (max-width: 764px) {
  .wp-block-columns.has-3-columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .has-3-columns .wp-block-column:first-child {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 764px) {
  .wp-block-columns.has-3-columns {
    display: block;
  }
}

@media only screen and (min-width: 1140px) {

  .alignfull,
  .alignwide {
    margin-bottom: 2em;
  }

  .alignwide {
    width: 75vw;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .alignfull {
    width: 100vw;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .blog .alignfull {
    margin-left: 0;
    width: 100%;
    -webkit-transform: initial;
    transform: initial;
  }
}

figure.wp-block-gallery.has-nested-images {
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Media captions */
.wp-block-embed__wrapper {
  position: relative;
}

.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
}

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.wp-block-embed iframe {
  max-width: 100%;
}

.wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.aligncenter {
  clear: both;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wp-block-embed {
  overflow-wrap: break-word;
}

@media only screen and (min-width: 822px) {
  :root {
    --responsive--aligndefault-width: min(calc(100vw - 8* var(--global--spacing-horizontal)), 610px);
    --responsive--alignwide-width: min(calc(100vw - 8* var(--global--spacing-horizontal)), 1240px);
  }
}

.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator) {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

body {
  position: relative;
}

.pading {
  padding: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.montserrat {
  font-family: "Montserrat", sans-serif;
}

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

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

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

.btn-primary-custom {
  background-color: var(--primary);
  color: #000;
  font-weight: 700;
  border-radius: 5px;
  padding: 12px 30px;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-primary-custom:hover {
  background-color: #e6a600;
  color: #000;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar a {
  color: var(--text-dark);
  text-decoration: none;
}

.top-bar .social-icons a {
  margin-left: 15px;
  font-size: 1rem;
}

/* Navbar */
.navbar {
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: var(--text-light) !important;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
}

.hero-section .swiper-slide {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #111 url("layout-img/bg-city-sao-paulo.jpg") center/cover no-repeat;
}

.hero-section .swiper-pagination-bullet {
  background: var(--text-light);
  opacity: 0.5;
}

.hero-section .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  width: 50px;
  height: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  /* Seta branca */
  background-color: rgba(255, 184, 0, 0.4);
  /* Amarelo com opacidade */
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
  background-color: var(--primary);
  /* Amarelo sólido no hover */
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-section .swiper-button-prev {
  left: 0;
}

.hero-section .swiper-button-next {
  right: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 150px;
  /* Space for feature overlap */
}

.hero-title {
  font-size: 4.5rem;
  /* Larger */
  font-weight: 900;
  /* Bolder */
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  /* Thinner */
  margin-bottom: 10px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 130%;
  margin-left: -15%;
  -webkit-filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
}

/* Features Cards */
.features-section {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  /* Overlap hero */
}

.feature-card {
  padding: 50px 30px;
  border-radius: 0;
  text-align: center;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.feature-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.feature-card.dark {
  background-color: var(--darker-bg);
  color: var(--text-light);
}

.feature-card.yellow {
  background-color: var(--primary);
  color: var(--text-dark);
}

.feature-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

.feature-icon-img {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Quem Somos Section */
.quem-somos-section {
  background: var(--primary);
  /* Or yellow background image */
  background-image: url("../img/bg-aluguel-de-motos.jpg");
  background-position: center;
  background-size: cover;
  color: var(--text-dark);
  padding: 30px 0;
}

.quem-somos-img-wrapper img {
  width: 100%;
}

.quem-somos-content h4 {
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.quem-somos-content h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.quem-somos-content p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  background: var(--dark-bg);
  background-image: url("../img/bg-contato.jpg");
  background-position: center;
  background-size: cover;
  padding: 100px 0 0 0;
}

.contact-header h4 {
  color: var(--primary);
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 0px;
  line-height: 1.1;
}

.contact-form {
  background: transparent;
  padding-bottom: 80px;
}

.contact-form .form-control {
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.contact-form .btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 5px;
}

.contact-image-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}

/* Footer */
.footer {
  background-color: var(--gray-bg);
  padding: 70px 0 20px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer h5 {
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul.contact-info li {
  margin-bottom: 18px;
  line-height: 1.5;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

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

.social-footer a {
  color: var(--primary);
  font-size: 1.3rem;
  margin-right: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-image-wrapper img {
    max-width: 120%;
    margin-left: -10%;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-image img {
    max-width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .features-section {
    margin-top: 30px;
  }

  .contact-image-wrapper img {
    max-width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .quem-somos-content h2 {
    font-size: 2.2rem;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }

  .top-bar {
    text-align: center;
  }

  .top-bar .social-icons {
    margin-top: 10px;
  }
}

/* Animação de rotação */

/* ============================================
   PAGE MOTOS — NOSSOS MODELOS
   ============================================ */

/* ---- Header Banner ---- */
.page-motos-header {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-motos-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-motos-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-motos-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.page-motos-header__content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  padding-top: 120px;
}

.page-motos-header__subtitle {
  display: block;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-motos-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: none;
}

@media (max-width: 768px) {
  .page-motos-header__title {
    font-size: 2rem;
  }

  .page-motos-header {
    min-height: 240px;
  }
}

/* ---- Slider Section ---- */
.page-motos-slider {
  position: relative;
  background-color: #0a0a0a;
  padding: 0 0 80px;
  overflow: hidden;
}

.page-motos-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-motos-slider__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.motoSwiper {
  position: relative;
  z-index: 1;
  padding-bottom: 60px !important;
}

/* ---- Slide Item ---- */
.moto-slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 60px;
}

.moto-slide-image {
  width: 100%;
  max-width: 480px;
  position: relative;
  margin-bottom: 10px;
  padding-top: 40px;
}

.moto-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 390px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.swiper-slide-active .moto-img {
  transform: scale(1.03);
}

.moto-slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
  text-transform: none;
}

/* ---- Moto Card (specs box) ---- */
.moto-slide-card {
  width: 100%;
  border: 1px dashed rgba(255, 184, 0, 0.45);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 28px;
  text-align: center;
}

.moto-slide-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.moto-spec {
  margin-bottom: 16px;
}

.moto-spec__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.moto-spec p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* ---- Reserve Button ---- */
.moto-slide-btn {
  display: block;
  width: 100%;
  max-width: 340px;
  background-color: var(--primary);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}

.moto-slide-btn:hover {
  background-color: #e6a600;
  color: #000;
  transform: translateY(-2px);
}

/* ---- Swiper Navigation ---- */
.moto-swiper-prev,
.moto-swiper-next {
  width: 48px !important;
  height: 48px !important;
  border: 2px solid var(--primary) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--primary) !important;
  font-size: 1.2rem !important;
  font-weight: 700;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  top: 220px !important;
  margin-top: 0 !important;
}

.moto-swiper-prev::after,
.moto-swiper-next::after {
  display: none !important;
}

.moto-swiper-prev {
  left: 10px !important;
}

.moto-swiper-next {
  right: 10px !important;
}

.moto-swiper-prev:hover,
.moto-swiper-next:hover {
  background: var(--primary) !important;
  color: #000 !important;
}

/* ---- Swiper Pagination ---- */
.moto-swiper-pagination {
  bottom: 20px !important;
}

.moto-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  width: 8px;
  height: 8px;
}

.moto-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

@media (max-width: 768px) {
  .moto-slide-item {
    padding: 0 20px;
  }

  .moto-slide-title {
    font-size: 1.4rem;
  }

  .moto-swiper-prev {
    left: 5px !important;
  }

  .moto-swiper-next {
    right: 5px !important;
  }

  .moto-swiper-prev,
  .moto-swiper-next {
    width: 38px !important;
    height: 38px !important;
    top: 160px !important;
  }
}

/* ---- CTA Section ---- */
.page-motos-cta {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-motos-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-motos-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 0px;
}

.page-motos-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: none;
}

.page-motos-cta__text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #222;
  max-width: 722px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-motos-cta__btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-motos-cta__btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .page-motos-cta__title {
    font-size: 1.6rem;
  }
}