/* ABC do Evento — público + admin */

:root {
  --bg: #faf8f5;
  --surface: #fff;
  --text: #1c1917;
  --muted: #78716c;
  --accent: #e35336;
  --accent-dark: #c43a22;
  --accent-light: #ef9a88;
  --accent-tint: #fdf0ec;
  --accent-tint-strong: #fce4de;
  --accent-ring: rgba(227, 83, 54, 0.15);
  --line: #e7e5e4;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
  --radius: 12px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.main-content {
  flex: 1;
}

/* Header — faixa compacta com logo legível */
/* Header */
.site-header {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
  min-height: 64px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo--image {
  display: inline-block;
  line-height: 0;
}

.logo--image:hover {
  opacity: 0.92;
}

.logo__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: min(320px, 55vw);
  aspect-ratio: 1408 / 768;
  object-fit: contain;
  object-position: left center;
}

.site-header__menu-toggle {
  display: none;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}

.site-header__menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.site-header__menu-icon::before {
  top: -7px;
}

.site-header__menu-icon::after {
  top: 7px;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-main__link,
.nav-main a {
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-main__link:hover,
.nav-main a:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header__inner {
    flex-wrap: wrap;
    min-height: 56px;
    gap: 0.5rem;
    padding-block: 0.35rem;
  }

  .site-header__brand {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .logo__img {
    max-height: 46px;
    max-width: min(280px, calc(100vw - 5rem));
  }

  .site-header__menu-toggle {
    display: flex;
    order: 2;
  }

  .nav-main {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-left: 0;
    padding: 0.85rem 0 1.1rem;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main__link,
  .nav-main a {
    display: block;
    width: 100%;
    max-width: 260px;
    padding: 0.55rem 0.75rem;
    text-align: center;
  }
}

@media (min-width: 901px) {
  .site-header__menu-toggle {
    display: none !important;
  }

  .nav-main {
    display: flex !important;
  }
}

/* Hero / carrossel — largura total, conteúdo centralizado */
.hero-carousel {
  background: #141414;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel__track {
  position: relative;
  width: 100%;
  height: clamp(300px, 42.5vh, 400px);
}

@media (min-width: 720px) {
  .carousel__track {
    height: clamp(520px, 62vh, 780px);
  }

  .carousel__media {
    background-position: center 38%;
  }
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__media {
  position: absolute;
  inset: 0;
  background-color: #1c1917;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.carousel__media--placeholder {
  background-image: linear-gradient(135deg, #44403c 0%, #1c1917 100%);
}

.carousel__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.carousel__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.5rem 1.25rem 3.25rem;
  text-align: center;
  color: #fff;
}

.carousel__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.carousel__ornament {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.1rem 0 0.35rem;
}

.carousel__ornament span {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.carousel__ornament i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  font-style: normal;
}

.carousel__title {
  margin: 0;
  max-width: min(92vw, 56rem);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
}

.carousel__title a {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.carousel__title a:hover {
  color: #fef3c7;
}

.carousel__title--plain {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.carousel__lead {
  margin: 0;
  max-width: min(92vw, 48rem);
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.carousel__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.carousel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.carousel__cta--primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(28, 25, 23, 0.72);
  color: #fff;
}

.carousel__cta--primary:hover {
  background: rgba(28, 25, 23, 0.92);
  color: #fef3c7;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.carousel__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.carousel__btn--prev {
  left: 0.85rem;
}

.carousel__btn--prev::before {
  content: "‹";
  font-size: 1.45rem;
  line-height: 1;
}

.carousel__btn--next {
  right: 0.85rem;
}

.carousel__btn--next::before {
  content: "›";
  font-size: 1.45rem;
  line-height: 1;
}

.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}

.carousel__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

@media (min-width: 720px) {
  .carousel__title,
  .carousel__lead {
    white-space: nowrap;
    max-width: none;
  }

  .carousel__title {
    font-size: clamp(2.05rem, 3.4vw, 3.15rem);
  }

  .carousel__lead {
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  }

  .carousel__content {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
}

@media (max-width: 719px) {
  .carousel__content {
    padding: 1rem 0.85rem 2.75rem;
    gap: 0.4rem;
  }

  .carousel__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .carousel__ornament span {
    width: 2rem;
  }

  .carousel__title {
    max-width: 100%;
    padding: 0 0.35rem;
    font-size: clamp(1.4rem, 6.8vw, 1.9rem);
    line-height: 1.18;
    text-wrap: balance;
  }

  .carousel__lead {
    max-width: 20rem;
    padding: 0 0.65rem;
    font-size: clamp(0.84rem, 3.8vw, 0.95rem);
    line-height: 1.4;
  }

  .carousel__cta {
    min-height: 2.45rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.72rem;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
  }

  .carousel__btn--prev {
    left: 0.45rem;
  }

  .carousel__btn--next {
    right: 0.45rem;
  }
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section__lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 65ch;
}

.section__cta {
  margin-top: 2rem;
}

.section__title--center {
  text-align: center;
  margin-bottom: 2rem;
}

/* Como funciona — fluxo em 3 passos */
.section--how {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.how-flow {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .how-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.how-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .how-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.6rem;
    right: -0.85rem;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid var(--accent-light);
    border-right: 2px solid var(--accent-light);
    transform: rotate(45deg);
    z-index: 1;
  }
}

.how-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-tint);
  border: 1px solid var(--accent-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.how-flow__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.how-flow__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 28ch;
}

/* Cards simples (usado em "Sobre") */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem;
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.06);
}

.card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.section--blog,
.section--blog-post {
  background: var(--bg);
}

.section--blog {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.blog-empty {
  text-align: center;
  margin: 2rem 0 0;
}

.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.06);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.07);
}

.blog-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f0eb;
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.03);
}

