/* ==========================================================================
   RESET & TIPOGRAFIA   - STYLE CSS HOTELARIA - BigLearn Dark Theme
   ==========================================================================
*/

:root {
  --bg-primary: #070f0d;
  --bg-glass: rgba(255,255,255,0.05);
  --bg-glass-hover: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.10);
  --glass-border-hover: rgba(255,255,255,0.20);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(255,255,255,0.70);
  --text-muted: rgba(255,255,255,0.45);
  --accent-primary: #00AAAA;
  --accent-secondary: #008888;
  --accent-gradient: linear-gradient(135deg,#00AAAA,#008888);
  --accent-glow: 0 0 20px rgba(0,170,170,0.3);
  --success: #10b981;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --blur: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.70;
  color: var(--text-primary);
  background: var(--bg-primary);
}

/* Header + Nav injected by hotelaria-shared.js */

/* ==========================================================================
   SECTION UTILITIES
   ==========================================================================
*/
.section-padding { padding: 80px 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ==========================================================================
   HERO SECTION — BigLearn style
   ==========================================================================
*/
.hero {
  aspect-ratio: 16 / 9;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  text-align: center;
  padding: 60px 24px 0;
}
.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0,170,170,0.12);
  border: 1px solid rgba(0,170,170,0.30);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-outline {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(14px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.3) !important;
  border-color: rgba(255,255,255,0.55) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.18) !important;
  transform: translateY(-2px);
}

/* Hero2 (simpler, used elsewhere) */
.hero2 {
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
}
.hero2 .content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  text-align: center;
  padding: 0 5%;
}
.hero2 h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}
.hero2 p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
}
/* ── BASE BUTTON — liquid glass + shimmer no hover ── */
.btn,
.btn-cta,
.sb-button--form,
.card footer .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 170, 170, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff !important;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(0, 200, 200, 0.22);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
/* shimmer sweep — desliza no hover */
.btn::after,
.btn-cta::after,
.sb-button--form::after,
.card footer .cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 55%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover,
.btn-cta:hover,
.sb-button--form:hover,
.card footer .cta:hover {
  background: rgba(0, 170, 170, 0.22) !important;
  backdrop-filter: blur(14px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.5) !important;
  border-color: rgba(0, 220, 220, 0.50) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,170,170,0.25), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn:hover::after,
.btn-cta:hover::after,
.sb-button--form:hover::after,
.card footer .cta:hover::after {
  left: 120%;
}

