.is-titulo{
	text-align: center;
}

.texto-colunas {
    font-size: 12px;
    column-count: 3;
    column-gap: 30px;
    text-align: justify;
}

@media (max-width: 767px) {
    .texto-colunas {
        column-count: 1;
    }
	 .is-titulo{
		text-align: left; 
	 }    
}

:root {
  --primary-color: #1c3f5f;
  --accent-color: #0e8f77;
  --bg-color: #ffffff;
  --text-color: #1c3f5f;
  --card-bg: #ffffff;
}

/* Base */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar { background-color: var(--primary-color) !important; }
.navbar a { color: #fff !important; }

.hero { background-color: #f8f9fa; }

.accent-color{
	color: var(--accent-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}
.btn-accent:hover { background-color: #0b7462; }

.card {
  background-color: var(--card-bg);
  color: var(--text-color);
  border: none;
  transition: background-color 0.3s, color 0.3s;
}

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

/* Modo Escuro */
[data-bs-theme="dark"] {
  --bg-color: #0f1115;
  --text-color: #f3f4f6;
  --card-bg: #171a21;
}
[data-bs-theme="dark"] .navbar { background-color: #0e2236 !important; }
[data-bs-theme="dark"] footer { background-color: #0e2236; }
[data-bs-theme="dark"] .hero { background-color: #12151c; }

/* Botão modo claro/escuro */
.theme-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1050;
}
.theme-toggle:hover { background-color: rgba(0, 0, 0, 0.4); }
.theme-toggle i { font-size: 1.3rem; }

/* Splash Screen */
#splash-screen {
  position: fixed;
  inset: 0;
  background-color: #1c3f5f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.splash-logo {
  width: 500px;
  max-width: 60%;
  height: auto;
  opacity: 0;
  animation: splashFadeIn 1s ease forwards;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 480px) {
  .splash-logo { width: 130px; }
}

/* Hero com vídeo de fundo */
.hero {
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* camada para legibilidade */
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  padding-top: 5vh;
}

.hero-content p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}


.hero .btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}
.hero .btn-accent:hover {
  background-color: #0b7462;
}

/* Ajuste em ecrãs pequenos */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.homepage main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.homepage .hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Footer personalizado */
footer {
  background-color: var(--primary-color);
  color: #fff;
}

.footer-logo {
  width: 100px;
  height: auto;
}

footer h6 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a:hover {
  color: var(--accent-color) !important;
  text-decoration: none;
}

/* Linha inferior */
footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-logo {
    width: 130px;
  }
  footer {
    text-align: center;
  }
}

.btn-zoom {
  background-color: #1c3f5f;
  color: #fff;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-zoom:hover,
.btn-zoom:focus {
  background-color: #254e77; /* tom ligeiramente mais claro no hover */
  transform: scale(1.05);
  color: #fff;
}

.card-soft {
  background-color: #eee; /* cinza muito claro */
}

/* Adicione esta regra para o modo escuro */
[data-bs-theme="dark"] .card-soft {
  background-color: #333; /* usa a mesma cor que os outros cards em dark mode */
  color: #f3f4f6; /* texto claro */
  border: 1px solid grey;
}

.card-soft:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-zoom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.btn-zoom:hover {
  background-color: #16324a;
  color: #fff;
}

.card-img-top {
  object-fit: cover;
}

.btn-circle {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Delays personalizados para animações */
.animate__delay-100ms {
  animation-delay: 0.1s;
}

.animate__delay-200ms {
  animation-delay: 0.2s;
}

.animate__delay-300ms {
  animation-delay: 0.3s;
}

input.form-control {
	background-color: #eee !important;
}

.roboto-condensed-semibold {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.animate__delay-400ms {
  animation-delay: 0.4s;
}

.animate__delay-500ms {
  animation-delay: 0.5s;
}

.animate__delay-600ms {
  animation-delay: 0.6s;
}

.animate__delay-700ms {
  animation-delay: 0.7s;
}

.animate__delay-800ms {
  animation-delay: 0.8s;
}

/* Modo claro (light) */
[data-bs-theme="light"] .icon-adaptive {
  color: #495057; /* Cinza escuro */
}

/* Modo escuro (dark) */
[data-bs-theme="dark"] .icon-adaptive {
  color: #adb5bd; /* Cinza claro */
}

[data-bs-theme="dark"] #themeToggle {
  background-color: var(--accent-color);
  color: #fff;
}


/* Desktop: 3 colunas */
.text-columns {
  column-count: 2;
  column-gap: 2rem;
  line-height: 1.8;
}

/* Tablet: 2 colunas */
@media (max-width: 991px) {
  .text-columns {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

/* Mobile: 1 coluna (desativa) */
@media (max-width: 576px) {
  .text-columns {
    column-count: 1;
    column-gap: 0;
  }
}


/* Placeholders no tema escuro */
[data-bs-theme="dark"] #subscribeEmail::placeholder,
[data-bs-theme="dark"] #subscribeNome::placeholder {
    color: #adb5bd; /* Cinza claro */
    opacity: 1;
}

/* Ou se você usar uma classe para o tema escuro */
.dark-theme #subscribeEmail::placeholder,
.dark-theme #subscribeNome::placeholder {
    color: #adb5bd;
    opacity: 1;
}

/* Para garantir compatibilidade com todos os navegadores */
[data-bs-theme="dark"] #subscribeEmail::-webkit-input-placeholder,
[data-bs-theme="dark"] #subscribeNome::-webkit-input-placeholder {
    color: #adb5bd;
}

[data-bs-theme="dark"] #subscribeEmail::-moz-placeholder,
[data-bs-theme="dark"] #subscribeNome::-moz-placeholder {
    color: #adb5bd;
}

[data-bs-theme="dark"] #subscribeEmail:-ms-input-placeholder,
[data-bs-theme="dark"] #subscribeNome:-ms-input-placeholder {
    color: #adb5bd;
}


@media (max-width: 767px) {
    .icons-tematicos i,
    .icons-tematicos .bi {
        transform: scale(0.75); /* Reduz 25% */
        margin: 0 0.2rem !important; /* Margem uniforme pequena */

    }
    
}

#coluna_detalhes,
#coluna_booking {
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  #coluna_booking.d-block {
    display: block !important;
  }
}


#menu .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(0,0,0,.15);
}

#menu .dropdown-item {
    color: #212529 !important;
}

#menu .dropdown-item:hover {
    background-color: #f8f9fa !important;
}

#menu .dropdown-item.active {
    background-color: #0d6efd !important;
    color: #fff !important;
}

[data-bs-theme="dark"] #menu .dropdown-menu {
    background-color: #212529 !important;
    border-color: rgba(255,255,255,.15);
}

[data-bs-theme="dark"] #menu .dropdown-item {
    color: #dee2e6 !important;
}

[data-bs-theme="dark"] #menu .dropdown-item:hover {
    background-color: #2c3034 !important;
}