.blog-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--accent-tint) 0%, var(--accent-tint-strong) 100%);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem 1.35rem 1.35rem;
}

.blog-card__date {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8178;
}

.blog-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.blog-card__title a {
  color: var(--text);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--accent-dark);
}

.blog-card__excerpt {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #78716c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8178;
  text-decoration: none;
}

.blog-card__more:hover {
  color: var(--accent-dark);
}

.blog-card__arrow {
  font-size: 0.85rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section--blog {
    padding-top: 1.75rem;
    padding-bottom: 2.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.blog-post__back {
  margin: 0 0 1rem;
}

.blog-post__back a {
  text-decoration: none;
  font-weight: 600;
}

.blog-post__header {
  margin-bottom: 1.5rem;
  max-width: 72ch;
}

.blog-post__date {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8178;
  margin-bottom: 0.65rem;
}

.blog-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.blog-post__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.blog-post__cover {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-post__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  align-items: start;
}

.blog-post-main {
  min-width: 0;
}

.blog-post-sidebar {
  position: sticky;
  top: 1.5rem;
}

.blog-post-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-post-cta {
  background: #f7f4ed;
  border-color: var(--border);
  text-align: center;
}

.blog-post-cta__icon {
  display: block;
  font-size: 2rem;
  color: #25d366;
  margin-bottom: 0.75rem;
}

.blog-post-cta__label {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-post-cta__company {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.blog-post-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.blog-post-cta__btn:hover {
  filter: brightness(1.08);
  color: #fff;
  text-decoration: none;
}

.blog-post-related__heading {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-post-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-post-related__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
}

.blog-post-related__list li:last-child .blog-post-related__item {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-post-related__item:hover {
  color: var(--accent-dark);
}

.blog-post-related__item:hover .blog-post-related__title {
  text-decoration: underline;
}

.blog-post-related__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.blog-post-related__thumb--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f0eb;
  color: #a8a29e;
  font-size: 1rem;
}

.blog-post-related__title {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 991px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }
}

.prose {
  max-width: 72ch;
  line-height: 1.7;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  margin: 1.75rem 0 0.65rem;
  line-height: 1.25;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose a {
  font-weight: 600;
}

.prose strong {
  font-weight: 700;
}

.prose img,
.legal-page__content img,
.pro-bio__text img {
  max-width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.prose img.ql-float-left,
.legal-page__content img.ql-float-left,
.pro-bio__text img.ql-float-left {
  float: left;
  max-width: 46%;
  margin: 0.35rem 1.25rem 0.85rem 0;
}

.prose img.ql-float-right,
.legal-page__content img.ql-float-right,
.pro-bio__text img.ql-float-right {
  float: right;
  max-width: 46%;
  margin: 0.35rem 0 0.85rem 1.25rem;
}

.prose img.ql-float-left[style*="width"],
.prose img.ql-float-right[style*="width"],
.legal-page__content img.ql-float-left[style*="width"],
.legal-page__content img.ql-float-right[style*="width"],
.pro-bio__text img.ql-float-left[style*="width"],
.pro-bio__text img.ql-float-right[style*="width"] {
  max-width: 100%;
}

.prose::after,
.legal-page__content::after,
.pro-bio__text::after {
  content: "";
  display: table;
  clear: both;
}

/* Grid 3 col — inspirado em guias de celebrantes */
.pro-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
}

.pro-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12);
}

.pro-card__thumb {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
}

.pro-card__thumb--169 {
  aspect-ratio: 16 / 9;
}

.pro-card__thumb--empty {
  background: linear-gradient(145deg, #d6d3d1, #a8a29e);
}

.pro-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 5.5rem;
}

.pro-card__body--founding {
  position: relative;
  padding-right: 4.75rem;
}

.pro-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.pro-card__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.pro-card__cat {
  font-size: 0.85rem;
  color: var(--muted);
}

.founding-partner-seal {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.founding-partner-seal--card {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  width: clamp(52px, 16vw, 72px);
  max-height: 72px;
  opacity: 0.95;
}

.founding-partner-seal--carousel {
  width: clamp(56px, 11vw, 84px);
  max-height: 84px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.pro-profile__hero-seal {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.55rem;
  line-height: 0;
  cursor: help;
  vertical-align: middle;
}

.pro-profile__hero-seal .founding-partner-seal {
  display: inline-block;
  width: clamp(48px, 9vw, 72px);
  max-width: none;
  max-height: 72px;
  height: auto;
  vertical-align: middle;
  pointer-events: auto;
}

.pro-profile__hero {
  margin-bottom: 1.5rem;
}

.pro-profile__title {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.pro-profile__name {
  flex: 0 1 auto;
  min-width: 0;
}

/* About boxes */
.about-boxes {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .about-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-box h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.about-box p {
  margin: 0;
  color: var(--muted);
}

.about-box p strong,
.about-box a {
  color: var(--text);
}

/* About boxes */

.pro-profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(227, 83, 54, 0.22);
}

.pro-profile__layout {
  display: grid;
  gap: 1.35rem;
  margin-top: 0.25rem;
  align-items: start;
  grid-template-areas:
    "aside"
    "main";
}

.pro-profile__main {
  grid-area: main;
  min-width: 0;
}

.pro-profile__aside {
  grid-area: aside;
  min-width: 0;
}

@media (min-width: 1024px) {
  .pro-profile__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-template-areas: "main aside";
    gap: 2.5rem;
    margin-top: 1.25rem;
  }

  .pro-profile__aside {
    position: sticky;
    top: calc(var(--nav-h, 80px) + 1rem);
    align-self: start;
  }
}

@media (max-width: 1023px) {
  .pro-profile__layout {
    gap: 1.15rem;
  }

  .pro-profile__hero {
    margin-bottom: 1.15rem;
  }

  .pro-profile__title {
    margin-bottom: 0.65rem;
  }

  .pro-profile__aside .pro-contact-card {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .pro-profile__aside .pro-contact-card__title {
    margin-bottom: 0.85rem;
  }

  .pro-profile__aside .pro-contact-btn {
    padding: 0.75rem 0.9rem;
  }

  /* Espaço para o próximo bloco (vídeo ou foto) ficar parcialmente visível */
  .pro-profile__main > .pro-section:first-child {
    margin-top: 0.15rem;
  }
}

.pro-section {
  margin-bottom: 2.5rem;
}

.pro-profile__main > .pro-section:last-child {
  margin-bottom: 0;
}

.pro-section:last-child {
  margin-bottom: 0;
}

.pro-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.pro-section__title--video {
  gap: 0.45rem;
}

.pro-section__title-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.88;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17 10.5V7a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1v-3.5l4 4v-11l-4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pro-section__body {
  max-width: 65ch;
}

.pro-bio__text {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 72ch;
}

.pro-bio__text p {
  margin: 0 0 1rem;
}

.pro-bio__text p:last-child {
  margin-bottom: 0;
}

.pro-bio__text strong,
.pro-bio__text b {
  color: var(--text);
  font-weight: 700;
}

.pro-bio__text ul,
.pro-bio__text ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.pro-bio__text blockquote {
  margin: 0 0 1rem;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text-mid, var(--muted));
}

.pro-bio__text a {
  color: var(--accent-dark, var(--accent));
}

.pro-bio__text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.75rem 0;
}

.pro-bio__text h1,
.pro-bio__text h2,
.pro-bio__text h3,
.pro-bio__text h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 1.25rem 0 0.65rem;
  line-height: 1.25;
}

.pro-gallery--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pro-gallery--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-gallery__item {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs, var(--shadow));
  aspect-ratio: 4 / 3;
  background: var(--line);
  display: block;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}

.pro-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pro-gallery__item:hover img {
  transform: scale(1.03);
}

.pro-videos--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pro-videos--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0c0a09;
  box-shadow: var(--shadow-xs);
}

