/* ========================================= 🎨 VARIÁVEIS & BASE ========================================= */
:root {
  --pink: #f7b6c2;
  --pink-600: #eaa7b4;
  --pink-700: #d392a0;
  --ink: #262525;
  --muted: #6f6a6a;
  --bg: #fff;
  --border: #f2dfe4;
  --gold: #c7a46a;
  --shadow: 0 12px 28px rgba(26, 12, 12, 0.08);
  --radius: 18px;
  /* Nav */
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-inline-size: 100%;
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-inline-size: 100%;
  height: auto;
}

body {
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #fff8fb 80%);
  line-height: 1.65;
}

/* Typography: força Quicksand em todos os títulos (evita estilos serif acidentais) */
h1, h2, h3, h4, h5, h6,
.display,
.section-title,
.featured-title,
.featured-content h3 {
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}


/* Layout base */
.container {
  inline-size: min(1120px, 92%);
  margin-inline: auto;
}

.display {
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.3px;
}

/* ========================================= 🌸 HEADER & NAVEGAÇÃO (FIX DEFINITIVO) ========================================= */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 4000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-block-end: 1px solid var(--border);
  inline-size: 100%;
}

/* Mantém o header confortável em ecrãs grandes */
.site-header .container.nav-wrapper {
  inline-size: 100%;
  max-inline-size: unset;
  padding-inline: 30px;
}

@media (max-width: 768px) {
  .site-header .container.nav-wrapper {
    padding-inline: 16px;
  }
}

.nav-wrapper {
  min-block-size: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}


.brand-mark {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.8px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-block-start: -3px;
}

/* Brand: logo ao lado do texto */
.brand{
  display: flex;
  flex-direction: row;      /* ✅ lado a lado */
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-inline-size: 170px;
}

.brand-logo{
  height: 46px;             /* ✅ aumenta aqui */
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* opcional: em mobile reduz um pouco */
@media (max-width: 520px){
  .brand-logo{ height: 38px; }
  .brand-mark{ font-size: 18px; }
  .brand-sub{ font-size: 11px; }
}

.brand-logo{
  width: 110px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 980px){
  .brand-logo{
    width: 80px;
    height: 50px;
  }
}

/* Checkbox escondido (mas funcional) */
.nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

/* NAV desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Links principais */
.nav a.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a.nav-link:hover {
  background: var(--pink);
  color: #fff;
  transition: 0.2s ease;
}

.nav-link-active {
  background: #ffe6ee;
}

/* Botões no header */
.nav .btn {
  box-shadow: none;
}

/* ✅ HAMBURGER: SEMPRE 3 LINHAS (nunca vira X) */
.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  flex: 0 0 auto;
}

/* 3 linhas */
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  inline-size: 18px;
  block-size: 2px;
  background: #333;
  border-radius: 2px;
  transform: translateX(-50%);
}

.hamburger::before {
  inset-block-start: 14px;
}

.hamburger span {
  inset-block-start: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::after {
  inset-block-end: 14px;
}

/* ✅ MOBILE: overlay SEM SCROLL INTERNO e com altura automática */
@media (max-width: 980px) {
  .hamburger {
    display: block;
  }

  /* força FECHADO mesmo que exista inline style em algum lado */
  .site-header .nav {
    display: none !important;
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 16px;
    right: 16px;
    bottom: auto;
    /* ✅ altura automática */
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    /* ✅ SEM scroll interno */
    max-height: none !important;
    overflow: visible !important;
  }

  /* quando abre */
  .nav-toggle:checked~.nav {
    display: flex !important;
  }

  /* links a ocupar largura toda */
  .site-header .nav a.nav-link {
    inline-size: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
  }

  /* botões "Entrar/Registar" também full width */
  .site-header .nav a.btn {
    inline-size: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .user-menu {
    inline-size: 100%;
    margin-inline-start: 0;
  }

  .user-toggle {
    inline-size: 100%;
    justify-content: center;
  }

  .user-dropdown {
    position: static;
    margin-block-start: 10px;
    box-shadow: none;
    border-radius: 16px;
    border: 1px solid #ffe1e9;
  }
}

/* ========================================= 🦄 HERO / HOME ========================================= */
.hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1920&auto=format&fit=crop") center / cover no-repeat;
  min-block-size: 72vh;
  display: grid;
  place-items: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 182, 194, 0.55), rgba(255, 255, 255, 0.9));
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  margin: 0 0 12px 0;
}

