@charset "UTF-8";
/* Definição das variáveis globais */
:root {
  --color-primary: #00B3D5;
  --color-secondary: #929191;
  --color-headers: #666666;
  --color-titles: #000000BA;
  --color-text: #666666;
  --color-text-light: #000000BA;
  --color-white: #ffffff;
}

@font-face {
  font-family: "Lato";
  src: url("font/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("font/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("font/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ====== TIPOGRAFIA ====== */
.header1 {
  font-weight: 700;
  font-size: 48px; /* base para mobile */
  line-height: 110%;
  color: var(--color-headers);
}

.header2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 115%;
  color: var(--color-headers);
}

.titulo1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: var(--color-titles);
}

.titulo-sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-titles);
}

.text-default {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-text);
}

.text-light {
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 130% !important;
  color: var(--color-text-light) !important;
}

.text-menu {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: var(--color-primary);
}

body {
  scroll-behavior: smooth;
  font-family: "Lato", Arial, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 9px 34px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 1px 3px 5.3px 1px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.3s ease;
}
.button:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.button-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.button-blue {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Navbar */
#navbar {
  background: var(--color-primary);
  padding-bottom: 0;
  /* Linha de cima */
  /* Linha do meio */
  /* Linha de baixo */
}
#navbar #navbar-logo {
  height: 4rem;
}
#navbar .navbar-toggler {
  border: none;
  background: transparent;
  width: 30px;
  height: 24px;
  position: relative;
}
#navbar .navbar-toggler span,
#navbar .navbar-toggler::before,
#navbar .navbar-toggler::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
#navbar .navbar-toggler::before {
  top: 0;
  transform: none;
}
#navbar .navbar-toggler span {
  top: 50%;
  transform: translateY(-50%);
}
#navbar .navbar-toggler::after {
  bottom: 0;
  transform: none;
}
#navbar.menu-open {
  background-color: #fff;
}
#navbar.menu-open #navbar-logo {
  content: url("img/logos/LOGO-02.svg");
}
#navbar.menu-open .navbar-toggler span,
#navbar.menu-open .navbar-toggler::before,
#navbar.menu-open .navbar-toggler::after {
  background-color: var(--color-primary);
}
#navbar.menu-open .navbar-toggler:not(.collapsed) span {
  opacity: 0;
}
#navbar.menu-open .navbar-toggler:not(.collapsed)::before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
#navbar.menu-open .navbar-toggler:not(.collapsed)::after {
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
  bottom: auto;
}
#navbar .navbar-collapse {
  background: #fff;
  padding-top: 2rem;
}
#navbar .navbar-collapse .container {
  border-top: 1px solid var(--color-primary);
  padding-top: 1rem;
}
#navbar .nav-link {
  color: #333;
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
#navbar .socials {
  display: flex;
  justify-content: flex-end;
  background-color: var(--color-primary);
  gap: 1rem;
}
#navbar .socials a {
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 6px;
  border-radius: 4px;
}
#navbar .socials a img {
  width: auto;
  height: 35px;
}

#hero {
  background: linear-gradient(to bottom, var(--color-primary) 23%, rgba(255, 255, 255, 0) 62%), url("img/hero.png") center bottom/cover no-repeat;
  background-size: auto 75%;
  background-position: center 35%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
#hero .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100% !important;
  padding: 0;
}
#hero .container .slogan {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 5rem;
}
#hero .container .slogan .lead {
  text-transform: uppercase;
  color: var(--color-white);
}
#hero .container .slogan .header1 {
  font-size: 60px;
  color: var(--color-white);
}
#hero .container .slogan .header2 {
  font-size: 36px;
  color: var(--color-white);
}
#hero .container .slogan .button {
  width: 100%;
  text-shadow: none;
}
#hero .container .slogan .text-default {
  order: 3;
  background: var(--color-white);
  color: var(--color-secondary);
  text-shadow: none;
  padding: 0.75rem 1rem;
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 24px;
}
#hero .footer {
  min-width: 100vw;
  margin-top: auto;
  display: flex;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 5px;
}
#hero .footer p {
  margin: 0;
}

