@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;700;800&display=swap");
body {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  padding-bottom: 80px;
}

/* Override body padding for landing page */
body.landing-page-body {
  padding-bottom: 0 !important;
}

section {
  width: 100vw;
}

.container {
  width: 1340px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.btn {
  background-color: #f6c90e;
  padding: 0.85rem 1.25rem;
  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;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn img {
  margin-right: 0.3rem;
}

.btn:hover {
  background-color: #3a4750;
}

.btn.azul {
  background-color: #3a4750;
}

.btn.cor {
  background-color: #f6c90e;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn.cor:hover {
  background-color: #e6b800;
  transform: translateY(-1px);
}

.titulo-xl, .viatura .info-viatura-container .preco, .vantagens .vantagem .numeros {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #3a4750;
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* White text styling for landing page */
.titulo-xl.white {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #FFF;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.titulo-ml.white {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #FFF;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.region {
    width: 50%;
    text-align: right;
}



.titulo-section {
  color: #3a4750;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.titulo-section strong {
  color: #f6c90e;
  font-weight: 800;
}

.titulo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-intro-text {
  width: 55%;
  margin: 1rem auto 4rem;
  text-align: center;
}

.texto, .texto p {
  color: #547589;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.grid-x2, .grid-x3, .grid-x32 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 1fr;
      grid-template-columns: 2fr 2fr 1fr;
  gap: 10px;
}

.grid-x3 {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

label {
  font-family: "Poppins", sans-serif;
  color: #547589;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin: 1rem 0;
}

.input-wraper {
  position: relative;
}

.input-wraper .input-icone, select.selectbase {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  z-index: 1;
}

/* Fix for date inputs - hide icons to prevent overlap */
.input-wraper input[type="date"] + .input-icone,
.input-wraper input[name*="dia_"] + .input-icone,
.input-wraper input[name*="hora_"] + .input-icone {
  display: none;
}

.input-wraper input[type="date"],
.input-wraper input[name*="dia_"],
.input-wraper input[name*="hora_"] {
  padding-left: 1rem;
  height: auto;
  min-height: 3.2rem; /* Ensure consistent height with other inputs */
  box-sizing: border-box;
}

/* Ensure proper text indentation for select and date picker inputs */
.selectric .label,
.flatpickr-input[readonly] {
  text-indent: 30px;
}

select.selectbase {
  text-indent: 30px;
  outline: none;
  color: #547589;
  width: 90%;
  min-height: 3.2rem; /* Ensure consistent height with other inputs */
  box-sizing: border-box;
}

.input-wraper input, .input-wraper textarea {
  padding-left: 50px;
}

input, textarea {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #c7c6c6;
  padding: 1rem;
  color: #547589;
  margin-bottom: 1rem;
  width: 100%;
  min-height: 3.2rem; /* Ensure consistent height across all form elements */
  box-sizing: border-box;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #8e9ea8;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #8e9ea8;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #8e9ea8;
}

input::placeholder, textarea::placeholder {
  color: #8e9ea8;
}

textarea {
  resize: none;
  height: 8rem;
}

.barra-top {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 2rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.barra-top nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: white;
}

.barra-top nav .menu-esquerdo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.barra-top nav .menu-esquerdo ul.menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 1rem;
}

.barra-top nav .menu-esquerdo ul.menu-links li {
  margin: 0 1.25rem;
}

.barra-top nav .menu-esquerdo ul.menu-links li a {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.barra-top nav .menu-esquerdo ul.menu-links li a .barra-link {
  position: absolute;
  bottom: -0.5rem;
  border-radius: 5px;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #f6c90e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.barra-top nav .menu-esquerdo ul.menu-links li a:hover .barra-link {
  width: 100%;
}

.barra-top nav .menu-esquerdo .btn {
  margin: 0 1.25rem;
}

.barra-top nav .menu-esquerdo ul.idioma {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 1rem;
}

.barra-top nav .menu-esquerdo ul.idioma li {
  margin: 0 0.3rem;
}

.barra-top nav .menu-esquerdo ul.idioma li a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.barra-top.white {
  background-color: white;
}

.barra-top.white nav {
  color: #547589;
}

.barra-top.white .menu-btn .menu-bars span {
  background-color: #547589;
}

.landing {
  min-height: 100vh;
  background-color: #eeeeee;
  /*background-image: url("../img/fundo-home.jpg");*/
  background-position: right;
  background-size: cover;
  position: relative;
  padding-top: 7rem;
}

.landing .grad-lateral {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  min-height: 100vh;
  height: 100%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(57%, rgba(255, 255, 255, 0.57)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.57) 57%, rgba(255, 255, 255, 0) 100%);
}

.landing .grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.landing .container {
  width: 100%;
  height: 100%;
  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;
  padding-top: 120px;
  position: relative;
  z-index: 3;
}

.landing .container .conteudo-landing {
  width: 55%;
  text-align: left;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 4;
}

.landing .container .conteudo-landing .form-pesquisa-container {
  background-color: #eeeeee;
  width: 100%;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  -webkit-filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.1));
  margin: 1rem 0;
}

.landing .container .conteudo-landing .form-pesquisa-container .btn {
  width: 100%;
  margin: 1rem auto 0;
}

.frota {
  padding: 8rem 0;
  background-color: #eeeeee;
  background-image: url("../img/fundo-frota@2x.png");
  background-position: center;
  background-size: cover;
}

.viatura {
  width: 100%;
}

.viatura .info-viatura-container {
  background-color: white;
  border: 1px solid #dedede;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 1rem;
}

.viatura .info-viatura-container h2.marca {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #f6c90e;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.viatura .info-viatura-container h3.modelo {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #547589;
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.viatura .info-viatura-container img.foto {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 2rem 0;
}

.viatura .info-viatura-container .preco {
  font-size: 3.2rem;
  text-align: left;
  display: block;
  margin-bottom: 1.5rem;
}

.viatura .info-viatura-container .preco .dia {
  text-transform: none;
  color: #c7c6c6;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  vertical-align: super;
}

.viatura .info-viatura-container .info-list {
  background-color: #3a4750;
  border-radius: 20px;
  padding: 1.5rem;
}

.viatura .info-viatura-container .info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #eeeeee;
  border-bottom: 1px solid #547589;
  padding: 0.5rem 0;
}

.viatura .info-viatura-container .info-list li:last-child {
  border: none;
}

.viatura .btn {
  width: 100%;
  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;
  margin-top: 20px;
}

.viatura .btn img {
  width: auto;
}

.owl-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  overflow: visible;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #c7c6c6 !important;
  border-radius: 50%;
  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;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.owl-nav .owl-prev {
  margin-left: -25px;
}

.owl-nav .owl-next {
  margin-right: -25px;
}

#carousel-custom-dots {
  width: 100%;
  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;
  margin: 4rem 0 0;
}

