/* ===========================
   Garcia Tavares Santos - Blog
   CSS Limpo e Manutenível
   =========================== */

/* Reset e Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Switzer', 'DM Sans', 'Inter', sans-serif;
  color: #141414;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===========================
   Header / Navbar
   =========================== */
.navbar {
  position: relative;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.navbar__logo {
  justify-self: start;
}

.navbar__logo img {
  height: 64px;
  width: 144px;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.navbar__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(138, 138, 138);
  line-height: 26px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.navbar__link:hover,
.navbar__link--active {
  color: #fff;
  opacity: 1;
}

.navbar__cta {
  justify-self: end;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(249, 250, 251);
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 24px;
  border-radius: 300px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar__cta:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.navbar__cta-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero do Blog
   =========================== */
.blog-hero {
  padding: 48px 40px 40px;
  text-align: center;
  background-color: #fff;
}

.blog-hero__title {
  font-family: 'Anta', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #141414;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero__subtitle {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #666;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

/* ===========================
   Artigo Destaque
   =========================== */
.featured-article {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 0;
}

.featured-article__container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 48px;
}

.featured-article__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-article__link:hover {
  opacity: 1;
}

.featured-article__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
}

.featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article__link:hover .featured-article__image img {
  transform: scale(1.03);
}

.featured-article__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-article__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background-color: #141414;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.featured-article__category {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #050505;
  background-color: rgba(186, 186, 186, 0.29);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 24px;
  align-self: flex-start;
}

.featured-article__title {
  font-family: 'Switzer', sans-serif;
  font-size: 32px;
  font-weight: 200;
  color: #050505;
  line-height: 1.3;
}

.featured-article__excerpt {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}

.featured-article__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #666;
}

.featured-article__cta {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #050505;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 300px;
  background-color: transparent;
  transition: all 0.3s ease;
  align-self: flex-start;
  overflow: hidden;
}

.featured-article__cta .readmore-arrow {
  display: inline-flex;
  width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.featured-article__cta .readmore-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-article__link:hover .featured-article__cta {
  background-color: #050505;
  color: #fff;
  border-color: #050505;
}

.featured-article__link:hover .featured-article__cta .readmore-arrow {
  width: 16px;
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   Blog Main (Content + Sidebar)
   =========================== */
.blog-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 40px 0;
}

.blog-main__container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.blog-main__content {
  min-width: 0;
}

/* ===========================
   Caixa de Busca
   =========================== */
.search-box {
  position: relative;
  margin-bottom: 32px;
}

.search-box__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #999;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: stroke 0.3s ease;
}

.search-box__input {
  width: 100%;
  padding: 16px 52px 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #141414;
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 300px;
  outline: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.search-box__input::placeholder {
  color: #999;
}

.search-box__input:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.search-box__input:focus ~ .search-box__icon {
  stroke: #141414;
}

/* ===========================
   Filtro Ativo
   =========================== */
.active-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 24px;
}

.active-filter__text {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #333;
}