/* ==========================================================================
   INTRO TEXT
   ==========================================================================
*/
.intro-text {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem 5%;
  text-align: center;
  font-size: 1.125rem;
  color: #b0b0c8;
  margin-bottom: 2rem;
}
.intro-text p {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   CARROSSEL APPLE-STYLE
   ==========================================================================
*/
.carousel {
  border-bottom: none;
  box-shadow: none;
  background: transparent;
  width: 100%;
  padding: 0 5%;
  margin: 2.5rem auto;
  box-sizing: border-box;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin: 0;
  background: transparent !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.track::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  margin: 0 0.02rem;
  transform: scale(0.7);
  opacity: 0.15;
  transition: transform 0.6s ease, box-shadow 0.65s, opacity 0.6s ease;
}

.card.active {
  transform: scale(0.98);
  opacity: 1;
  z-index: 2;
  filter: none;
  box-shadow: 0 12px 48px rgba(0, 170, 170, 0.2);
}
.card.prev,
.card.next {
  transform: scale(0.85);
  opacity: 0.35;
}
.card.far {
  transform: scale(0.75);
  opacity: 0.15;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Oculta o conteúdo por defeito */
.card footer {
  display: none;
  pointer-events: none;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 0;
  color: #fff;
  z-index: 2;
  max-width: 85%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Mostra apenas no card ativo */
.card.active footer {
  display: block;
  pointer-events: auto;
}

.card footer h3 {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.card footer .cta {
  display: inline-block;
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.28) !important;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.card footer .cta:hover {
  background: rgba(0,170,170,0.30) !important;
  border-color: rgba(0,220,220,0.55) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.card footer .desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* Garante transparência do conteúdo sem afetar botão */
.card *:not(.cta) {
  background: transparent !important;
}


.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.dots button.active {
  background: #00AAAA;
}

/* ==========================================================================
   SOBRE
   ==========================================================================
*/
.sobre {
  padding: 4.5rem 1rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.sobre h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00AAAA;
}
.sobre p {
  margin-bottom: 1.35rem;
  color: #b0b0c8;
}

/* ==========================================================================
   CONTACT SECTION — BigLearn style
   ==========================================================================
*/
.contact {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form side */
.contact-form-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  padding: 2.5rem;
}

.form-group { margin-bottom: 20px; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(0,170,170,0.07);
  box-shadow: var(--accent-glow);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* GDPR row */
.gdpr-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.gdpr-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-primary);
}
.gdpr-row label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.gdpr-row label span { color: #ff6b6b; margin-left: 2px; }

/* Submit btn full width */
.btn-full { width: 100%; text-align: center; }

/* Form message */
#formMessage {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

/* Info side — contact cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 50%, rgba(0,170,170,0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  border-color: rgba(0,170,170,0.25);
  box-shadow: 0 4px 20px rgba(0,170,170,0.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(0,170,170,0.06) 100%);
}
.contact-card-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-link {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-card-link:hover { color: var(--accent-primary); }
.contact-card-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Subtítulo de secção (label acima do h2) */
.subtitulo-contato {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-primary);
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ==========================================================================
   CALL TO ACTION FINAL
   ==========================================================================
*/

.cta-final {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 5%;
  min-height: 430px;
  position: relative;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,170,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #ffffff;
}

.cta-final p {
  font-size: 1.3rem;
  color: #aaaacc;
  margin-bottom: 2.5rem;
}

.cta-final .linha {
  width: 60px;
  height: 2px;
  background: #00AAAA;
  margin: 1.5rem auto;
}

.cta-pretexto {
  font-size: 0.8rem !important;
  text-transform: uppercase;
  color: #00AAAA !important;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.5rem !important;
}

.cta-secundario {
  font-size: 1.1rem !important;
  color: #9090a8 !important;
  max-width: 640px;
  margin: 0 auto 1.5rem !important;
}

.btn-cta {
  font-size: 1.1rem;
  border-radius: 30px;
}

[data-aos="fade-up-big"] {
  opacity: 0;
  transform: translateY(220px);
  transition-property: opacity, transform;
  transition-duration: 1.8s;
  transition-timing-function: ease-out;
}

[data-aos="fade-up-big"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}


/* Footer liquid injected by hotelaria-shared.js */

/* ==========================================================================
   SMOOTH TRANSITIONS (selective — avoid interfering with AOS)
   ==========================================================================
*/

a, button, input, textarea {
  transition: all 0.3s ease;
}

/* ==========================================================================
   RESPONSIVO
   ==========================================================================
*/

/* Previne scroll horizontal global */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Tablet médio ── */
@media (max-width: 1199px) and (min-width: 769px) {
  .card {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

/* ── Tablet / mobile largo ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info { order: -1; }
  .section-padding { padding: 56px 0; }

  /* Hero: deixa de usar aspect-ratio fixo para não ficar minúsculo */
  .hero {
    aspect-ratio: auto;
    min-height: 85svh;
    min-height: 85vh;
  }
  .hero-content {
    padding: 28px 20px 24px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  /* Hero2 */
  .hero2 {
    height: auto;
    min-height: 260px;
    padding: 3.5rem 0;
  }

  /* Sobre */
  .sobre h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  /* CTA final */
  .cta-final {
    padding: 4rem 5%;
    min-height: auto;
  }
  .cta-final h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .cta-final p {
    font-size: 1rem;
  }

  /* Contact form */
  .contact-form-wrapper {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  /* Section título e subtítulo */
  .section-subtitle {
    margin-bottom: 32px;
  }
}

/* ── Mobile pequeno ── */
@media (max-width: 600px) {
  .card {
    flex: 0 0 88%;
    max-width: 88%;
  }
  .card img {
    height: 240px;
  }
  .card footer h3 {
    font-size: 1.3rem;
  }

  .hero h1, .hero2 h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .hero2 p {
    font-size: 0.95rem;
  }

  .contacto {
    flex-direction: column;
    gap: 32px;
  }
  .contacto .coluna {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ── Mobile muito pequeno ── */
@media (max-width: 480px) {
  .section-padding { padding: 44px 0; }
  .container { padding: 0 4%; }

  .hero {
    min-height: 100svh;
    min-height: 100vh;
  }
  .hero-content {
    padding: 20px 16px 20px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
  }

  .sobre {
    padding: 3rem 1rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem 1rem;
  }

  .cta-final {
    padding: 3rem 4%;
  }
}
