:root {
  --blue-dark: #123A55;
  --blue-medium: #093862;
  --blue-light: #9FC6CC;
  --bg-light: #ffffff;
  --danger: #D72626;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: #2E2E2E;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

a {
  overflow-wrap: break-word;
  word-break: normal;
  min-width: 0;
}

header {
  display: flex;
  position: fixed;
  background-color: var(--blue-medium);
  width: 100%;
  height: 10dvh;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  box-sizing: border-box;
}

main {
  flex: 1;
  padding-top: 10dvh;
  padding-bottom: 100px;
}

/* Cookie Banner Styles */
.cookie-container {
  /* Começa escondido */
  width: 100%;
  background: #2c3e50;
  /* Cor escura profissional */
  color: white;
  padding: 20px 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease-in-out;
  z-index: 9999;
  display: none;
}

.cookie-container.show {
  bottom: 0;
  display: block;
  /* Desliza para cima */
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-content a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.div-promo {
  display: flex;
  justify-content: center;
}

.promo-image {
  height: 600px;
  object-fit: contain;
  margin-bottom: 20px;
}

.btn-primary {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}


footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
}


h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--blue-dark);
  padding: 0px;
  margin: 0px;
}

.headline {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

span,
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* a, */
button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  background-color: var(--blue-medium);
  color: #fff;
}

.logo-container {
  height: 100%;
  box-sizing: border-box;
  padding: 5px;
}

.logo-box {
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 0px 10px;
  display: flex;
  justify-content: center;
}

.logo {
  max-height: 90%;
  max-width: 100%;
  object-fit: contain;
}

.href-cta {
  text-decoration: none;
  color: var(--bg-light);
}

.schedule-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.5%;
  font-weight: bolder;
  font-size: 1.5rem;
  background-color: var(--danger);
  border: 2px solid var(--bg-light);
  border-radius: 5px 5px 5px 5px;
}

.schedule-box:hover {
  text-decoration: underline;
}


.schedule-box img {
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
}

footer {
  color: var(--blue-medium);
  width: 100%;
  text-align: center;
}

.call {
  font-size: 2rem;
}

.call:hover {
  text-decoration: underline;
}

.footer-cta {
  display: none;
  /*   position: fixed; */
  /*   bottom: 0; */
  background-color: var(--bg-light);
  margin-bottom: 10px;
  box-sizing: border-box;
}

.btn {
  flex: 1;
  border-radius: 5px 5px 5px 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.primary {
  background-color: var(--blue-dark);
  color: var(--bg-light);
}

.primary:hover {
  background-color: var(--blue-medium);
}

.secondary {
  background-color: var(--danger);
  color: var(--bg-light);
  border: 2px solid var();
}

.cta-ico {
  padding-left: 5px;
  width: 1.5em !important;
}

.map-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.map {
  min-width: 100px;
  width: 80%;
  height: 300px;
}

.bold-blue {
  color: var(--blue-dark);
  font-weight: bold;
}

.services {
  background-color: var(--blue-medium);
  box-sizing: content-box;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}

.ico-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ico-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: column;
  margin-top: 10px;
  height: 100%;
}

.service-box hr {
  width: 100%;
  border: 1px solid white;
  box-shadow: 0 0 3px #000000;
}

.categories span:hover {
  text-decoration: underline;
  cursor: pointer;
}

.service-box {
  display: flex;
  flex-direction: column;
  background-color: var(--blue-light);
  border-radius: 25px 25px 25px 25px;
  padding: 20px;
  box-sizing: border-box;
  flex: 0 0 22%;
}

.service-ico {
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 90%;
  padding: 8px;
  width: 100%;
  margin: 5px;
}

.our-area {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 0px 10px;
}


.our-service-area-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.map-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.gallery-container {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--blue-medium);
  padding: 10px;

}

.gallery-box {
  background-color: white;
  padding: 2px;
  border-radius: 10px;
  width: 60%;
  height: 400px;
  box-sizing: border-box;
}

.gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: brightness(0.4);
  transition: transform 0.4s ease;
}

.gallery-inner:hover .gallery-img {
  transform: scale(1.1);
}

.info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1rem;
  color: #fff;
  z-index: 2;
}

.gallery-container * {
  text-decoration: underline;
}

.gallery-box h2 {
  padding: 5px;
}

.gallery-box a {
  padding: 10px;
}

.carousel {
  overflow: hidden;
  max-height: 300px;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.track img {
  height: 100%;
  width: auto;
  max-height: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-form-div {
  background-color: var(--blue-medium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  gap: 5px;
}

.form input,
textarea {
  padding: 10px;
  border-radius: 5px 5px 5px 5px;
  border: none;
  box-sizing: border-box;
  outline: none;
  ;
}

.result-text {
  color: var(--bg-light);
}

.mobile-cta {
  display: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 9999;
  pointer-events: none;
  /*     background-color: rgb(145, 145, 145) */
  ;
}

.fixed-footer>* {
  pointer-events: auto;
}


/* CSS DA GALERIA */
/* VARIÁVEIS DE COR - Ajuste aqui para igualar ao seu site */
:root {
  --gal-primary: #0284c7;
  --gal-border: #e2e8f0;
  --gal-bg: #ffffff;
  --gal-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Container Principal Galeria */
.pro-gallery-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  font-family: inherit;
}


.pro-featured-area {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gal-border);
  box-shadow: var(--gal-shadow);
  margin-bottom: 1rem;
}

.pro-featured-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}

.gallery-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bolder;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Legenda (Overlay) */
.pro-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  font-size: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.pro-featured-area .pro-caption {
  transform: translateY(0);
}

/* Área dos Thumbnails (Scroll) */
.pro-thumbs-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 40px;
  /* Espaço para as setas */
}

.pro-thumbs-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
  /* Esconde barra scroll Firefox */
}

.pro-thumbs-scroll::-webkit-scrollbar {
  display: none;
  /* Esconde barra scroll Chrome */
}

.pro-thumb-card {
  flex: 0 0 120px;
  /* Largura fixa do thumb */
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.pro-thumb-card:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.pro-thumb-card.active {
  border-color: var(--gal-primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

.pro-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botões de Navegação (Setas) */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--gal-border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #64748b;
  transition: all 0.2s;
  z-index: 2;
}

.nav-btn:hover {
  background: var(--gal-primary);
  color: white;
  border-color: var(--gal-primary);
}

.nav-prev {
  left: 0;
}

.nav-next {
  right: 0;
}

/* FIM CSS DA GALERIA */


@media (max-width: 768px) {

  .div-promo {
    display: flex;
    justify-content: center;
  }

  .promo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0px;
  }


  /* 
 GALLERIA
 */
  .pro-featured-area {
    height: 400px;
    /* height: 300px; */
  }

  .pro-thumb-card {
    flex: 0 0 80px;
    height: 60px;
  }

  .pro-thumbs-container {
    padding: 0;
  }

  .nav-btn {
    display: none;
  }

  /* FIM GALERIA*/

  .map-div {
    flex-direction: column;
  }

  .form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 80%;
  }

  header {
    padding: 1% 5%;
  }

  header a {
    display: none;
  }

  header .schedule-box {
    display: none;
  }

  header .location {
    display: none;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .mobile-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }

  .mobile-cta * {
    display: flex !important;
    font-size: 2rem;
    background-color: var(--bg-light);
    border-radius: 100%;
    padding: 2px;
    fill: var(--blue-dark);
  }

  header {
    justify-content: center !important;
  }

  .footer-cta {
    display: flex;
    width: 100%;
    gap: 1%;
    justify-content: center;
    padding: 0 10px;
    background-color: transparent;
  }

  .services {
    flex-direction: column;
    gap: 5px;
    padding: 10px 5%;
  }

  .our-area {
    flex-direction: column;
  }


  .gallery-box {
    width: 80%;
  }

  footer {
    padding-bottom: 100px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}