.active-filter__clear {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.active-filter__clear:hover {
  color: #141414;
  background-color: rgba(0, 0, 0, 0.06);
}

/* ===========================
   Grid de Artigos
   =========================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
  opacity: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.article-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.article-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.article-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #777;
}

.article-card__title {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #050505;
  line-height: 1.4;
}

.article-card__excerpt {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.article-card__readmore {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 300px;
  background-color: transparent;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  overflow: hidden;
}

.article-card__readmore .readmore-arrow {
  display: inline-flex;
  width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.article-card__readmore .readmore-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-card:hover .article-card__readmore {
  background-color: #050505;
  color: #fff;
  border-color: #050505;
  opacity: 1;
}

.article-card:hover .article-card__readmore .readmore-arrow {
  width: 16px;
  opacity: 1;
  transform: translateX(0);
}

.blog-no-results {
  padding: 32px 24px;
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  color: #666;
  font-family: 'Switzer', sans-serif;
}

.blog-hero--compact {
  padding-bottom: 72px;
}

/* ===========================
   Sem resultados
   =========================== */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #ccc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}

.no-results p {
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #999;
}

/* ===========================
   Sidebar
   =========================== */
.blog-sidebar {
  position: sticky;
  top: 24px;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-section__title {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.sidebar-categories li {
  margin-bottom: 2px;
}

.sidebar-categories__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.sidebar-categories__item:hover {
  background-color: #f5f5f5;
  color: #000;
}

.sidebar-categories__item.active {
  background-color: #141414;
  color: #fff;
}

.sidebar-categories__item.active .sidebar-categories__count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.sidebar-categories__count {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
}

/* Sidebar CTA */
.sidebar-cta {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 24px;
}

.sidebar-cta__text {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-cta__button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background-color: #141414;
  padding: 10px 24px;
  border-radius: 300px;
  transition: all 0.3s ease;
}

.sidebar-cta__button:hover {
  background-color: #333;
  opacity: 1;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background-color: #141414;
  margin-top: 80px;
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

/* Seções */
.site-footer__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__heading {
  font-family: 'Anta', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgb(234, 176, 73);
  line-height: 34px;
  text-transform: capitalize;
}

.site-footer__heading--white {
  color: rgb(249, 250, 251);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(249, 250, 251);
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
}

.site-footer__link--gold {
  color: rgb(234, 176, 73);
}

.site-footer__link svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.site-footer__link:hover {
  opacity: 0.7;
}

/* Contato */
.site-footer__list--contact li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(249, 250, 251);
  line-height: 26px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__list--contact svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* Logo + Redes Sociais */
.site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.site-footer__logo img {
  height: 64px;
  width: 144px;
  object-fit: contain;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  transition: opacity 0.3s ease;
}

.site-footer__social a:hover {
  opacity: 0.7;
}

.site-footer__social svg {
  width: 14px;
  height: 14px;
}

/* Linha + Copyright */
.site-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(249, 250, 251);
  line-height: 26px;
  text-transform: capitalize;
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===========================
   Responsivo - Tablet
   =========================== */
@media (max-width: 1199px) {
  .navbar__container {
    padding: 16px 24px;
  }

  .navbar__logo img {
    height: 50px;
    width: auto;
  }

  .navbar__links {
    gap: 28px;
  }


  .blog-hero {
    padding: 36px 24px 24px;
  }

  .blog-hero__title {
    font-size: 36px;
  }

  .featured-article {
    padding: 30px 24px 0;
  }

  .featured-article__link {
    gap: 32px;
  }

  .featured-article__title {
    font-size: 26px;
  }

  .featured-article__excerpt {
    font-size: 16px;
  }

  .featured-article__meta {
    gap: 10px;
  }

  .blog-main {
    padding: 36px 24px 0;
  }

  .blog-main__container {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }

  .article-card__title {
    font-size: 16px;
  }
}

/* ===========================
   Responsivo - Tablet pequeno
   =========================== */
@media (max-width: 960px) {
  .blog-main__container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sidebar-section {
    margin-bottom: 0;
  }

  .featured-article__link {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===========================
   Responsivo - Mobile
   =========================== */
@media (max-width: 809px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .blog-hero {
    padding: 32px 20px 24px;
  }

  .blog-hero__title {
    font-size: 28px;
  }

  .blog-hero__subtitle {
    font-size: 15px;
  }

  .featured-article {
    padding: 24px 20px 0;
  }

  .featured-article__title {
    font-size: 24px;
  }

  .featured-article__meta,
  .article-card__meta {
    gap: 8px;
  }

  .blog-main {
    padding: 32px 20px 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 56px;
  }

  .site-footer__container {
    flex-direction: column;
    gap: 28px;
    padding: 32px 20px 24px;
    align-items: center;
    text-align: center;
  }

  .site-footer__section,
  .site-footer__logo {
    width: 100%;
    max-width: 340px;
  }

  .site-footer__section {
    gap: 14px;
    align-items: center;
  }

  .site-footer__section:first-child {
    order: 1;
  }

  .site-footer__section:last-of-type {
    order: 2;
  }

  .site-footer__logo {
    order: 3;
    align-items: center;
    gap: 18px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__logo img {
    width: 144px;
    max-width: 100%;
    height: auto;
  }

  .site-footer__heading {
    font-size: 20px;
    line-height: 1.2;
  }

  .site-footer__list {
    gap: 12px;
    width: 100%;
  }

  .site-footer__link {
    font-size: 15px;
    line-height: 1.45;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer__link svg {
    margin-top: 0;
  }

  .site-footer__list--contact li {
    font-size: 14px;
    line-height: 1.55;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    text-align: left;
  }

  .site-footer__social {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .site-footer__social a {
    width: 24px;
    height: 24px;
  }

  .site-footer__social svg {
    width: 13px;
    height: 13px;
  }

  .site-footer__bottom {
    padding: 18px 20px 22px;
  }

  .site-footer__bottom p {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
}

/* ===================================================
   HOMEPAGE — additional sections
   =================================================== */

/* ---------- Hero principal ---------- */
.hero {
  position: relative;
  min-height: 720px;
  background: radial-gradient(ellipse at top, rgba(234,176,73,0.12) 0%, rgba(0,0,0,0) 50%), #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 40px 96px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(234,176,73,0.4), transparent);
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgb(234,176,73);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Anta', sans-serif;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
}

.hero__title strong {
  display: block;
  color: rgb(234,176,73);
  font-weight: 400;
}

.hero__subtitle {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin: 32px auto 40px;
  max-width: 640px;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  background: rgb(234,176,73);
  padding: 16px 32px;
  border-radius: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero__cta:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234,176,73,0.35);
}

.hero__cta svg {
  width: 14px; height: 14px;
}

/* ---------- Section title (used in many sections) ---------- */
.section {
  padding: 96px 40px;
}

.section--dark {
  background: #0a0a0a;
  color: #fff;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgb(234,176,73);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.section__title {
  font-family: 'Anta', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  color: inherit;
  margin-bottom: 24px;
}

.section__lead {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: inherit;
  opacity: 0.78;
  max-width: 720px;
  margin-bottom: 48px;
}

/* ---------- Sobre - 3 pilares ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pillar {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}

.pillar__num {
  font-family: 'Anta', sans-serif;
  font-size: 14px;
  color: rgb(234,176,73);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pillar__title {
  font-family: 'Anta', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

.pillar__text {
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
}

/* ---------- Métricas ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.section--dark .stats { border-top-color: rgba(255,255,255,0.12); }

.stat__num {
  font-family: 'Anta', sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: rgb(234,176,73);
  line-height: 1;
}

.stat__label {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin-top: 8px;
}

.section--dark .stat__label { color: rgba(255,255,255,0.7); }

/* ---------- Áreas (accordion) ---------- */
.areas-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 48px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.area-item {
  background: #0a0a0a;
}

.area-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Anta', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: left;
  transition: color 0.3s, padding 0.3s;
}

.area-item__header:hover {
  color: rgb(234,176,73);
  padding-left: 32px;
}

.area-item__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.area-item__icon svg { width: 12px; height: 12px; }

.area-item.is-open .area-item__icon {
  transform: rotate(45deg);
  background: rgb(234,176,73);
  border-color: rgb(234,176,73);
  color: #0a0a0a;
}

.area-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.area-item.is-open .area-item__body { max-height: 1500px; }

.area-item__content {
  padding: 0 24px 32px;
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 900px;
}

/* ---------- Equipe ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.05);
  transition: transform 0.5s;
}

.team-card:hover .team-card__photo img { transform: scale(1.04); }

.team-card__body { padding: 24px 28px 32px; }

.team-card__name {
  font-family: 'Anta', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 4px;
}

.team-card__oab {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgb(234,176,73);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card__bio {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}

/* ---------- Formulário ---------- */
.contact {
  padding: 96px 40px;
  background: #f7f7f5;
}

.contact__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact__info .section__title { font-size: clamp(28px, 3.5vw, 44px); }

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.field { margin-bottom: 20px; }

.field__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 300;
  background: #fff;
  color: #141414;
  transition: border-color 0.2s;
}

.field__textarea { resize: vertical; min-height: 120px; }

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: rgb(234,176,73);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__submit {
  width: 100%;
  padding: 16px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 300px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact__submit:hover {
  background: rgb(234,176,73);
  color: #0a0a0a;
  transform: translateY(-1px);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); opacity: 1; }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Stub article (em breve) ---------- */
.coming-soon {
  text-align: center;
  padding: 120px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.coming-soon__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(234,176,73);
  background: rgba(234,176,73,0.12);
  padding: 8px 18px;
  border-radius: 300px;
  margin-bottom: 24px;
}

.coming-soon__title {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 200;
  line-height: 1.25;
  margin-bottom: 16px;
}

.coming-soon__text {
  font-family: 'Switzer', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ---------- Mobile homepage ---------- */
@media (max-width: 960px) {
  .about-grid,
  .team-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat__num { font-size: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 64px 24px; }
  .hero { padding: 48px 24px 64px; min-height: auto; }
  .area-item__header { font-size: 18px; padding: 20px 16px; }
  .area-item__content { padding: 0 16px 24px; }
}