#carousel-custom-dots .owl-dot {
  width: 15px;
  height: 15px;
  background-color: #c7c6c6;
  border-radius: 50%;
  margin: 0 5px;
}

.vantagens {
  background-color: #547589;
  background-image: url("../img/fundo-vantagens@2x.png");
  background-position: center;
  background-size: cover;
  padding: 8rem 0;
}

.vantagens .vantagem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.vantagens .vantagem img {
  height: 120px;
}

.vantagens .vantagem .numeros {
  font-size: 3.2rem;
  text-align: left;
  display: block;
  margin: 1rem 0 0.5rem;
  color: white;
}

.vantagens .vantagem .info-num {
  color: #eeeeee;
}

.grid-newsletter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 4fr 2fr;
      grid-template-columns: 2fr 4fr 2fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid-x32 {
  -ms-grid-columns: 4fr 2fr;
      grid-template-columns: 4fr 2fr;
  gap: 80px;
}

.newsletter {
  padding: 3rem 0;
  background-color: #3a4750;
}

.newsletter .info-newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsletter .info-newsletter .titulo {
  color: #f6c90e;
}

.newsletter .info-newsletter .legenda {
  color: #8e9ea8;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.newsletter .btn {
  height: 60px;
}

.newsletter input, .newsletter textarea {
  height: 60px;
  margin: 0;
}

