/* 
  Design System para o Hotel
  Estilo Premium, Glassmorphism, Micro-animações e Cores Vibrantes
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Cores Premium */
  --primary-color: #0d3b66;
  /* Azul profundo elegante */
  --primary-color-hover: #164f84;
  --secondary-color: #f4d35e;
  /* Dourado/Amarelo vibrante */
  --secondary-color-hover: #f9e076;
  --accent-color: #ee964b;
  --text-dark: #2b2b2b;
  --text-muted: #6b6b6b;
  --text-light: #fdfdfd;
  --bg-light: #fafafa;
  --bg-dark: #121212;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Tipografia Base */
body,
h1,
h2,
h3,
h4,
h5,
p,
span,
a,
input,
select,
button {
  font-family: 'Outfit', sans-serif !important;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--primary-color);
}

/* 
  Estilização Específica para Formulário Glassmorphism
  Ele ficará sobreposto no slider na index.php 
*/
.hotel-booking-form-glass {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 35px;
  color: #fff;
  transition: transform var(--transition-normal);
}

.hotel-booking-form-glass:hover {
  transform: translateY(-5px);
}

.hotel-booking-form-glass h3 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hotel-booking-form-glass p {
  color: #e2e2e2;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Inputs do Formulário Glass */
.hotel-booking-form-glass input,
.hotel-booking-form-glass select {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid transparent !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 12px 15px;
  height: 50px;
  transition: all var(--transition-fast);
}

.hotel-booking-form-glass input:focus,
.hotel-booking-form-glass select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 10px rgba(244, 211, 94, 0.3);
  outline: none;
}

/* Botões Modernos */
.btn-premium {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  display: inline-block;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color-hover) 0%, #faac68 100%);
}

.btn-outline-premium {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-outline-premium:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Vitrine Premium para Nossos Quartos */
.quartos-showcase-premium {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(244, 211, 94, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(13, 59, 102, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.quartos-showcase-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.quartos-showcase-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(13, 59, 102, 0.08);
}

.quartos-showcase-header h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.quartos-showcase-header p {
  margin: 0;
  color: #5e6c84;
  font-size: 1.06rem;
  line-height: 1.75;
}

.quartos-showcase-grid {
  align-items: stretch;
}

.card-quarto-premium {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 41, 73, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  margin-bottom: 30px;
}

.card-quarto-premium::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 59, 102, 0), rgba(13, 59, 102, 0.14), rgba(13, 59, 102, 0));
}

.card-quarto-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 26px 70px rgba(13, 59, 102, 0.16);
  border-color: rgba(244, 211, 94, 0.55);
}

.card-quarto-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: var(--quarto-media-height, 320px);
  background: #dfe7ef;
}

.card-quarto-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 35, 0.08) 0%, rgba(7, 18, 35, 0.48) 100%);
  pointer-events: none;
}

