/*
Theme Name: CLFC Child
Template: kadence
Version: 1.0
Text Domain: clfc-child
*/

/* =========================================================
   BASE
========================================================= */

:root {
  --clfc-bg: #07111f;
  --clfc-bg-soft: #0d1728;
  --clfc-surface: #ffffff;
  --clfc-surface-soft: #f3f6fb;
  --clfc-text: #08111f;
  --clfc-text-soft: #5d6878;
  --clfc-line: rgba(8, 17, 31, 0.08);
  --clfc-accent: #6fd6ff;
  --clfc-accent-2: #8b7dff;
  --clfc-shadow: 0 18px 42px rgba(8, 17, 31, 0.12);
  --clfc-radius-xl: 24px;
  --clfc-radius-lg: 18px;
  --clfc-radius-md: 14px;
  --clfc-container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--clfc-text);
  background: #ffffff;
}

.clfc-container {
  width: min(var(--clfc-container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HOME
========================================================= */

.clfc-home {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #08111f 0%, #050914 100%);
}

/* =========================================================
   HERO
========================================================= */

.clfc-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
}

.clfc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(111, 214, 255, 0.14), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(139, 125, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.clfc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.clfc-hero__content {
  max-width: 760px;
}

.clfc-hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.clfc-hero__brand-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #0d1b2f 0%, #08111f 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.clfc-hero__brand-logo {
  display: block;
  width: 65px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.clfc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d9e8ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clfc-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-hero__title span {
  display: block;
  color: var(--clfc-accent);
}

.clfc-hero__text {
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.clfc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.clfc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.clfc-button:hover {
  transform: translateY(-2px);
}

.clfc-button--primary {
  background: linear-gradient(135deg, var(--clfc-accent) 0%, #b6f0ff 100%);
  color: #08111f;
}

.clfc-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.clfc-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.clfc-hero__visual img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

/* =========================================================
   DESTAQUE EDITORIAL
========================================================= */

.clfc-home-destaque {
  padding: 24px 0 34px;
  background: transparent;
}

.clfc-destaque-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.clfc-destaque-card__content {
  padding: 34px 34px 36px;
}

.clfc-destaque-card__eyebrow {
  margin-bottom: 14px;
  color: #9fdfff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-destaque-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.clfc-destaque-card__text {
  max-width: 700px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.clfc-destaque-card__meta {
  margin-bottom: 24px;
  color: #d7e3f6;
  font-size: 0.96rem;
}

.clfc-destaque-card__media {
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #101b2f 0%, #09111f 100%);
}

.clfc-destaque-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   MAIS RECENTES
========================================================= */

.clfc-home-recentes {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 104px 0 88px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

.clfc-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.clfc-section-heading h2 {
  margin: 0;
  color: #08111f;
  font-size: clamp(2rem, 2.4vw, 2.85rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-section-heading p {
  margin: 0;
  color: var(--clfc-text-soft);
  font-size: 1rem;
}

.clfc-recentes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.clfc-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--clfc-line);
  border-radius: var(--clfc-radius-lg);
  background: #ffffff;
  box-shadow: var(--clfc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clfc-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 214, 255, 0.4);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.14);
}

.clfc-post-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.clfc-post-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe4ef;
}

.clfc-post-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clfc-post-card:hover .clfc-post-card__image {
  transform: scale(1.04);
}

.clfc-post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.clfc-post-card__eyebrow {
  margin-bottom: 10px;
  color: #0b4db3;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clfc-post-card__title {
  margin: 0 0 10px;
  color: #08111f;
  font-size: clamp(1.45rem, 1.55vw, 1.95rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clfc-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.clfc-post-card__title a:hover {
  color: #0b4db3;
}

.clfc-post-card__meta {
  margin-bottom: 18px;
  color: #5a6573;
  font-size: 0.85rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.clfc-post-card__button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #0b4db3;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clfc-post-card__button::after {
  content: " →";
  transition: transform 0.2s ease;
}

.clfc-post-card__button:hover {
  color: #08111f;
}

.clfc-post-card__button:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   HEADER - LOGO CLFC
========================================================= */

.site-branding img {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.site-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   SINGLE POST
========================================================= */

.clfc-single {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 560px, #f7f8fb 560px, #eef2f7 100%);
}

.clfc-single-hero {
  padding: 72px 0 40px;
}

.clfc-single-hero__inner {
  max-width: 900px;
}

.clfc-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.clfc-single-hero__category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-single-hero__date {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.clfc-single-hero__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 18ch;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.clfc-single-hero__author {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #dce8fb;
  font-size: 1rem;
}

.clfc-single-hero__author-label {
  opacity: 0.72;
}

.clfc-single-hero__author-name {
  font-weight: 700;
}

.clfc-single-hero__excerpt {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.clfc-single-hero__excerpt p {
  margin: 0;
}

.clfc-single-cover {
  padding: 0 0 42px;
}

.clfc-single-cover__image-wrap {
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  background: #0b1220;
}

.clfc-single-cover__image {
  display: block;
  width: 100%;
  height: auto;
}

.clfc-single-content {
  padding: 0 0 72px;
}

.clfc-single-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 300px);
  gap: 42px;
  align-items: start;
}

.clfc-single-article {
  min-width: 0;
}

.clfc-single-article__inner {
  padding: 38px 42px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  color: #152132;
  font-size: 1.12rem;
  line-height: 1.9;
}

.clfc-single-article__inner > *:first-child {
  margin-top: 0;
}

.clfc-single-article__inner > *:last-child {
  margin-bottom: 0;
}

.clfc-single-article__inner p {
  margin: 0 0 1.5em;
}

.clfc-single-article__inner h2,
.clfc-single-article__inner h3,
.clfc-single-article__inner h4 {
  margin: 2em 0 0.7em;
  color: #08111f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.clfc-single-article__inner h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.clfc-single-article__inner h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.clfc-single-article__inner h4 {
  font-size: 1.2rem;
}

.clfc-single-article__inner a {
  color: #0b4db3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clfc-single-article__inner blockquote {
  margin: 2em 0;
  padding: 0.2em 0 0.2em 1.2em;
  border-left: 4px solid #8fdcff;
  color: #203047;
  font-size: 1.08em;
}

.clfc-single-article__inner ul,
.clfc-single-article__inner ol {
  margin: 0 0 1.5em 1.3em;
}

.clfc-single-article__inner li {
  margin-bottom: 0.5em;
}

.clfc-single-article__inner img {
  height: auto;
  border-radius: 16px;
}

.clfc-single-article__inner figure {
  margin: 2em 0;
}

.clfc-single-article__inner figcaption {
  margin-top: 0.7em;
  color: #5f6d7f;
  font-size: 0.92rem;
  text-align: center;
}

.clfc-single-sidebar {
  position: sticky;
  top: 30px;
}

.clfc-single-sidebar__box {
  margin-bottom: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(8, 17, 31, 0.06);
  backdrop-filter: blur(8px);
}

.clfc-single-sidebar__box p {
  margin: 0;
  color: #415065;
  font-size: 0.96rem;
  line-height: 1.65;
}

.clfc-single-sidebar__title {
  margin-bottom: 12px;
  color: #08111f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clfc-single-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf4ff;
  color: #0b4db3;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
}

.clfc-single-tag:hover {
  background: #dfeeff;
}

.clfc-single-nav {
  padding: 0 0 88px;
}

.clfc-single-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.clfc-single-nav__item a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 17, 31, 0.06);
  color: #08111f;
  text-decoration: none;
  font-weight: 700;
}

.clfc-single-nav__item--next a {
  justify-content: flex-end;
  text-align: right;
}

/* =========================================================
   CATEGORY ARCHIVE
========================================================= */

.clfc-category {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 360px, #f7f8fb 360px, #eef2f7 100%);
}

.clfc-category-hero {
  padding: 72px 0 42px;
}

.clfc-category-hero__inner {
  max-width: 900px;
}

.clfc-category-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-category-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-category-hero__description {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-category-hero__description p {
  margin: 0;
}

.clfc-category-posts {
  padding: 18px 0 88px;
}

.clfc-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.clfc-category-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 0;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clfc-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 214, 255, 0.4);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.14);
}

.clfc-category-card__image-link {
  display: block;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.clfc-category-card__image-wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #dbe4ef;
}

.clfc-category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clfc-category-card:hover .clfc-category-card__image {
  transform: scale(1.04);
}

.clfc-category-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 24px 24px 26px;
}

.clfc-category-card__eyebrow {
  margin-bottom: 10px;
  color: #0b4db3;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clfc-category-card__title {
  margin: 0 0 10px;
  color: #08111f;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-category-card__title a {
  color: inherit;
  text-decoration: none;
}

.clfc-category-card__title a:hover {
  color: #0b4db3;
}

.clfc-category-card__meta {
  margin-bottom: 14px;
  color: #5a6573;
  font-size: 0.85rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.clfc-category-card__excerpt {
  margin-bottom: 18px;
  color: #415065;
  font-size: 0.96rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clfc-category-card__excerpt p {
  margin: 0;
}

.clfc-category-card__button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #0b4db3;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clfc-category-card__button::after {
  content: " →";
  transition: transform 0.2s ease;
}

.clfc-category-card__button:hover {
  color: #08111f;
}

.clfc-category-card__button:hover::after {
  transform: translateX(4px);
}

.clfc-category-pagination {
  margin-top: 34px;
}

.clfc-category-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clfc-category-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #08111f;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(8, 17, 31, 0.05);
}

.clfc-category-pagination .page-numbers.current {
  background: #08111f;
  color: #ffffff;
  border-color: #08111f;
}

.clfc-category-empty {
  padding: 38px 32px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-category-empty h2 {
  margin: 0 0 10px;
  color: #08111f;
}

.clfc-category-empty p {
  margin: 0;
  color: #5a6573;
}

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

@media (max-width: 1024px) {
  .clfc-hero {
    padding: 82px 0 70px;
  }

  .clfc-hero__grid,
  .clfc-destaque-card {
    grid-template-columns: 1fr;
  }

  .clfc-hero__visual {
    max-width: 720px;
  }

  .clfc-recentes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clfc-single-content__grid {
    grid-template-columns: 1fr;
  }

  .clfc-single-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .clfc-container {
    width: min(100% - 24px, var(--clfc-container));
  }

  .clfc-hero {
    padding: 72px 0 58px;
  }

  .clfc-hero__title {
    font-size: 2.8rem;
  }

  .clfc-hero__text {
    font-size: 1rem;
  }

  .clfc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .clfc-destaque-card__content {
    padding: 24px 20px 26px;
  }

  .clfc-home-recentes {
    padding: 54px 0 68px;
  }

  .clfc-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .clfc-recentes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clfc-post-card__content {
    padding: 18px 16px 20px;
  }

  .clfc-post-card__title {
    font-size: 1.72rem;
  }

  .clfc-hero__brand {
    gap: 10px;
    margin-bottom: 16px;
  }

  .clfc-hero__brand-logo-wrap {
    width: 58px;
    height: 58px;
  }

  .clfc-hero__brand-logo {
    width: 48px;
  }

  .clfc-single-hero {
    padding: 56px 0 32px;
  }

.clfc-single-hero__title {
  font-size: 2.3rem;
  line-height: 1;
  max-width: none;
  text-wrap: balance;
}

  .clfc-single-cover {
    padding-bottom: 30px;
  }

  .clfc-single-article__inner {
    padding: 24px 20px;
    font-size: 1.04rem;
    line-height: 1.8;
  }

  .clfc-single-nav__grid {
    grid-template-columns: 1fr;
  }

  .clfc-category-hero {
    padding: 56px 0 32px;
  }

  .clfc-category-hero__title {
    font-size: 2.6rem;
  }

  .clfc-category-posts {
    padding-bottom: 68px;
  }

  .clfc-category-grid {
    gap: 18px;
  }

  .clfc-category-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .clfc-category-card__image-link {
    min-height: 0;
  }

  .clfc-category-card__image-wrap {
    min-height: 220px;
  }

  .clfc-category-card__content {
    padding: 18px 16px 20px;
  }

  .clfc-category-card__title {
    font-size: 1.7rem;
  }
  
  /* =========================================================
   PAGE TEMPLATE
========================================================= */

.clfc-page {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 340px, #f7f8fb 340px, #eef2f7 100%);
}

.clfc-page-hero {
  padding: 72px 0 40px;
}

.clfc-page-hero__inner {
  max-width: 920px;
}

.clfc-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-page-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-page-hero__subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-page-content {
  padding: 0 0 88px;
}

.clfc-page-content__wrap {
  max-width: 980px;
}

.clfc-page-featured-image {
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 28px;
  background: #0b1220;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.clfc-page-featured-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.clfc-page-article {
  min-width: 0;
}

.clfc-page-article__inner {
  padding: 42px 44px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  color: #152132;
  font-size: 1.08rem;
  line-height: 1.9;
}

.clfc-page-article__inner > *:first-child {
  margin-top: 0;
}

.clfc-page-article__inner > *:last-child {
  margin-bottom: 0;
}

.clfc-page-article__inner p {
  margin: 0 0 1.5em;
}

.clfc-page-article__inner h2,
.clfc-page-article__inner h3,
.clfc-page-article__inner h4 {
  margin: 2em 0 0.7em;
  color: #08111f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.clfc-page-article__inner h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.clfc-page-article__inner h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.clfc-page-article__inner h4 {
  font-size: 1.2rem;
}

.clfc-page-article__inner a {
  color: #0b4db3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clfc-page-article__inner strong {
  color: #08111f;
}

.clfc-page-article__inner ul,
.clfc-page-article__inner ol {
  margin: 0 0 1.5em 1.3em;
}

.clfc-page-article__inner li {
  margin-bottom: 0.55em;
}

.clfc-page-article__inner blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.2em;
  border-left: 4px solid #8fdcff;
  color: #203047;
  font-size: 1.08em;
}

.clfc-page-article__inner img {
  height: auto;
  border-radius: 16px;
}

.clfc-page-article__inner figure {
  margin: 2em 0;
}

.clfc-page-article__inner figcaption {
  margin-top: 0.7em;
  color: #5f6d7f;
  font-size: 0.92rem;
  text-align: center;
}

.clfc-page-article__inner .wp-block-button__link {
  border-radius: 999px;
  padding: 0.9em 1.4em;
  font-weight: 700;
}

.clfc-page-article__inner .wp-block-table {
  overflow-x: auto;
}

.clfc-page-article__inner table {
  width: 100%;
  border-collapse: collapse;
}

.clfc-page-article__inner th,
.clfc-page-article__inner td {
  padding: 12px 14px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  text-align: left;
}

.clfc-page-article__inner th {
  background: #f3f7fc;
  color: #08111f;
}

/* =========================================================
   RESPONSIVO - PAGE
========================================================= */

@media (max-width: 767px) {
  .clfc-page-hero {
    padding: 56px 0 32px;
  }

  .clfc-page-hero__title {
    font-size: 2.6rem;
  }

  .clfc-page-content {
    padding-bottom: 68px;
  }

  .clfc-page-article__inner {
    padding: 24px 20px;
    font-size: 1.02rem;
    line-height: 1.8;
  }
}
/* =========================================================
   PAGE - FILIE-SE
========================================================= */

.clfc-filie-se {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 520px, #f7f8fb 520px, #eef2f7 100%);
}

.clfc-filie-se-hero {
  padding: 72px 0 54px;
}

.clfc-filie-se-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.clfc-filie-se-hero__content {
  max-width: 760px;
}

.clfc-filie-se-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-filie-se-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-filie-se-hero__subtitle {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-filie-se-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.clfc-filie-se-hero__card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.clfc-filie-se-hero__card-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clfc-filie-se-hero__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.clfc-filie-se-benefits {
  padding: 18px 0 34px;
}

.clfc-filie-se-section-heading {
  margin-bottom: 26px;
}

.clfc-filie-se-section-heading h2 {
  margin: 0 0 8px;
  color: #08111f;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-filie-se-section-heading p {
  margin: 0;
  color: #5d6878;
}

.clfc-filie-se-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.clfc-filie-se-benefit-card {
  padding: 24px 22px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-filie-se-benefit-card h3 {
  margin: 0 0 12px;
  color: #08111f;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clfc-filie-se-benefit-card p {
  margin: 0;
  color: #415065;
  line-height: 1.7;
}

.clfc-filie-se-content {
  padding: 14px 0 42px;
}

.clfc-filie-se-content__wrap {
  max-width: 980px;
}

.clfc-filie-se-article__inner {
  padding: 42px 44px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  color: #152132;
  font-size: 1.08rem;
  line-height: 1.9;
}

.clfc-filie-se-article__inner > *:first-child {
  margin-top: 0;
}

.clfc-filie-se-article__inner > *:last-child {
  margin-bottom: 0;
}

.clfc-filie-se-article__inner p {
  margin: 0 0 1.5em;
}

.clfc-filie-se-article__inner h2,
.clfc-filie-se-article__inner h3,
.clfc-filie-se-article__inner h4 {
  margin: 2em 0 0.7em;
  color: #08111f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.clfc-filie-se-article__inner h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.clfc-filie-se-article__inner h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.clfc-filie-se-article__inner h4 {
  font-size: 1.2rem;
}

.clfc-filie-se-article__inner a {
  color: #0b4db3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clfc-filie-se-article__inner ul,
.clfc-filie-se-article__inner ol {
  margin: 0 0 1.5em 1.3em;
}

.clfc-filie-se-article__inner li {
  margin-bottom: 0.55em;
}

.clfc-filie-se-article__inner blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.2em;
  border-left: 4px solid #8fdcff;
  color: #203047;
  font-size: 1.08em;
}

.clfc-filie-se-cta {
  padding: 0 0 88px;
}

.clfc-filie-se-cta__box {
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0b1526 0%, #08111f 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.clfc-filie-se-cta__box h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-filie-se-cta__box p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.clfc-filie-se-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   RESPONSIVO - FILIE-SE
========================================================= */

@media (max-width: 1024px) {
  .clfc-filie-se-hero__grid,
  .clfc-filie-se-benefits__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .clfc-filie-se-hero {
    padding: 56px 0 40px;
  }

  .clfc-filie-se-hero__title {
    font-size: 2.7rem;
  }

  .clfc-filie-se-hero__actions,
  .clfc-filie-se-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .clfc-filie-se-article__inner {
    padding: 24px 20px;
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .clfc-filie-se-cta {
    padding-bottom: 68px;
  }

  .clfc-filie-se-cta__box {
    padding: 26px 20px;
  }
}
/* =========================================================
   PAGE - CONTATO
========================================================= */

.clfc-contato {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 520px, #f7f8fb 520px, #eef2f7 100%);
}

.clfc-contato-hero {
  padding: 72px 0 54px;
}

.clfc-contato-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.clfc-contato-hero__content {
  max-width: 760px;
}

.clfc-contato-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-contato-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-contato-hero__subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-contato-hero__card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.clfc-contato-hero__card-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clfc-contato-hero__card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.clfc-contato-hero__email {
  color: #8fdcff;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.clfc-contato-canais {
  padding: 18px 0 34px;
}

.clfc-contato-section-heading {
  margin-bottom: 26px;
}

.clfc-contato-section-heading h2 {
  margin: 0 0 8px;
  color: #08111f;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-contato-section-heading p {
  margin: 0;
  color: #5d6878;
}

.clfc-contato-canais__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.clfc-contato-card {
  padding: 24px 22px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-contato-card h3 {
  margin: 0 0 12px;
  color: #08111f;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clfc-contato-card p {
  margin: 0 0 14px;
  color: #415065;
  line-height: 1.7;
}

.clfc-contato-card a {
  color: #0b4db3;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.clfc-contato-content {
  padding: 14px 0 42px;
}

.clfc-contato-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.clfc-contato-article__inner {
  padding: 42px 44px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  color: #152132;
  font-size: 1.08rem;
  line-height: 1.9;
}

.clfc-contato-article__inner > *:first-child {
  margin-top: 0;
}

.clfc-contato-article__inner > *:last-child {
  margin-bottom: 0;
}

.clfc-contato-article__inner p {
  margin: 0 0 1.5em;
}

.clfc-contato-article__inner h2,
.clfc-contato-article__inner h3,
.clfc-contato-article__inner h4 {
  margin: 2em 0 0.7em;
  color: #08111f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.clfc-contato-article__inner h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.clfc-contato-article__inner h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.clfc-contato-article__inner h4 {
  font-size: 1.2rem;
}

.clfc-contato-article__inner a {
  color: #0b4db3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clfc-contato-article__inner ul,
.clfc-contato-article__inner ol {
  margin: 0 0 1.5em 1.3em;
}

.clfc-contato-article__inner li {
  margin-bottom: 0.55em;
}

.clfc-contato-article__inner blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.2em;
  border-left: 4px solid #8fdcff;
  color: #203047;
  font-size: 1.08em;
}

.clfc-contato-sidebar {
  position: sticky;
  top: 30px;
}

.clfc-contato-sidebar__box {
  margin-bottom: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(8, 17, 31, 0.06);
  backdrop-filter: blur(8px);
}

.clfc-contato-sidebar__title {
  margin-bottom: 12px;
  color: #08111f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-contato-sidebar__box p {
  margin: 0 0 12px;
  color: #415065;
  font-size: 0.96rem;
  line-height: 1.65;
}

.clfc-contato-sidebar__email {
  color: #0b4db3;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.clfc-contato-cta {
  padding: 0 0 88px;
}

.clfc-contato-cta__box {
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0b1526 0%, #08111f 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.clfc-contato-cta__box h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-contato-cta__box p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.clfc-contato-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   RESPONSIVO - CONTATO
========================================================= */

@media (max-width: 1024px) {
  .clfc-contato-hero__grid,
  .clfc-contato-canais__grid,
  .clfc-contato-content__grid {
    grid-template-columns: 1fr;
  }

  .clfc-contato-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .clfc-contato-hero {
    padding: 56px 0 40px;
  }

  .clfc-contato-hero__title {
    font-size: 2.7rem;
  }

  .clfc-contato-article__inner {
    padding: 24px 20px;
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .clfc-contato-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .clfc-contato-cta {
    padding-bottom: 68px;
  }

  .clfc-contato-cta__box {
    padding: 26px 20px;
  }
}
/* FORMULÁRIO CONTATO */

.clfc-contato-form {
  padding: 40px 0 80px;
}

.clfc-contato-form__wrap {
  max-width: 700px;
}

.clfc-contato-form__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-contato-form__form label {
  font-weight: 700;
  margin-top: 10px;
}

.clfc-contato-form__form input,
.clfc-contato-form__form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.clfc-contato-form__form textarea {
  resize: vertical;
}

.clfc-contato-success {
  margin-bottom: 20px;
  padding: 15px;
  background: #d4f5d4;
  border-radius: 10px;
}

.clfc-contato-error {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8d7da;
  border-radius: 10px;
}
/* =========================================================
   CONTATO - FORMULÁRIO PROFISSIONAL
========================================================= */

.clfc-contato-form-profissional {
  padding: 12px 0 88px;
}

.clfc-contato-form-profissional__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.clfc-contato-form-profissional__box {
  padding: 34px 32px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-contato-form-profissional__title {
  margin: 0 0 10px;
  color: #08111f;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-contato-form-profissional__intro {
  margin: 0 0 22px;
  color: #415065;
  line-height: 1.75;
}

.clfc-form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.clfc-form-alert--success {
  background: #e8f7ea;
  color: #1f6b2b;
  border: 1px solid #c9e9cf;
}

.clfc-form-alert--error {
  background: #fdecec;
  color: #9e2f2f;
  border: 1px solid #f4c8c8;
}

.clfc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.clfc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.clfc-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clfc-form__field label {
  color: #08111f;
  font-size: 0.95rem;
  font-weight: 700;
}

.clfc-form__field input,
.clfc-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(8, 17, 31, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: #152132;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clfc-form__field input:focus,
.clfc-form__field textarea:focus {
  outline: none;
  border-color: #6fd6ff;
  box-shadow: 0 0 0 4px rgba(111, 214, 255, 0.14);
}

.clfc-form__field textarea {
  resize: vertical;
  min-height: 180px;
}

.clfc-form__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.clfc-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.clfc-contato-sidebar__content {
  color: #415065;
  font-size: 0.96rem;
  line-height: 1.7;
}

.clfc-contato-sidebar__content > *:first-child {
  margin-top: 0;
}

.clfc-contato-sidebar__content > *:last-child {
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVO - CONTATO PROFISSIONAL
========================================================= */

.clfc-contato-form-profissional__grid {
  display: block;
}
}

@media (max-width: 767px) {
  .clfc-contato-form-profissional {
    padding-bottom: 68px;
  }

  .clfc-contato-form-profissional__box {
    padding: 24px 20px;
  }

  .clfc-form__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================================================
   PAGE - QUEM SOMOS
========================================================= */

.clfc-quem-somos {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 520px, #f7f8fb 520px, #eef2f7 100%);
}

.clfc-quem-somos-hero {
  padding: 72px 0 50px;
}

.clfc-quem-somos-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.clfc-quem-somos-hero__content {
  max-width: 760px;
}

.clfc-quem-somos-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-quem-somos-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-quem-somos-hero__subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-quem-somos-hero__card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.clfc-quem-somos-hero__card-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clfc-quem-somos-hero__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.clfc-quem-somos-manifesto {
  padding: 0 0 34px;
}

.clfc-quem-somos-manifesto__box {
  padding: 30px 30px 32px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 36%),
    #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
}

.clfc-quem-somos-manifesto__box h2 {
  margin: 0 0 12px;
  color: #08111f;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-quem-somos-manifesto__box p {
  max-width: 900px;
  margin: 0;
  color: #415065;
  font-size: 1.02rem;
  line-height: 1.8;
}

.clfc-quem-somos-content {
  padding: 8px 0 42px;
}

.clfc-quem-somos-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 28px;
  align-items: start;
}

.clfc-quem-somos-article__inner {
  padding: 42px 44px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  color: #152132;
  font-size: 1.08rem;
  line-height: 1.9;
}

.clfc-quem-somos-article__inner > *:first-child {
  margin-top: 0;
}

.clfc-quem-somos-article__inner > *:last-child {
  margin-bottom: 0;
}

.clfc-quem-somos-article__inner p {
  margin: 0 0 1.5em;
}

.clfc-quem-somos-article__inner h2,
.clfc-quem-somos-article__inner h3,
.clfc-quem-somos-article__inner h4 {
  margin: 2em 0 0.7em;
  color: #08111f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.clfc-quem-somos-article__inner h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.clfc-quem-somos-article__inner h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.clfc-quem-somos-article__inner h4 {
  font-size: 1.2rem;
}

.clfc-quem-somos-article__inner a {
  color: #0b4db3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clfc-quem-somos-article__inner ul,
.clfc-quem-somos-article__inner ol {
  margin: 0 0 1.5em 1.3em;
}

.clfc-quem-somos-article__inner li {
  margin-bottom: 0.55em;
}

.clfc-quem-somos-article__inner blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.2em;
  border-left: 4px solid #8fdcff;
  color: #203047;
  font-size: 1.08em;
}

.clfc-quem-somos-sidebar {
  position: sticky;
  top: 30px;
}

.clfc-quem-somos-sidebar__box {
  margin-bottom: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(8, 17, 31, 0.06);
  backdrop-filter: blur(8px);
}

.clfc-quem-somos-sidebar__title {
  margin-bottom: 12px;
  color: #08111f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-quem-somos-sidebar__box p,
.clfc-quem-somos-sidebar__box li {
  color: #415065;
  font-size: 0.96rem;
  line-height: 1.7;
}

.clfc-quem-somos-sidebar__box ul {
  margin: 0;
  padding-left: 1.2em;
}

.clfc-quem-somos-sidebar__box a {
  color: #0b4db3;
  text-decoration: none;
}

.clfc-quem-somos-cta {
  padding: 0 0 88px;
}

.clfc-quem-somos-cta__box {
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0b1526 0%, #08111f 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.clfc-quem-somos-cta__box h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-quem-somos-cta__box p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.clfc-quem-somos-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   RESPONSIVO - QUEM SOMOS
========================================================= */

@media (max-width: 1024px) {
  .clfc-quem-somos-hero__grid,
  .clfc-quem-somos-content__grid {
    grid-template-columns: 1fr;
  }

  .clfc-quem-somos-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .clfc-quem-somos-hero {
    padding: 56px 0 40px;
  }

  .clfc-quem-somos-hero__title {
    font-size: 2.7rem;
  }

  .clfc-quem-somos-article__inner {
    padding: 24px 20px;
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .clfc-quem-somos-cta {
    padding-bottom: 68px;
  }

  .clfc-quem-somos-cta__box {
    padding: 26px 20px;
  }

  .clfc-quem-somos-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.clfc-quem-somos-diretorias__box li {
  margin-bottom: 14px;
  line-height: 1.6;
}
/* =========================================================
   PAGE - PRÊMIO ARGOS
========================================================= */

.clfc-argos {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 480px, #f7f8fb 480px, #eef2f7 100%);
}

.clfc-argos-hero {
  padding: 72px 0 50px;
}

.clfc-argos-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
}

.clfc-argos-intro__box {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.clfc-argos-content {
  padding: 30px 0;
}

.clfc-argos-article__inner {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.clfc-argos-destaque__box {
  background: linear-gradient(180deg, #0b1526, #08111f);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
}

.clfc-argos-cta {
  padding: 60px 0;
}
.clfc-argos-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.clfc-argos-links__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border-radius: 12px;
  background: #eef3f9;
  color: #08111f;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.clfc-argos-links__grid a:hover {
  background: #0b4db3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11,77,179,0.2);
}

.clfc-argos-links__extra {
  margin-top: 24px;
}

.clfc-argos-links__extra a {
  font-weight: 600;
  color: #0b4db3;
  text-decoration: none;
}
.clfc-argos-links {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(8,17,31,0.08);
}
.clfc-argos-texto {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 1.12rem;
  line-height: 1.95;
  color: #1c2a3a;
}
.clfc-argos-links h2 {
  margin-top: 30px;
  margin-bottom: 16px;
}
.clfc-argos-article__inner {
  padding: 42px 48px;
  border-radius: 28px;
}
/* =========================================================
   PAGE - VÍDEOS
========================================================= */

.clfc-videos {
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #08111f 0%, #050914 420px, #f7f8fb 420px, #eef2f7 100%);
}

.clfc-videos-hero {
  padding: 72px 0 46px;
}

.clfc-videos-hero__inner {
  max-width: 920px;
}

.clfc-videos-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-videos-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.clfc-videos-hero__subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.clfc-videos-grid-section {
  padding: 8px 0 88px;
}

.clfc-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.clfc-video-card {
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clfc-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 214, 255, 0.4);
  box-shadow: 0 22px 48px rgba(8, 17, 31, 0.14);
}

.clfc-video-card__thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.clfc-video-card__thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbe4ef;
}

.clfc-video-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clfc-video-card:hover .clfc-video-card__thumb {
  transform: scale(1.04);
}

.clfc-video-card__content {
  padding: 22px 22px 24px;
}

.clfc-video-card__title {
  margin: 0 0 12px;
  color: #08111f;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-video-card__title a {
  color: inherit;
  text-decoration: none;
}

.clfc-video-card__title a:hover {
  color: #0b4db3;
}

.clfc-video-card__desc {
  margin: 0 0 18px;
  color: #415065;
  line-height: 1.7;
}

.clfc-video-card__button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #0b4db3;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clfc-video-card__button::after {
  content: " →";
  transition: transform 0.2s ease;
}

.clfc-video-card__button:hover {
  color: #08111f;
}

.clfc-video-card__button:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVO - VÍDEOS
========================================================= */

@media (max-width: 1024px) {
  .clfc-videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .clfc-videos-hero {
    padding: 56px 0 38px;
  }

  .clfc-videos-hero__title {
    font-size: 2.7rem;
  }

  .clfc-videos-grid-section {
    padding-bottom: 68px;
  }

  .clfc-video-card__content {
    padding: 18px 18px 20px;
  }

  .clfc-video-card__title {
    font-size: 1.7rem;
  }
}
/* =========================================================
   HEADER - ACABAMENTO FINAL
========================================================= */

.site-header {
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 2px 18px rgba(8, 17, 31, 0.04);
}

.site-branding .site-title,
.site-branding .site-title a {
  color: #08111f;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-branding img {
  max-height: 44px;
  width: auto;
}

.main-navigation a {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation a:hover {
  color: #0b4db3;
}

@media (max-width: 1024px) {
  .site-branding img {
    max-height: 38px;
  }
}
/* =========================================================
   FOOTER - ACABAMENTO FINAL
========================================================= */

.clfc-footer {
  padding: 56px 0 22px;
  background:
    radial-gradient(circle at top, rgba(111, 214, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #0b1526 0%, #08111f 100%);
  color: rgba(255, 255, 255, 0.82);
}

.clfc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.clfc-footer__brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.clfc-footer__col h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clfc-footer__col p,
.clfc-footer__col li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.clfc-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clfc-footer__col li {
  margin-bottom: 8px;
}

.clfc-footer a {
  color: #8fdcff;
  text-decoration: none;
}

.clfc-footer a:hover {
  color: #ffffff;
}

.clfc-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clfc-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .clfc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .clfc-footer {
    padding: 44px 0 20px;
  }

  .clfc-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.clfc-post-card__image,
.clfc-category-card__image {
  background: linear-gradient(180deg, #0d1728 0%, #08111f 100%);
}
/* =========================================================
   HEADER FIXO
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
/* =========================================================
   HOME - EXPLORE O CLFC
========================================================= */

.clfc-home-explore {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #eef2f7 0%, #f7f8fb 100%);
}

.clfc-explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.clfc-explore-card {
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.08);
  overflow: hidden;
}

.clfc-explore-card__content {
  padding: 28px 28px 30px;
}

.clfc-explore-card__eyebrow {
  margin-bottom: 12px;
  color: #0b4db3;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clfc-explore-card__title {
  margin: 0 0 12px;
  color: #08111f;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.clfc-explore-card__text {
  margin: 0 0 22px;
  color: #415065;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .clfc-home-explore {
    padding-bottom: 68px;
  }

  .clfc-explore-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clfc-explore-card__content {
    padding: 22px 20px 24px;
  }
}
}