.pro-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Lightbox / zoom da galeria */
body.lb-open { overflow: hidden; }
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 18, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 3.25rem 2.5rem;
  cursor: zoom-out;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lb-stage {
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: default;
}
.lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 2rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  user-select: none;
}
.lb-counter {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}
.lb-close,
.lb-nav {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.lb-close:hover,
.lb-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
  z-index: 2;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  z-index: 2;
}
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
.lb-nav[hidden] { display: none !important; }
@media (max-width: 640px) {
  .lb-overlay { padding: 3.25rem 0.75rem 1.5rem; }
  .lb-prev { left: 0.35rem; }
  .lb-next { right: 0.35rem; }
  .lb-nav,
  .lb-close { width: 2.4rem; height: 2.4rem; font-size: 1.2rem; }
}

.pro-contact-card {
  background: var(--white, #fff);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm, var(--shadow-xs));
  border: 1px solid var(--line);
  text-align: left;
}

.pro-contact-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  text-align: left;
  color: var(--text);
}

.pro-contact-card__lead {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--muted, var(--text-mid));
  line-height: 1.45;
}

.pro-contact-meta {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.pro-contact-meta__label {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, var(--text-light));
  font-family: var(--font-sans);
}

.pro-contact-meta__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.pro-contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.pro-contact-card__empty {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

.pro-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

.pro-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.12);
}