footer {
  padding: 4rem 0;
}

footer .btn {
  margin: 1rem 0;
}

footer .links-footer {
  margin: 2rem 0;
}

footer .links-footer li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}

footer .links-footer li:last-child {
  border: none;
}

footer .links-footer li img {
  margin-right: 0.5rem;
}

footer .linha {
  width: 100%;
  height: 1px;
  background-color: #eeeeee;
  margin: 2rem 0;
}

footer .links-fundo-container {
  color: #c7c6c6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .links-fundo-container ul.links-fundo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .links-fundo-container ul.links-fundo li {
  margin-right: 1rem;
}

footer .links-fundo-container ul.links-fundo li a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .links-fundo-container ul.links-fundo li a:hover {
  color: #f6c90e;
}

.menu-btn {
  display: none;
}

.pesquisa-container {
  background-color: #eeeeee;
  border-radius: 20px;
  padding: 2rem;
  margin: 10rem 0 2rem;
}
.pesquisa-container.white{
  background-color: white;
}
.pesquisa-container .btn {
  height: 52px;
  margin-top: 32px;
}

.grid-2-2-1 {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 2fr 2fr 1fr;
      grid-template-columns: 2fr 2fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lista-veiculos {
  margin: 2rem 0 4rem;
}

.conteudo {
  margin: 10rem 0 2rem;
}

/* JP Edits*/

.head{
  grid-template-columns: 1fr 2fr; display: grid
}

.extras{
  background-color: #3a4750;border-radius: 20px;padding: 1.5rem;
}

.presumo{
  grid-template-columns: 1fr 1fr; display: grid; margin-top: 2rem; margin-bottom: 0;
}

.promo-code{
  display: grid; grid-template-columns: 3fr 1fr; grid-column-gap: 20px;
}

.formdouble{
  display: grid;grid-template-columns: 1fr 1fr;grid-column-gap: 20px;
}


span.dia.lowrow{
  text-align: left;
  display: block;
  margin-top: -30px;
  margin-bottom: 20px;
  color: #c7c6c6;
}

.extraline{
  border-bottom: 1px solid white;
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  align-items: center;
  gap: 10px;
}

/* Quantity selector container - MADEIRA_GORENT STYLE */
.quantity {
  display: block;
  width: 30px;
}
.extraline input{
  margin: 18px 0;
}
.extraline label{
  color: #eeeeee;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  text-transform: none;
}

h2.resumo {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #547589;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.resumo{
color: #547589;
  font-family: "Lato", sans-serif;
  font-size: 1rem
}

.carinfo{
  margin: 20px 0 15px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #f6c90e;
  text-align: center;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carinfo .modelo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3a4750;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.carinfo .preco {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #f6c90e;
  margin: 10px 0;
  font-size: 1.1rem;
  color: #3a4750;
  font-weight: 600;
  line-height: 1.6;
}

.carinfo .preco strong {
  font-size: 2.2rem;
  color: #f6c90e;
  font-weight: 800;
  display: block;
  margin: 5px 0;
}

.carinfo .preco .secondary-price {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-top: 3px;
}

.carinfo .preco .secondary-price strong {
  font-size: 1.4rem;
  color: #3a4750;
  font-weight: 600;
}

.carinfo .preco strong span {
  color: #f6c90e;
}

/* Ensure € sign is also yellow */
.carinfo .preco strong {
  color: #f6c90e !important;
}

.carinfo .promo {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #28a745;
  font-weight: 600;
}

.pesquisa-container.reservation{
  padding: 20px;
  margin-top: 2rem;
}

.pesquisa-container #more-info, .pesquisa-container #id_condicoes {
  margin: 18px 0;
}

.pesquisa-container .conditionscolumn label{
  text-align: left;
}

.reservation select{
  border-radius: 10px;
    background: #fff;
    border: 1px solid #c7c6c6;
    padding: 1rem;
    color: #547589;
    margin-bottom: 1rem;
    width: 100%;
}
.btn.promo{
  margin-top: 0;
  width: 100%;
}
.extralist p{
  color: #eeeeee;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
}

.search-error-list{
  background-color: #f6c90e;
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}
.search-error-list h2{
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
}

.search-error-list p{
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #3a4750;
}
ul.errorlist{
  position: absolute;
  z-index: 9999999;
}
ul.errorlist li{
  background: red;
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
}

span.minus_extra, span.plus_extra{
    display: block;
    background: #F9C200;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    margin: 4px 0 4px 0;
    cursor: pointer;
    user-select: none;
}

.extraline input.multiple {
    margin: 0;
}

.extraline .tooltip.vh{
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.4;
}

input.multiple {
  -moz-appearance: textfield;
  pointer-events: none;
  /* Override global input styles to match madeira_gorent exactly */
  min-height: 30px !important;
  height: 30px !important;
  padding: 0px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

input.multiple::-webkit-outer-spin-button,
input.multiple::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* END JP Edits*/


.landing-page, .landing-page .terceira {
  width: 100vw;
  height: 100vh;
  background-color: #3a4750;
  background-image: url("../img/landing-page/tinified/header.jpg");
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.landing-page .terceira {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/landing-page/tinified/header-terceira.jpg");
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.landing-page .terceira.show {
  visibility: visible;
  opacity: 1;
}
.landing-page .landing-info {
  position: relative;
  z-index: 2;
  width: 50vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing-page .landing-info .btn-site {
  width: 50%;
  background-color: #eeeeee;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.1));
  margin: 1rem 0;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-page .landing-info .btn-site:hover {
  background: #eeeeee;
}
.landing-page .landing-info .btn-site .titulo-xl, .landing-page .landing-info .btn-site .viatura .info-viatura-container .preco, .viatura .info-viatura-container .landing-page .landing-info .btn-site .preco, .landing-page .landing-info .btn-site .vantagens .vantagem .numeros, .vantagens .vantagem .landing-page .landing-info .btn-site .numeros {
  font-size: 2rem;
  margin-bottom: 0rem;
}
.landing-page .landing-info .btn-site .texto {
  font-size: 1.2rem;
}

/* v5 */


#popupManual, #popupAeroporto {
  display: none;
  position: fixed !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #F9C200;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  position: absolute;
}

#popupManual h3, #popupAeroporto h3{
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

#popupManual button, #popupAeroporto button{
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: #F9C200;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}

#popupWait {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #3a4750;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 9999;
}

#popupWait h3 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

/* Fix for datepicker month/year text truncation */
.flatpickr-months .flatpickr-month {
  height: 50px !important;
}

 #loadingOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.5); /* Light transparent background */
            cursor: wait; /* Spinning cursor */
            display: none; /* Hidden by default */
            z-index: 9999;
        }




 .blockage_alert{
   background-color: #F9C200;
   padding: 40px;
   color: #547589;
   font-weight: bold;
   text-align: center;
   width: 80%;
   margin: auto;
   border-radius: 16px;
 }
  .blockage_alert .reason p{
    font-weight: normal;
    margin-top: 10px;
 }
.financiamento_landing{
  position: absolute; width: 100%; display: block;text-align: center ;margin-top: 50px; bottom: 20px;
}

.financiamento_landing img, .financiamento img{
  width: 50%;
}


  .financiamento{
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 50px;
  }

  .texto p.warn_contact{
    background: #F9C200;
    padding: 20px;
    border-radius: 25px;
    color: #1f2b2c;
    display: grid;
    font-size: 18px;
  }



/* END v5 */


@media screen and (max-width: 1100px) {


  .barra-top {
    padding: 20px;
  }
  .barra-top .container {
    padding: 0;
  }
  .logo-top {
    width: 100px;
    position: relative;
    z-index: 999;
  }
  .menu-esquerdo {
    position: fixed;
    padding-top: 4rem;
    z-index: 99;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background-color: white;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #547589;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow-y: scroll !important;
  }
  .menu-esquerdo.aberto {
    left: 0;
  }
  .menu-esquerdo ul.menu-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 2rem;
  }
  .menu-esquerdo ul.menu-links li {
    margin-bottom: 1.5rem !important;
  }
  .menu-esquerdo .btn {
    margin: 2rem 0 !important;
  }
  .menu-esquerdo .idioma {
    font-size: 1.5rem;
    margin: 1rem 0 !important;
  }
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  .menu-btn:hover, .menu-btn.fundo-claro {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .menu-btn .menu-bars {
    width: 20px;
    height: 15px;
    position: relative;
  }
  .menu-btn .menu-bars span {
    width: 100%;
    height: 3px;
    background-color: white;
    display: block;
    position: absolute;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .menu-btn .menu-bars span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .menu-btn .menu-bars span:nth-child(2) {
    top: 6px;
    left: 0;
    width: 15px;
  }
  .menu-btn .menu-bars span:nth-child(3) {
    top: 12px;
    left: 0;
  }
  .menu-btn.open-menu .menu-bars span {
    background-color: #547589;
  }
  .menu-btn.open-menu .menu-bars span:nth-child(1) {
    top: 6px;
    left: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu-btn.open-menu .menu-bars span:nth-child(2) {
    top: 6px;
    left: 0;
    width: 15px;
    opacity: 0;
  }
  .menu-btn.open-menu .menu-bars span:nth-child(3) {
    top: 6px;
    left: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .no-scroll {
    height: 100vh;
    overflow-y: hidden;
  }
  .grid-2-2-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }

  /* JP */
  .head{
    grid-template-columns: 1fr;
  }
  .presumo{
    grid-template-columns: 1fr;
  }

  .promo-code{
    grid-template-columns: 3fr 1fr; grid-column-gap: 20px;
  }

  .formdouble{
    display: grid;grid-template-columns: 1fr;
  }
  /* JP */
  .co img{
    width: 100%;
    margin-top: 2rem;
  }
  .pesquisa-container.white.bigform{
    padding:0;
  }
  .carinfo{
    padding: 15px;
    margin: 15px 0 10px 0;
  }
  
  .carinfo .modelo {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .carinfo .preco strong {
    font-size: 1.8rem;
  }
  
  .carinfo .preco {
    padding: 12px;
    font-size: 1rem;
  }
  
  .carinfo .preco .secondary-price {
    font-size: 0.9rem;
    margin-top: 2px;
  }
  
  .carinfo .preco .secondary-price strong {
    font-size: 1.2rem;
  }
  h1.titulo-section{
    font-size: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }
  .section-intro-text {
    width: 100%;
  }
  .landing .grad-lateral {
    width: 100%;
  }
  .landing .container {
    padding-top: 200px;
  }
  .landing .container .conteudo-landing {
    width: 100%;
  }
  .landing .container .conteudo-landing .form-pesquisa-container .grid-x2, .landing .container .conteudo-landing .form-pesquisa-container .grid-x3, .landing .container .conteudo-landing .form-pesquisa-container .grid-x32 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .landing .container .conteudo-landing .form-pesquisa-container .btn {
    width: 100%;
  }
  .grid-x3 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .grid-newsletter {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .grid-x32 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 80px;
  }
  footer .grid-x2, footer .grid-x3, footer .grid-x32,
  .pesquisa .grid-x2,
  .pesquisa .grid-x3,
  .pesquisa .grid-x32,
  .conteudo .grid-x2,
  .conteudo .grid-x3,
  .conteudo .grid-x32 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
  .titulo-xl, .viatura .info-viatura-container .preco, .vantagens .vantagem .numeros {
    font-size: 2rem;
  }
  .section-intro-text .titulo-section {
    font-size: 2rem;
  }
  .links-fundo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .links-fundo-container ul.links-fundo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .links-fundo-container ul.links-fundo li {
    margin-bottom: 2rem;
  }
  .landing-page .terceira {
	  background-position: 25%;
  }

  .financiamento_landing img,.financiamento img{
  width: 80%;
}

}
@media screen and (max-width: 650px) {
  .levanta, .entrega{
    margin-bottom: 0;
    min-height: 50px;
  }
.input-wraper .input-icone, select.selectbase {
    top: 35px;
}
  .landing-page .landing-info {
    width: 100vw;
  }
  .landing-page .landing-info .btn-site {
    width: 90%;
  }
  .landing-page .terceira {
	  background-position: 25%;
  }

  .financiamento_landing img, .financiamento img{
    max-width: 150px;
  }
}

/* Floating FAQ Button */
.floating-faq-btn {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 1000;
  margin-right: 0; /* Ensure no margin pushes it away from edge */
}

.floating-faq-btn .faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  background-color: #f6c90e;
  border-radius: 30px 0 0 30px;
  color: #3a4750;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
}

.floating-faq-btn .faq-btn img {
  width: 32px;
  height: 32px;
}

.floating-faq-btn .faq-btn:hover {
  background-color: #3a4750;
  transform: translateX(-5px);
}

.floating-faq-btn .faq-btn:hover img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(76%) saturate(2392%) hue-rotate(3deg) brightness(106%) contrast(93%);
}

/* Bottom Payment/Security Bar */
.bottom-payment-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #3a4750;
  padding: 20px 0;
  z-index: 998;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Hide payment bar on landing page */
body.landing-page-body .bottom-payment-bar {
  display: none !important;
}

.bottom-payment-bar .payment-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.bottom-payment-bar .payment-group-left,
.bottom-payment-bar .payment-group-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bottom-payment-bar .payment-icons img {
  height: 25px;
  width: auto;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.bottom-payment-bar .payment-icons img:hover {
  opacity: 1;
}

/* Optimize search form spacing for mobile-first design */
.form-pesquisa-container {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.form-pesquisa-container .search-form {
  max-width: 100%;
}

.form-pesquisa-container label {
  margin: 0.8rem 0 0.5rem 0;
  font-size: 0.9rem;
}

.form-pesquisa-container input,
.form-pesquisa-container select,
.form-pesquisa-container textarea {
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-pesquisa-container .grid-x2 {
  gap: 8px;
  margin-bottom: 0.8rem;
}

.form-pesquisa-container .btn {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .form-pesquisa-container {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-pesquisa-container label {
    margin: 0.5rem 0 0.3rem 0;
    font-size: 0.85rem;
  }
  
  .form-pesquisa-container input,
  .form-pesquisa-container select,
  .form-pesquisa-container textarea {
    padding: 0.7rem;
    margin-bottom: 0.3rem;
  }
  
  .form-pesquisa-container .grid-x2 {
    gap: 6px;
    margin-bottom: 0.5rem;
  }
  
  .form-pesquisa-container .btn {
    margin-top: 0.8rem;
    padding: 0.7rem 0.8rem;
  }
  
  /* Adjust floating FAQ button position on mobile */
  .floating-faq-btn {
    top: 70px;
    right: 0;
    margin-right: 0; /* Ensure button touches right edge on mobile */
  }
  
  .floating-faq-btn .faq-btn {
    width: 70px;
    height: 50px;
    border-radius: 25px 0 0 25px;
  }
  
  .floating-faq-btn .faq-btn img {
    width: 32px;
    height: 32px;
  }
  
  /* Adjust bottom bar for mobile */
  .bottom-payment-bar {
    padding: 16px 0;
  }
  
  .bottom-payment-bar .payment-icons {
    padding: 0 15px;
  }
  
  .bottom-payment-bar .payment-group-left,
  .bottom-payment-bar .payment-group-right {
    gap: 10px;
  }
  
  .bottom-payment-bar .payment-icons img {
    height: 20px;
  }
  
  /* Reduce body padding on mobile */
  body {
    padding-bottom: 70px;
  }
}

/* Additional mobile form adjustments */
@media screen and (max-width: 480px) {
  .form-pesquisa-container {
    padding: 0.8rem;
  }
  
  .form-pesquisa-container .grid-x2 {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .landing .container {
    padding-top: 80px;
  }
  
  .landing .container .conteudo-landing {
    padding-bottom: 2rem;
  }
  
  /* Ensure sufficient space for bottom bar on very small screens */
  body {
    padding-bottom: 60px;
  }

  
  .bottom-payment-bar .payment-icons {
    padding: 0 10px;
  }
  
  .bottom-payment-bar .payment-group-left,
  .bottom-payment-bar .payment-group-right {
    gap: 8px;
  }
  
  .bottom-payment-bar .payment-icons img {
    height: 22px;
  }
  
  /* FAQ button on very small screens */
  .floating-faq-btn {
    top: 120px;
    right: 0;
    margin-right: 0; /* Ensure button touches right edge on small screens */
  }
  
  .floating-faq-btn .faq-btn {
    width: 60px;
    height: 45px;
    border-radius: 22px 0 0 22px;
  }
  
  .floating-faq-btn .faq-btn img {
    width: 28px;
    height: 28px;
  }
}

/*# sourceMappingURL=style.css.map */

/* Reviews Section */
.reviews-section {
  background: #f8f9fa;
  padding: 80px 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.reviews-section .container {
  padding: 0 !important; /* Remove default container padding */
}

.reviews-section .titulo-section {
  margin-bottom: 80px; /* Extra spacing below reviews title */
}

/* Search toggle styles for results page */
.search-toggle-container {
  padding: 20px 0;
  margin-top: 100px; /* Add top margin to avoid header overlap */
}

.search-toggle-btn {
  width: 100%; /* Make button same width as form boxes */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Page title section for results page */
.page-title-section {
  background: white;
  padding: 40px 0 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-title-section .titulo-section {
  margin-bottom: 0;
  font-size: 3rem;
}

/* Results page specific styling */
.page-title-section + .pesquisa {
  margin-top: 40px; /* Add space between title and search section */
}

.search-toggle-container {
  margin-top: 100px; /* Keep consistent top margin for header clearance */
}

.form-pesquisa-container {
  margin-top: 20px; /* Space when form is expanded */
}

/* Fix icon positioning in expanded search form */
.form-pesquisa-container .input-wraper .input-icone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
}

/* Final price stamp styles */
.car-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.final-price-stamp {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 110px; /* Desktop width */
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.final-price-stamp img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments for stamp */
@media (max-width: 768px) {
  .final-price-stamp {
    width: 110px; /* Responsive size for tablets */
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .final-price-stamp {
    width: 90px; /* Responsive size for mobile */
    top: 8px;
    right: 8px;
  }
}

/* Includes section styling */
.includes-section {
  margin: 20px 0 15px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.includes-title {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.includes-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.includes-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1rem;
}

.includes-list li:last-child {
  margin-bottom: 0;
}

/* Move dia lowrow up significantly */
span.dia.lowrow {
  margin-top: -22px;
}

.reviews-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 600;
  padding: 0 20px; /* Add padding only to the title */
}

.reviews-carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px; /* Space for navigation arrows */
  overflow: hidden; /* Prevent content overflow */
}

/* Review Card Styling */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  max-width: 100%;
  word-wrap: break-word;
}

/* Reviews Owl Carousel Specific Styles */
.reviews-owl {
  position: relative;
}

.reviews-owl .owl-stage-outer {
  overflow: visible; /* Allow navigation buttons to show outside */
}

.reviews-owl .review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important; /* Keep original shadow */
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Reviewer Info */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviewer-avatar {
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
  aspect-ratio: 1/1;
}

/* Avatar Placeholder Styling */
.avatar-placeholder {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
  aspect-ratio: 1/1;
}

.google-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.reviewer-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
}

.reviewer-level {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.review-time {
  margin: 2px 0 0 0;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.review-content {
  text-align: center;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 20px;
  font-style: italic;
}

.review-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: auto; /* Push rating to bottom of content area */
}

.review-rating .star {
  color: #f1c40f;
  font-size: 1.8rem;
}

.review-rating .star-empty {
  color: #ddd !important; /* Gray for empty stars */
}

/* Force Owl Carousel Navigation to Show - ONLY for Reviews */
.reviews-owl .owl-nav {
  display: block !important;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.reviews-owl .owl-nav .owl-prev,
.reviews-owl .owl-nav .owl-next {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #3a4750 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  pointer-events: auto !important;
  outline: none !important;
  font-size: 28px !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.reviews-owl .owl-nav .owl-prev {
  left: -25px;
}

.reviews-owl .owl-nav .owl-next {
  right: -25px;
}

.reviews-owl .owl-nav .owl-prev:hover,
.reviews-owl .owl-nav .owl-next:hover {
  background: white !important;
  transform: scale(1.05) !important;
}

/* Force Owl Carousel Dots to Show */
.reviews-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 30px !important;
  padding-bottom: 10px !important;
}

.reviews-dots .owl-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: rgba(58, 71, 80, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  outline: none !important;
  display: block !important;
}

.reviews-dots .owl-dot.active {
  background: #3a4750 !important;
  transform: scale(1.2) !important;
}

.reviews-dots .owl-dot:hover {
  background: rgba(58, 71, 80, 0.6) !important;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-link.facebook {
  background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #ffcc33);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Mobile Responsive for Reviews */
/* Desktop 3-card layout optimization */
@media (min-width: 1024px) {
  .reviews-owl .review-card {
    margin: 0 10px; /* Reduce margin for 3-card layout */
  }
  
  .review-text {
    font-size: 0.95rem; /* Slightly smaller text for 3 cards */
    line-height: 1.5;
  }
  
  .reviewer-info h3 {
    font-size: 1rem; /* Adjust name size for 3 cards */
  }
  
  .review-time {
    font-size: 0.8rem; /* Smaller time for 3-card layout */
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 0 60px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .reviews-carousel-container {
    padding: 0 50px; /* Adjust padding for mobile */
  }
  
  .reviews-owl .review-card {
    padding: 25px 20px;
  }
  
  .reviewer-avatar img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
  }
  
  .avatar-placeholder {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
  }
  
  .reviewer-info h3 {
    font-size: 1.1rem;
  }
  
  .review-time {
    font-size: 0.8rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .reviews-owl .owl-nav .owl-prev,
  .reviews-owl .owl-nav .owl-next {
    width: 45px !important;
    height: 45px !important;
    font-size: 24px !important;
  }
  
  .reviews-owl .owl-nav .owl-prev {
    left: -22px;
  }
  
  .reviews-owl .owl-nav .owl-next {
    right: -22px;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
  
  .social-links {
    gap: 15px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 1.6rem;
  }
  
  .reviews-carousel-container {
    padding: 0 40px; /* Less padding on very small screens */
  }
  
  .reviews-owl .review-card {
    padding: 20px 15px;
  }
  
  .reviews-owl .owl-nav .owl-prev,
  .reviews-owl .owl-nav .owl-next {
    width: 40px !important;
    height: 40px !important;
    font-size: 22px !important;
  }
  
  .reviews-owl .owl-nav .owl-prev {
    left: -20px;
  }
  
  .reviews-owl .owl-nav .owl-next {
    right: -20px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .reviewer-avatar img {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
  }
  
  .avatar-placeholder {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    aspect-ratio: 1/1;
  }
}

/* Desktop checkbox sizing for reservation form */
@media (min-width: 768px) {
  .pesquisa-container input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    transform: scale(1) !important;
  }
  
  /* Adjust checkbox grid spacing for desktop */
  .pesquisa-container div[style*="grid-template-columns: 1fr 20fr"] {
    grid-template-columns: auto 1fr !important;
    gap: 8px !important;
  }
}

/* Ensure mobile checkboxes remain unchanged */
@media (max-width: 767px) {
  .pesquisa-container input[type="checkbox"] {
    width: auto;
    height: auto;
    transform: none;
  }
}

/* Fix FAQ page title positioning on desktop only */
@media (min-width: 769px) {
  .conteudo .section-intro-text {
    margin-top: 11rem !important;
  }
}