.hero p {
  color: #4b4b4b;
  margin: 0 0 22px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================= 🔘 BOTÕES ========================================= */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:focus {
  outline: 3px solid rgba(247, 182, 194, 0.55);
  outline-offset: 2px;
}

.btn-primary{
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover{
  background: var(--pink-600);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink-700);
}

.btn-dark {
  background: #2c2b2b;
  color: #fff;
}

.btn-dark:hover {
  background: #1c1c1c;
}

/* Forçar "Registar" do header a ser rosa (igual btn-primary) */
.site-header a[href*="registar"] {
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--shadow) !important;
  border-radius: 999px;
}

.site-header a[href*="registar"]:hover {
  background: var(--pink-600) !important;
}

/* ========================================= 📄 SEÇÕES GENÉRICAS & GRID ========================================= */
.section {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  margin-block-end: 24px;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.section-subtitle {
  color: var(--muted);
  margin: 8px 0 0 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

/* ========================================= 📦 CARDS GENÉRICOS ========================================= */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  inline-size: 100%;
  block-size: 220px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
}

.card p {
  margin: 0 0 10px 0;
  color: var(--muted);
}

.card .link {
  font-weight: 700;
  color: var(--pink-700);
  text-decoration: none;
}

.card .link:hover {
  text-decoration: underline;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.price-line strong {
  color: var(--ink);
}

.lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================= 📣 CTA BARRA ========================================= */
.cta {
  background: linear-gradient(90deg, var(--pink), #ffd5de);
  padding: 40px 0;
  margin: 10px 0;
  border-block-start: 1px solid var(--border);
  border-block-end: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta h3 {
  margin: 0;
  font-size: 24px;
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cta p {
  margin: 0;
  color: #594b4b;
}

@media (max-width: 720px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================= 🧷 PAGE HERO ========================================= */
.page-hero {
  background: linear-gradient(180deg, #fff, #ffeaf0);
  border-block-end: 1px solid var(--border);
  padding: 42px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: 28px;
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page-hero p {
  margin: 6px 0 0 0;
  color: var(--muted);
}

/* ========================================= 📝 FORMULÁRIOS ========================================= */
.form {
  padding: 18px;
}

.form-book {
  max-inline-size: 720px;
  margin-inline: auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-block-end: 14px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.form label {
  font-weight: 700;
  margin-block-end: 6px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(247, 182, 194, 0.6);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-block-start: 10px;
}

/* Mostrar/ocultar password */
.show-password {
  position: absolute;
  inset-inline-end: 12px;
  inset-block-start: 38px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--pink-700);
  transition: transform 0.2s;
}

.show-password:hover {
  transform: scale(1.15);
}

/* Search box */
.search-box {
  position: relative;
  display: inline-block;
  inline-size: 100%;
  max-inline-size: 300px;
}

.search-box input[type="text"] {
  inline-size: 100%;
  padding: 10px 38px 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.search-box input[type="text"]:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(247, 182, 194, 0.4);
  outline: none;
}

.search-box input::placeholder {
  color: #bbaeb0;
  font-style: italic;
}

.search-box::after {
  content: "🔍";
  position: absolute;
  inset-inline-end: 14px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--pink-700);
  pointer-events: none;
}

/* ========================================= 👩‍🦱 SOBRE ========================================= */
.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.rounded {
  border-radius: var(--radius);
}

.fancy-title {
  position: relative;
  display: inline-block;
  padding-block-end: 6px;
}

.fancy-title:after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-end: 0;
  block-size: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= 📍 CONTACTO ========================================= */

/* garante que os cards NÃO esticam à altura do formulário */
.contact-page .contact-page-grid{
  align-items: start;
}
.contact-page .contact-info,
.contact-page .contact-form{
  align-self: start;
}

/* hero suave (mantém igual ao resto do site) */
.contact-page .soft-gradient{
  background: linear-gradient(135deg, #ffeaf4, #ffd8eb);
  padding: 3.5rem 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-page .subtitle{
  color: var(--muted);
  margin: 10px 0 0 0;
}

/* cards: usa o mesmo look base do site */
.contact-page .contact-info.card,
.contact-page .contact-form.card{
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* títulos */
.contact-page .contact-title{
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
  color: var(--ink);
  position: relative;
}
.contact-page .contact-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--pink), #f9a8d4);
}

/* lista de info mais “clean” e alinhada */
.contact-page .contact-list-cards{
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: grid;
  gap: 10px;
}

.contact-page .contact-list-cards li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #fff7fa);
  color: #333;
  line-height: 1.35;
}

/* ícone em “pill” para ficar consistente */
.contact-page .contact-list-cards .icon{
  inline-size: 34px;
  block-size: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffe6ee;
  flex: 0 0 34px;
}

.contact-page .contact-list-cards strong{
  color: var(--pink-700);
  font-weight: 700;
  margin-right: 6px;
}

/* mapa: sem espaço branco, com altura fixa boa */
.contact-page .map-heading{
  margin: 1rem 0 0.6rem;
  color: #333;
  font-weight: 800;
  font-size: 1rem;
}

.contact-page .contact-map{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.contact-page .contact-map iframe{
  display: block;
  width: 100%;
  height: 260px; /* ✅ altura boa e consistente */
}

/* link como botão (não azul “default”) */
.contact-page .map-link{
  display: block;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 800;
  color: var(--pink-700);
  background: #fff;
  border-top: 1px solid var(--border);
  transition: 0.2s ease;
}

.contact-page .map-link:hover{
  background: linear-gradient(90deg, #fbcfe8, var(--pink));
  color: #fff;
}

/* botão submit igual ao site (só full width) */
.contact-page .btn-contact-submit{
  width: 100%;
}

/* reCAPTCHA centrado e responsivo */
.contact-page .recaptcha-row{
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
@media (max-width: 420px){
  .contact-page .g-recaptcha{
    transform: scale(0.92);
    transform-origin: center;
  }
}

/* ========================================= 👣 FOOTER ========================================= */
.site-footer {
  background: #f9fafb;
  border-top: 1px solid #eaeaea;
  margin-top: 80px;
  padding-top: 56px;
  font-size: 0.9rem;
  color: #555;
}

/* ✅ por defeito: VERTICAL (small + medium) */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* 1 coluna */
  gap: 26px;
  margin-bottom: 40px;
  text-align: center;
}

/* para o conteúdo não ficar “muito estreito” em ecrãs médios */
.site-footer .footer-col {
  max-width: 560px;
  margin: 0 auto;
}

.site-footer .footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #333;
}

.site-footer .footer-desc {
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.site-footer .footer-list,
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-list li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  /* ✅ centraliza em vertical */
  line-height: 1.45;
  word-break: break-word;
}

.site-footer .footer-links li {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  text-decoration: none;
  color: #555;
  transition: color .2s ease;
  word-break: break-word;
}

.site-footer .footer-links a:hover {
  color: #d63384;
}

.site-footer .footer-bottom {
  border-top: 1px solid #eaeaea;
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* ✅ só em janelas GRANDES: HORIZONTAL (4 colunas) */
@media (min-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    align-items: start;
  }

  .site-footer .footer-col {
    max-width: none;
    margin: 0;
  }

  .site-footer .footer-list li {
    justify-content: flex-start;
    /* ✅ alinha à esquerda em desktop */
  }
}

.site-footer .footer-brand{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #333;
}

/* ========================================= 🔔 ALERTAS / FLASH MESSAGES ========================================= */
.flash-messages,
.flash-wrapper {
  inline-size: 100%;
  max-inline-size: 900px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-block-end: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeSlideIn 0.45s ease-out forwards;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.alert.success,
.alert-success {
  background: #e8f8ef;
  border-color: #bde5c4;
  color: #226b36;
}

.alert.error,
.alert-error {
  background: #fde9ec;
  border-color: #f2c7ce;
  color: #822020;
}

.alert.warning,
.alert-warning {
  background: #fff8e4;
  border-color: #f4e0a4;
  color: #8a6b1a;
}

.alert.info,
.alert-info {
  background: #fff2f5;
  border-color: #f5ccd7;
  color: #a14b67;
}

.alert.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= 👤 MENU DO UTILIZADOR (HEADER) ========================================= */
.user-menu {
  position: relative;
  display: inline-block;
  margin-inline-start: 1.5rem;
}

.user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffe8f0;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-family: inherit;
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.user-toggle:hover {
  background: #ffdbe9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.avatar {
  inline-size: 30px;
  block-size: 30px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.user-greet {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.user-dropdown {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 6px);
  min-inline-size: 230px;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(246, 187, 200, 0.45);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 50;
}

.user-dropdown.show {
  display: flex;
}

.dropdown-section+.dropdown-section {
  margin-block-start: 0.5rem;
}

.dropdown-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem 0;
  color: #f18fb4;
}

.dropdown-link,
.user-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.9rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #444;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.dropdown-link:hover,
.user-dropdown a:hover {
  background: #ffe9f1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(246, 187, 200, 0.35);
}

.dropdown-icon {
  font-size: 1rem;
}

.dropdown-text {
  flex: 1;
}

.dropdown-divider {
  block-size: 1px;
  margin: 0.6rem 0 0.7rem 0;
  background: linear-gradient(to right, transparent, #ffd1e0, transparent);
}

.dropdown-footer {
  margin-block-start: 0.4rem;
  padding-block-start: 0.4rem;
  border-block-start: 1px dashed #ffd1e0;
}

.dropdown-logout {
  color: #d35b71;
}

.dropdown-logout:hover {
  background: #ffe1e9;
}

/* ========================================= 💬 FEEDBACKS – HOME (grade simples) ========================================= */
.feedback-section {
  background: linear-gradient(180deg, #fff, #fff8fb);
  padding: 80px 0;
  border-block-start: 1px solid var(--border);
  border-block-end: 1px solid var(--border);
}

.feedback-section .section-header {
  text-align: center;
  margin-block-end: 40px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feedback-grid .feedback-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feedback-grid .feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.feedback-grid .feedback-card .stars {
  color: var(--pink-700);
  font-weight: 700;
  font-size: 18px;
  margin-block-end: 10px;
}

.feedback-grid .feedback-card blockquote {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.feedback-grid .feedback-card small {
  color: var(--ink);
  font-weight: 600;
  display: block;
}

/* ========================================= 💬 FEEDBACKS ADMIN ========================================= */
.container-feedbacks {
  max-inline-size: 850px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.feedbacks-title {
  color: #f18fb4;
  font-weight: 600;
  margin-block-end: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.container-feedbacks .feedback-card {
  background: #fff;
  border: 1px solid #ffdce9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(247, 182, 194, 0.25);
  padding: 1rem 1.5rem;
  margin-block-end: 1.2rem;
  transition: transform 0.2s ease;
}

.container-feedbacks .feedback-card:hover {
  transform: translateY(-3px);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback-author {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.feedback-stars {
  color: #f3b63f;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.feedback-subject {
  font-weight: 500;
  color: #f18fb4;
  font-size: 1rem;
  margin: 0.4rem 0;
}

.feedback-comment {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0.3rem 0 0.8rem 0;
  word-wrap: break-word;
}

.see-more {
  color: #f18fb4;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.see-more:hover {
  color: #ff6b9e;
  text-decoration: underline;
}

.feedback-actions {
  display: flex;
  gap: 10px;
}

.btn-approve,
.btn-reject {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.btn-approve {
  background: #d8f8da;
  color: #2e7d32;
}

.btn-approve:hover {
  background: #c2efc5;
}

.btn-reject {
  background: #ffd1e0;
  color: #a71d2a;
}

.btn-reject:hover {
  background: #ffb8cc;
}

/* ========================================= 🛠️ ÁREA ADMIN – TABS + MODAL ========================================= */
.admin-tabs,
.admin-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  margin: 24px auto 10px;
  flex-wrap: wrap;
}

.admin-tab,
.admin-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #f6cfe0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(247, 182, 194, 0.15);
  font-size: 0.9rem;
  font-weight: 500;
  color: #57536b;
  text-decoration: none;
  transition: all 0.18s ease;
}

.admin-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 18px;
  block-size: 18px;
  border-radius: 999px;
  background: #ffe6f0;
  font-size: 0.75rem;
}

.admin-tab:hover,
.admin-nav a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(247, 182, 194, 0.2);
  border-color: #f39cbc;
}

.admin-tab.is-active,
.admin-nav a.active {
  background: linear-gradient(135deg, #ff4fa6, #ff81c0);
  color: #ffffff;
  border-color: transparent;
}

.admin-tab.is-active .admin-tab-icon {
  background: rgba(255, 255, 255, 0.18);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .35);
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-card {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  border: 1px solid var(--border);
}

.modal-textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  padding: 12px;
  background: #f8f9fa;
  resize: vertical;
  outline: none;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.btn-modal-cancel {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  background: #f1f3f5;
  color: #495057;
  cursor: pointer;
}

.btn-modal-cancel:hover {
  background: #e9ecef;
}

/* dias sem disponibilidade */
.day-disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.25);
}

/* slots disponíveis (eventos) */
.fc .slot-available {
  border: 1px solid #ffd1e0 !important;
  border-radius: 12px !important;
  padding: 2px 6px !important;
  box-shadow: 0 8px 20px rgba(247, 182, 194, 0.25) !important;
}

.btn-desmarcar {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff5f5;
  color: #c53030;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}

.btn-desmarcar:hover {
  background: #c53030;
  color: #fff;
}

.action-buttons form {
  margin: 0;
}

/* reCAPTCHA */
.g-recaptcha {
  margin-top: 14px;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.featured-service-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  /* texto | imagem */
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid #f2dfe4;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(26, 12, 12, 0.08);
  padding: 32px;
}

.featured-content h3 {
  margin: 0 0 10px;
}

.feature-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #d392a0;
  font-weight: 700;
}

.featured-action {
  margin-top: 18px;
}

.featured-media {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  /* ✅ quadrada */
  border-radius: 22px;
  overflow: hidden;
  justify-self: end;
  /* encosta à direita */
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Mobile: fica empilhado e a imagem continua quadrada */
@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .featured-media {
    justify-self: center;
    max-width: 280px;
  }
}

/* ========================================= ✅ HEADER LOCK (para não mudar no admin) Cola NO FIM do theme.css ========================================= */
.site-header {
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: saturate(160%) blur(10px) !important;
  border-bottom: 1px solid var(--border) !important;
}

.site-header .brand-mark {
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.site-header .brand-sub {
  color: var(--muted) !important;
}

.site-header .nav-wrapper {
  align-items: center !important;
  justify-content: space-between !important;
}

/* links do menu */
.site-header .nav a.nav-link {
  color: var(--ink) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.site-header .nav a.nav-link:hover {
  background: var(--pink) !important;
  color: #fff !important;
}

/* link ativo */
.site-header .nav-link-active {
  background: #ffe6ee !important;
}

/* user menu */
.site-header .user-toggle {
  background: #ffe8f0 !important;
  color: var(--ink) !important;
  border: none !important;
}

/* botões entrar/registar */
.site-header .btn {
  text-decoration: none !important;
}

.site-header a[href*="registar"] {
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
}

/* ✅ Container do header independente do .container (não é afetado pelo admin) */
.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 30px;
}

@media (max-width: 768px) {
  .nav-container {
    padding-inline: 16px;
  }
}

/* ❌ Remover mini menu/tabs do admin em todo o site */
.admin-tabs,
.admin-nav {
  display: none !important;
}

/* ===============================
   CONTACTO: fix mobile 
================================ */
@media (max-width: 520px){
  /* cada item vira “stack” (label em cima) */
  .contact-page .contact-list-cards li{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* ícone ao lado do título (não sozinho em cima) */
  .contact-page .contact-list-cards .icon{
    inline-size: 32px;
    block-size: 32px;
  }

  /* evita partir “E-mail” em E- / mail, e quebra o resto bem */
  .contact-page .contact-list-cards strong{
    white-space: nowrap;
  }

  .contact-page .contact-list-cards li{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* links (como telefone clicável) não ficam azuis “gigantes” */
  .contact-page .contact-list-cards a{
    color: inherit;
    text-decoration: none;
    font-weight: 600;
  }
}

/* ===============================
   FullCalendar: mobile fix
================================ */
@media (max-width: 700px){
  #calendar{
    padding: 10px;
  }

  /* título menor */
  .fc .fc-toolbar-title{
    font-size: 1.1rem !important;
    line-height: 1.2;
  }

  /* toolbar em coluna (não estoura) */
  .fc .fc-toolbar{
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  /* botões menores */
  .fc .fc-button{
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
  }

  /* cabeçalho dos dias menor */
  .fc .fc-col-header-cell-cushion{
    font-size: 0.8rem !important;
    padding: 6px 2px !important;
  }

  /* horas menor */
  .fc .fc-timegrid-slot-label{
    font-size: 0.8rem !important;
  }

  /* eventos/slots mais compactos */
  .fc .fc-timegrid-event{
    font-size: 0.8rem !important;
    padding: 2px 4px !important;
  }
}

/* =========================================
   📱 Minhas Marcações — melhoria mobile
========================================= */
@media (max-width: 520px){
  /* hero mais compacto e legível */
  .page-hero{
    padding: 28px 0 !important;
  }
  .hero-title{
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
  .hero-subtitle{
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }

  /* card principal menos “gordo” */
  .main-section{
    margin: 14px auto 40px !important;
  }
  .floating-card{
    padding: 18px !important;
    border-radius: 18px !important;
  }

  /* cabeçalho do card vira coluna */
  .card-header-flex{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  /* botão novo agendamento: full width + cor do theme */
  .btn-new-schedule{
    width: 100% !important;
    text-align: center !important;
    background: #f7b6c2 !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
  }

  /* nota mais pequena e sem “italico gigante” */
  .table-footer-note{
    text-align: left !important;
    font-size: .85rem !important;
    margin-top: 8px !important;
  }

  /* tabela: compactar */
  .elegant-table{
    min-width: 520px; /* ainda permite scroll, mas menos agressivo */
  }
  .elegant-table th,
  .elegant-table td{
    padding: 12px 10px !important;
    font-size: .9rem !important;
  }

  /* serviço não quebra em 3 linhas gigantes */
  .service-name{
    display: inline-block;
    max-width: 180px;
    white-space: normal;
  }

  /* pills de estado mais pequenas */
  .status-pill{
    padding: 6px 10px !important;
    font-size: .7rem !important;
  }

  /* botão cancelar mais compacto */
  .btn-cancel{
    padding: 8px 12px !important;
    border-radius: 12px !important;
  }
}

/* =========================================
   ✅ Botões: tudo rosa (#f7b6c2)
========================================= */
.btn-primary{
  background: #333;
  color: #fff;
}
.btn-primary:hover{
  background: #f7b6c2;
  filter: brightness(0.96);
}

/* =========================================
   ✅ ADMIN (tabelas + filtros) — estilo global
   (serve para Marcações/Mensagens/Feedbacks/Serviços)
========================================= */

.main-section{
  margin: 20px auto 60px;
}

.floating-card{
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* header da zona de filtros */
.toolbar-header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.toolbar-title{
  font-weight: 800;
  color: #343a40;
  margin: 0;
}

/* filtros */
.filter-form{
  display:flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.input-wrapper{ display: inline-flex; }

.modern-input{
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.modern-input:focus{
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(247,182,194,.25);
}

.search-wrapper{
  position: relative;
}

.search-wrapper .text-input{
  padding-right: 44px; /* espaço para a lupa */
}

.search-btn{
  position:absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #f7b6c2;
  color: #fff;
  cursor: pointer;
}

/* tabela */
.table-responsive{
  overflow-x: auto;
}

.elegant-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px; /* evita esmagar colunas em desktop pequeno */
}

.elegant-table th{
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #adb5bd;
  font-weight: 800;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  letter-spacing: .4px;
}

.elegant-table td{
  padding: 14px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fff;
  font-size: 0.95rem;
}

.elegant-table tr:hover td{
  background: #fffbfd;
}

/* cliente */
.client-info{
  display:flex;
  align-items:center;
  gap: 12px;
}

.avatar-circle{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #c2185b;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  flex-shrink: 0;
}

.client-name{
  font-weight: 700;
  color: #343a40;
}

/* badge serviço */
.service-badge{
  display:inline-block;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.06);
  color: #6c757d;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* status pills (já tinhas, mas garantimos consistência) */
.status-pill{
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  display:inline-block;
}

.status-pill.green{ background:#e6fffa; color:#047857; }
.status-pill.orange{ background:#fffaf0; color:#c05621; }
.status-pill.red{ background:#fff5f5; color:#c53030; }
.status-pill.gray{ background:#f7f7f7; color:#718096; }

/* botões de ação (icons) */
.action-buttons{
  display:flex;
  justify-content: flex-end;
  gap: 8px;
}

.btn-icon{
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight: 900;
}

.btn-icon.check{ background:#e6fffa; color:#047857; }
.btn-icon.check:hover{ background:#047857; color:#fff; }

.btn-icon.times{ background:#fff5f5; color:#c53030; }
.btn-icon.times:hover{ background:#c53030; color:#fff; }

/* botão “Desmarcar” estilo pill */
.pill-btn{
  border:none;
  border-radius:999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor:pointer;
}

.pill-btn-red{ background:#fff5f5; color:#c53030; }
.pill-btn-red:hover{ background:#c53030; color:#fff; }

/* mobile: filtros em coluna */
@media (max-width: 768px){
  .filter-form{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .modern-input{
    width: 100%;
  }
  .elegant-table{
    min-width: 720px;
  }
}

/* ===============================
   ✅ MENU MOBILE (alinhar e “endireitar”)
================================ */
@media (max-width: 980px){
  /* o menu aberto deve ser coluna e centrado */
  .site-header .nav{
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;   /* ✅ evita ficar torto */
  }

  /* links a 100% e centrados */
  .site-header .nav a.nav-link{
    width: 100% !important;
    text-align: center !important;
  }

  /* bloco do utilizador (Olá, Ana) não “quebra” o layout */
  .site-header .user-menu{
    width: 100% !important;
    margin-left: 0 !important;
  }

  .site-header .user-toggle{
    width: 100% !important;
    justify-content: center !important;
  }

  /* se o dropdown estiver a aparecer como barra grande, limita o tamanho */
  .site-header .user-dropdown{
    width: 100% !important;
  }
}

.admin-page-title{
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 14px;
}

@media (max-width: 520px){
  .floating-card h1,
  .floating-card h2{ font-size: 1.25rem; }
}

/* ===============================
   ADMIN SERVIÇOS (theme.css)
   substitui o <style> da página
================================ */

/* título da página (Lista de Serviços) */
.admin-page-title{
  margin: 0;
  font-weight: 900;
  color: #343a40;
  font-size: 1.35rem;   /* ✅ aumenta aqui */
}

/* caixa principal */
.floating-card{
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(180,180,200,0.15);
  border: 1px solid rgba(255,255,255,0.8);
}

/* header com pesquisa */
.toolbar-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-form{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.input-wrapper{ position: relative; }
.search-wrapper{ display:flex; align-items:center; }

/* botão de pesquisa (lupa) */
.search-btn{
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 10px;
}

/* inputs */
.modern-input{
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  width: 100%;
  font-size: 0.95rem;
}

/* criar serviço */
.create-box{
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.create-title{
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #495057;
  font-size: 1rem;
}

/* grelha do formulário */
.create-form{
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr 1.4fr auto;
  gap: 10px;
  align-items: start;
}

.create-form textarea{
  grid-column: 1 / span 4;
}

/* ✅ botão principal nesta página (rosa #f7b6c2) */
.btn-solid{
  background: #f7b6c2;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn-solid:hover{
  filter: brightness(0.96);
}

/* tabela */
.table-responsive{ overflow-x: auto; }

.elegant-table{
  width: 100%;
  border-collapse: collapse;
}

.elegant-table th{
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #6c757d;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

.elegant-table td{
  padding: 14px 10px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: top;
}

.index-col{
  color: #adb5bd;
  font-weight: 800;
}

.obs-col{
  max-width: 380px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* botões de ações */
.action-buttons{
  display:flex;
  justify-content:flex-end;
  gap: 8px;
}

.action-buttons form{ margin: 0; }

.btn-icon{
  border: 1px solid #e9ecef;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 800;
}

.btn-icon:hover{
  border-color: #f7b6c2;
  color: #f7b6c2;
}

.btn-icon.times:hover{
  border-color: #dc3545;
  color: #dc3545;
}

/* modal */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 999;
}

.modal-card--site{
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  width: min(560px, 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
}

.modal-title{
  margin: 0 0 6px;
  font-weight: 900;
  color: #343a40;
}

.modal-subtitle{
  margin: 0 0 16px;
  color: #6c757d;
  font-size: 0.95rem;
}

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

.modal-actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 14px;
}

.btn-modal{
  border:none;
  border-radius: 12px;
  padding: 10px 14px;
  cursor:pointer;
  font-weight: 800;
}

.btn-modal--ghost{
  background: #f1f3f5;
  color: #495057;
}

.btn-modal--primary{
  background: #f7b6c2;
  color: #fff;
}

/* responsivo */
@media (max-width: 900px){
  .create-form{ grid-template-columns: 1fr; }
  .create-form textarea{ grid-column: auto; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* =========================================
   👇 Seta no botão do utilizador
========================================= */
.user-toggle{
  position: relative;
  gap: 10px;                 /* já tens, mas garante espaço */
}

/* “Menu” só ajuda no mobile */
.user-hint{
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 8px;
}

/* a seta */
.chevron{
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  transition: transform .18s ease;
  margin-left: 4px;
}

/* quando o dropdown abre, roda a seta */
.user-toggle.is-open .chevron{
  transform: rotate(180deg);
}

/* no mobile mostra “Menu” para ficar óbvio */
@media (max-width: 980px){
  .user-hint{ display: inline; }
  .chevron{ font-size: 1.05rem; }
}

.extras-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe6ee;
  border: 1px solid #f7b6c2;
  color: #262525;
  font-weight: 800;
  font-size: .78rem;
}

.extras-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:.78rem;
  background:#fff2f5;
  border:1px solid #ffd1e0;
  color:#a14b67;
  cursor: help;
  white-space:nowrap;
}

.modal-backdrop { display: none; }
  .modal-backdrop.open {
    display: flex;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.45);
    z-index: 9999;
  }