.card-quarto-premium figure img {
  transition: transform var(--transition-slow), filter var(--transition-normal);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-quarto-premium:hover figure img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.card-quarto-badge,
.card-quarto-overlay,
.card-quarto-chip,
.card-quarto-link {
  position: absolute;
  z-index: 2;
}

.card-quarto-badge {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-quarto-overlay {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-quarto-chip,
.card-quarto-link {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-quarto-chip {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.card-quarto-link {
  padding: 0 18px;
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.card-quarto-premium .caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 26px;
  text-align: left;
}

.card-quarto-topline,
.card-quarto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-quarto-kicker {
  color: #7b8ba3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-quarto-arrow {
  color: var(--secondary-color);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-quarto-premium .caption-title {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.card-quarto-premium .caption-text {
  margin: 0;
  color: #59677e;
  font-size: 0.98rem;
  line-height: 1.72;
}

.card-quarto-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-quarto-features span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f7fb;
  border: 1px solid rgba(13, 59, 102, 0.06);
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-quarto-footer {
  padding-top: 4px;
  border-top: 1px solid rgba(13, 59, 102, 0.08);
  color: #74839c;
  font-size: 0.88rem;
}

.card-quarto-footer strong {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .quartos-showcase-header {
    margin-bottom: 34px;
  }

  .card-quarto-media {
    height: 300px !important;
  }

  .card-quarto-premium .caption {
    padding: 24px 22px 22px;
  }
}

@media (max-width: 767px) {
  .quartos-showcase-premium {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .quartos-showcase-header h3 {
    font-size: 2rem;
  }

  .quartos-showcase-header p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .card-quarto-media {
    height: 260px !important;
  }

  .card-quarto-overlay,
  .card-quarto-topline,
  .card-quarto-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Alerta Premium (Cookies) */
.alerta-premium {
  background: var(--primary-color);
  background: linear-gradient(90deg, var(--primary-color) 0%, #1a2a6c 100%);
  color: #fff;
  padding: 20px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px) {
  .alerta-premium {
    flex-direction: row;
    justify-content: space-between;
  }
}

.alerta-premium.hide {
  display: none !important;
}

.alerta-premium a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

.alerta-premium a:hover {
  text-decoration: underline;
}

.alerta-premium .botao-aceitar-premium {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  padding: 10px 25px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.alerta-premium .botao-aceitar-premium:hover {
  background: var(--secondary-color-hover);
  transform: scale(1.05);
  text-decoration: none;
}

/* Seção Sobre nós - Background Premium */
.section-sobre-premium {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.section-sobre-premium .section-wrap-content-var-1-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 100%;
}

.section-sobre-premium:hover {
  box-shadow: var(--shadow-md);
}

.section-sobre-premium h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-sobre-premium h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.section-sobre-premium p,
.section-sobre-premium .group {
  margin: 0;
}

.section-sobre-premium p {
  line-height: 1.8;
  font-size: 50px;
}

.section-sobre-premium .group {
  width: 100%;
}

.about-cta-wrap {
  margin-top: 6px;
}

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .section-sobre-premium {
    padding: 28px 22px;
  }

  .section-sobre-premium .section-wrap-content-var-1-inner {
    gap: 16px;
  }
}

/* Galeria Premium */
.galeria-item-premium {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: block;
}

.galeria-item-premium:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.galeria-item-premium img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Fix z-index slider caption vs form */
.swiper-slide-caption {
  z-index: 2;
}

.hotel-booking-form-glass-container {
  position: relative;
  z-index: 10;
}

/* Hero Full Screen Layout */
.hero-section-premium {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider-wrapper {
  width: 100%;
}

.hero-slider-wrapper .swiper-container {
  height: 90vh !important;
  min-height: 600px;
}

.hero-booking-wrapper {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 20;
  width: 100%;
  max-width: 450px;
}

@media (max-width: 1199px) {
  .hero-booking-wrapper {
    right: 5%;
  }
}

@media (max-width: 991px) {
  .hero-booking-wrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: -80px auto 40px auto;
    padding: 0 20px;
  }

  .hero-slider-wrapper .swiper-container {
    height: 70vh !important;
  }
}

/* Carrossel Infinito de Ícones (Marquee) */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  background: var(--bg-light);
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.marquee-item:hover {
  transform: scale(1.1);
  color: var(--accent-color);
}

.marquee-item img {
  width: 55px;
  height: auto;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

/* Header Premium */
.header-premium {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.header-premium .rd-navbar-top-panel {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 15px 0;
}

.header-premium .rd-navbar-top-panel-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
}

.header-premium .text-italic {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.05rem;
  /* Aumentado 25% */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-premium .contact-info a {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.4rem;
  /* Aumentado 25% */
}

.header-premium .rd-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 30px;
}

.header-premium .rd-navbar-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.header-premium .rd-navbar-nav>li>a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.2rem;
  /* Aumentado 25% */
  letter-spacing: 1.5px;
  padding: 10px 0;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  background: transparent !important;
}

.header-premium .rd-navbar-nav>li>a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header-premium .rd-navbar-nav>li.active>a::after,
.header-premium .rd-navbar-nav>li>a:hover::after {
  width: 100%;
}

.header-premium .rd-navbar-nav>li>a:hover,
.header-premium .rd-navbar-nav>li.active>a {
  color: var(--primary-color) !important;
}

/* Footer Premium */
.footer-premium {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 60px 0;
  margin-top: 40px;
}

.footer-premium h4 {
  color: var(--secondary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  /* Aumentado 25% */
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-premium .page-footer-minimal {
  background: transparent;
  padding: 0;
}

.footer-premium .text-gray-darker,
.footer-premium .link-gray-darker,
.footer-premium .list-desc dd {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.2rem;
  /* Aumentado 25% */
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-premium .link-gray-darker:hover {
  color: #ffffff !important;
}

.footer-premium .list-desc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-premium .list-desc dt {
  color: var(--secondary-color);
  font-weight: 600;
  min-width: max-content;
}

.footer-premium .list-desc .icon {
  color: var(--secondary-color) !important;
  font-size: 1.6rem;
  /* Aumentado 25% */
}

/* Ajustes de Tipografia Base */
.section h2,
.section h3 {
  font-size: 3rem !important;
  /* Aumentado 25% para os titulos de sessão */
}

.section p {
  font-size: 1.2rem !important;
  /* Aumentado 25% para os paragrafos principais */
}