/* SCOOTERS */
.scooters {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-primary) -100%, rgba(255, 255, 255, 0) 32%), linear-gradient(to top, var(--color-primary) -50%, rgba(255, 255, 255, 0) 10%);
}
.scooters .section-title {
  margin-bottom: 0.5rem;
}
.scooters .section-subtitle {
  margin-bottom: 2rem;
}
.scooters #scootersCarousel .scooter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 540px;
}
.scooters #scootersCarousel .scooter-item .text-default {
  font-size: 1rem;
  color: var(--color-primary);
}
.scooters #scootersCarousel .carousel-controls {
  display: flex;
  justify-content: center;
  margin: -20px 0 10px 0;
  gap: 1rem;
}
.scooters #scootersCarousel .carousel-controls .carousel-control-prev,
.scooters #scootersCarousel .carousel-controls .carousel-control-next {
  position: static;
  width: auto;
  height: auto;
}
.scooters .scooter-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
  border-radius: 8px;
  background: transparent;
}
.scooters .scooter-card p {
  flex-grow: 1;
}
.scooters .scooter-card a {
  margin-top: auto;
}
.scooters .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scooters .footer .representante {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scooters .footer .representante p {
  margin: 0;
}
.scooters .footer .representante .logo-orthoilheus {
  height: 80px;
}
.scooters .footer .representante .logo-afikim {
  height: 40px;
  border: 1px solid #000000;
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

/* OUTRAS SCOOTERS */
.outras-scooters {
  text-align: center;
}
.outras-scooters img {
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid var(--color-titles);
}
.outras-scooters .carousel {
  margin-top: 1rem;
}
.outras-scooters .carousel .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.outras-scooters .carousel .carousel-item img {
  width: 100%;
  max-width: 500px;
}
.outras-scooters .carousel .carousel-item .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.outras-scooters .carousel .carousel-item .carousel-controls button {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
}
.outras-scooters .carousel .carousel-item .carousel-controls button span {
  filter: invert(100%);
}
.outras-scooters .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PRODUTOS */
.produtos {
  background: linear-gradient(to bottom, var(--color-primary) -172%, rgba(255, 255, 255, 0) 35%);
  position: relative;
}
.produtos::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 10px;
  background-color: var(--color-primary);
}
.produtos .produtos-grid {
  display: flex;
  flex-wrap: wrap;
}
.produtos .produtos-grid .produto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}
.produtos .produtos-grid .produto-card .icon-circle {
  width: 136px;
  height: 136px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.produtos .produtos-grid .produto-card .icon-circle img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.produtos .produtos-grid .produto-card .descricao {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.produtos .produtos-grid .produto-card .descricao ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CATALOGO */
.catalogo .carousel-indicators {
  bottom: -30px;
}

/* CONTACTOS */
.contactos {
  background: linear-gradient(to bottom, var(--color-primary) -100%, rgba(255, 255, 255, 0) 25%), linear-gradient(to top, var(--color-primary) -200%, rgba(255, 255, 255, 0) 55%);
}
.contactos .row img {
  width: auto;
  height: 35px;
}
.contactos .row .text-menu {
  font-size: 18px;
  text-decoration: underline;
  color: var(--color-text);
}

#hero-final {
  background: linear-gradient(to top, var(--color-primary) 15%, rgba(255, 255, 255, 0) 30%), url("img/hero-final.jpg") 80% top/cover no-repeat;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}
#hero-final .container {
  flex: 1;
}
#hero-final .footer {
  display: flex;
  justify-content: center;
  padding: 5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
#hero-final .footer .header2 {
  color: var(--color-white);
}

/* EQUIPA TECNICA */
#equipa {
  background-color: rgba(146, 146, 146, 0.1490196078);
}