.pro-contact-btn--primary {
  background: var(--accent, #e35336);
  border-color: var(--accent, #e35336);
  color: #fff;
}

.pro-contact-btn--primary:hover {
  background: var(--accent-dark, #c43a22);
  border-color: var(--accent-dark, #c43a22);
  color: #fff;
}

.pro-contact-btn--secondary {
  background: var(--white);
  border-color: var(--accent, #e35336);
  color: var(--accent, #e35336);
  justify-content: center;
}

.pro-contact-btn--secondary:hover {
  background: var(--accent-tint, #fdf0ec);
  border-color: var(--accent-dark, #c43a22);
  color: var(--accent-dark, #c43a22);
}

.pro-contact-btn__icon {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.pro-contact-btn__icon--wa {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.pro-contact-btn--primary .pro-contact-btn__icon--wa {
  background: #fff;
}

.pro-contact-btn__icon--web {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.45 2.1 1.17 2.83l-.83 1.1zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.pro-contact-btn__icon--ig {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 01-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 017.8 2m-.2 2A3.6 3.6 0 004 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 003.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5M12 7a5 5 0 110 10 5 5 0 010-10m0 2a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E");
}

.pro-contact-btn__icon--external {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.65;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
}

.back-link {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn--danger {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.btn--danger:hover {
  background: #991b1b;
}

.icon {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.icon--web {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.45 2.1 1.17 2.83l-.83 1.1zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.icon--ig {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 01-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 017.8 2m-.2 2A3.6 3.6 0 004 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 003.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5M12 7a5 5 0 110 10 5 5 0 010-10m0 2a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E");
}

/* Search */
.section--search {
  background: transparent;
}

.section--search-home .section__title {
  margin-bottom: 1.25rem;
}

.section--search-home {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.search-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.search-field--action {
  justify-content: flex-end;
}

.search-field__label-gap {
  display: block;
  min-height: 1.15rem;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .search-field--action .search-field__label-gap {
    min-height: 0;
    height: 1.15rem;
  }
}

.search-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section--search-home .search-form {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .search-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
  }
}

.search-form input,
.search-form select {
  width: 100%;
  box-sizing: border-box;
  min-height: 2.75rem;
  height: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  line-height: 1.25;
  background: var(--surface);
}

.search-form input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

.search-form input[type="search"]::-webkit-search-decoration,
.search-form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-results-count {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.pro-grid--compact {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: #6b7280;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 2.5rem 2rem;
  padding: 2.75rem 0 2.25rem;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__logo {
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__logo-link:hover {
  opacity: 0.85;
}

.site-footer__logo-name,
.site-footer__logo-tld {
  color: #1c1917;
}

.site-footer__tagline {
  margin: 0;
  max-width: 34rem;
  line-height: 1.65;
  color: #6b7280;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a,
.site-footer__contact-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__links a:hover,
.site-footer__contact-link:hover {
  color: #374151;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer__icon {
  flex: 0 0 auto;
  opacity: 0.85;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__social-link:hover {
  color: #374151;
}

.site-footer__bar {
  border-top: 1px solid #e0e0e0;
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem 0 1.35rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca3af;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.site-footer__legal a {
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #6b7280;
}

@media (max-width: 860px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 2rem;
    text-align: center;
  }

  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__logo {
    width: 100%;
  }

  .site-footer__logo-link {
    margin-inline: auto;
  }

  .site-footer__tagline {
    max-width: 22rem;
    margin-inline: auto;
  }

  .site-footer__heading {
    width: 100%;
  }

  .site-footer__links,
  .site-footer__contact {
    align-items: center;
    width: 100%;
  }

  .site-footer__contact-link {
    justify-content: center;
    text-align: center;
  }

  .site-footer__social {
    justify-content: center;
    width: 100%;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

/* Páginas legais (LGPD) */
.legal-page {
  padding-bottom: 2.5rem;
}

.legal-page__meta {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-page__content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.05);
}

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.5rem;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page__content p {
  margin: 0 0 0.85rem;
}

.legal-page__content ul,
.legal-page__content ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-page__content li + li {
  margin-top: 0.35rem;
}

.legal-page__content a {
  word-break: break-word;
}

.legal-page__notice {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Admin */
.admin-body {
  background: #f1f5f9;
}

.admin-bar {
  background: #0f172a;
  color: #e2e8f0;
  padding: 0.75rem 0;
}

.admin-bar a {
  color: #93c5fd;
  text-decoration: none;
  margin-left: 1rem;
}

.admin-bar a:hover {
  text-decoration: underline;
}

.admin-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.admin-page {
  padding: 2rem 0 3rem;
}

.admin-login {
  max-width: 400px;
  padding: 3rem 0;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-form--wide {
  max-width: 720px;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-form input:not([type="checkbox"]):not([type="file"]),
.admin-form textarea,
.admin-form select {
  font: inherit;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
}

.admin-form legend {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0 0.35rem;
}

label.check {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.admin-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.35rem 1rem;
}

.admin-photo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-photo-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  background: #f5f5f4;
  font-weight: 600;
}

.admin-danger {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

.admin-fieldset-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
}

.admin-fieldset-inline legend {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0 0.35rem;
}

.admin-inline-form {
  display: inline;
  vertical-align: middle;
  margin: 0;
}

.admin-table__actions {
  white-space: nowrap;
  vertical-align: middle;
}

.btn--small {
  font-size: 0.8rem;
  padding: 0.3rem 0.55rem;
}

.msg {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.msg--ok {
  background: #dcfce7;
  color: #166534;
}

.msg--err {
  background: #fee2e2;
  color: #991b1b;
}

/* Admin — navegação unificada */
.admin-bar__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
}

.admin-nav__link {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.admin-nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.admin-nav__link--active {
  background: rgba(147, 197, 253, 0.18);
  color: #fff;
}

.admin-nav__link--muted {
  color: #94a3b8;
}

.admin-bar__user {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.admin-bar__user-name {
  font-size: 0.88rem;
  color: #e2e8f0;
}

.admin-bar__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .admin-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-bar__user {
    margin-left: 0;
    justify-content: flex-end;
  }
}

/* Admin — blog */
.admin-body--blog {
  background: #f8fafc;
}

.admin-page--blog {
  padding-top: 1.5rem;
}

.admin-blog-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-blog-topbar__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin: 0;
  line-height: 1.15;
}

.admin-blog-topbar__subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-blog-card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.admin-blog-card--table {
  padding: 0;
  overflow: hidden;
}

.admin-blog-card--table .muted {
  padding: 1.25rem 1.5rem;
  margin: 0;
}

.admin-blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.admin-field:last-child {
  margin-bottom: 0;
}

.admin-field__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.admin-field__req {
  color: #dc2626;
}

.admin-field__input,
.admin-field__textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.admin-field__input:focus,
.admin-field__textarea:focus {
  outline: none;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(227, 83, 54, 0.12);
}

.admin-field__textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.admin-blog-slug-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.25rem;
  align-items: start;
}

.admin-field--grow {
  min-width: 0;
}

.admin-field--status {
  min-width: 9rem;
  padding-top: 0.15rem;
}

.admin-blog-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.admin-blog-status input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #2563eb;
}

.admin-blog-url-preview {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--accent);
  word-break: break-all;
}

.admin-blog-seo {
  margin-bottom: 1.1rem;
  border: 1px dashed #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  background: #fafafa;
}

.admin-blog-seo summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-blog-editor {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.admin-blog-editor .ql-toolbar {
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.admin-blog-editor .ql-container {
  border: 0;
  font-family: var(--font);
  font-size: 1rem;
  min-height: 320px;
}

.blog-cover-field {
  max-width: 100%;
}

.blog-cover-drop {
  height: 140px;
  border: 2px dashed #d6d3d1;
  border-radius: 12px;
  background: #faf8f5;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.blog-cover-drop:hover,
.blog-cover-drop:focus {
  border-color: var(--accent);
  background: var(--accent-tint);
  outline: none;
}

.blog-cover-drop--dragover {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.blog-cover-drop--dragover .blog-cover-drop__text {
  color: var(--accent);
  font-weight: 600;
}

.blog-cover-drop__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  pointer-events: none;
}

.blog-cover-drop__icon {
  font-size: 1.75rem;
  color: #a8a29e;
}

.blog-cover-drop__text {
  font-size: 0.9rem;
  color: #78716c;
}

.blog-cover-drop__formats {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-cover-preview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.blog-cover-preview--empty {
  display: none;
}

.blog-cover-preview__img {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 72px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.blog-cover-drop__hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-cover-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #78716c;
  cursor: pointer;
}

.blog-meta-field {
  min-height: 140px;
  resize: vertical;
}

.admin-blog-editor .ql-editor {
  min-height: 300px;
}

.admin-field__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-field__textarea--content {
  min-height: 320px;
  line-height: 1.65;
  font-size: 1rem;
}

.admin-blog-empty {
  text-align: center;
  padding: 2rem 1.5rem;
}

.admin-blog-empty h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
}

.admin-blog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.25rem 0 0.5rem;
}

.admin-blog-delete {
  margin-top: 1.5rem;
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.admin-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
}

.admin-badge--ok {
  background: #dcfce7;
  color: #166534;
}

.admin-table--blog {
  box-shadow: none;
  border-radius: 0;
}

@media (max-width: 720px) {
  .admin-blog-slug-row {
    grid-template-columns: 1fr;
  }

  .admin-field--status {
    min-width: 0;
  }
}