#mini-navbar .container .logo {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
  position: relative;
}
#mini-navbar .container .logo::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
}
#mini-navbar .container .logo img {
  width: 10rem;
}
#mini-navbar .container .links {
  margin-top: 3rem;
}
#mini-navbar .container .links .text-light {
  color: var(--color-titles) !important;
}

footer {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (min-width: 576px) {
  .header1 {
    font-size: 64px !important;
  }
  .header2 {
    font-size: 40px !important;
  }
}
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .header1 {
    font-size: 72px !important;
  }
  .header2 {
    font-size: 44px !important;
  }
  .titulo1 {
    font-size: 22px !important;
  }
  .titulo-sub {
    font-size: 15px !important;
  }
  .text-default {
    font-size: 32px !important;
  }
  .text-light {
    font-size: 20px !important;
  }
  .text-menu {
    font-size: 14px !important;
  }
  #scooters #scootersCarousel .carousel-inner {
    display: flex;
  }
  #scooters #scootersCarousel .carousel-inner .carousel-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
    justify-content: center;
  }
  #scooters #scootersCarousel .carousel-inner .carousel-item .scooter-card {
    height: 100%;
  }
  #scooters #scootersCarousel .controls-wrapper {
    display: none !important;
  }
  #scooters #scootersCarousel .carousel-control-prev,
  #scooters #scootersCarousel .carousel-control-next {
    filter: invert(1);
  }
  #catalogoCarousel {
    max-width: 80%;
    margin: 0 auto;
  }
  .catalogo .col-12.col-lg-5 {
    max-width: 80%;
  }
  .contactos .row {
    padding-bottom: 2rem;
  }
  .contactos .row .text-menu {
    font-size: 20px !important;
  }
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .titulo1 {
    font-size: 24px !important;
  }
  .titulo-sub {
    font-size: 16px !important;
  }
  #navbar {
    background: #fff;
  }
  #navbar #navbar-logo {
    content: url("img/logos/LOGO-02.svg");
    height: 4rem;
  }
  #navbar .navbar-collapse {
    background: transparent;
    padding: 0;
  }
  #navbar .navbar-collapse .container {
    border-top: none;
    padding-top: 0;
  }
  #navbar .nav-link {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0.75rem;
    position: relative;
  }
  #navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--color-primary);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, width 0.3s ease;
  }
  #navbar .nav-link:hover::after {
    width: 30%;
    transform: translateX(-50%) scaleX(1);
  }
  #navbar .nav-link.active::after {
    width: 30%;
    transform: translateX(-50%) scaleX(1);
    background-color: var(--color-primary);
  }
  #navbar .socials {
    display: none;
  }
  #hero {
    background: linear-gradient(to right, var(--color-primary) 0%, rgba(102, 102, 102, 0.39) 54%, rgba(255, 255, 255, 0) 100%), url("img/hero-desktop.png") 80%/cover no-repeat;
    justify-content: center;
  }
  #hero .container {
    align-items: flex-start;
  }
  #hero .container .slogan {
    align-items: flex-start;
    text-align: left;
  }
  #hero .container .slogan .button {
    width: auto;
  }
  #hero .container .slogan .text-default {
    order: 0;
    background: transparent;
    color: var(--color-white);
    margin: 3rem 0;
    padding: 0;
    line-height: 140%;
    text-align: start;
    width: auto;
  }
  #scooters .footer .representante {
    flex-direction: row;
  }
  .outras-scooters .row .header2 {
    font-size: 36px !important;
  }
  .outras-scooters img {
    max-height: unset;
  }
  #hero-final {
    background: linear-gradient(to top, var(--color-primary) 5%, rgba(255, 255, 255, 0) 30%), url("img/hero-final.jpg") 80% top/cover no-repeat;
    min-height: 1440px;
  }
}
/* Extra large devices (large desktops, 1200px and up)*/
/* Extra large devices (2k+ desktops, 1200px and up)*/
@media screen and (min-width: 1920px) {
  .header1 {
    font-size: 110px !important;
  }
  .header2 {
    font-size: 64px !important;
  }
}/*# sourceMappingURL=style.css.map */