* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  background-color: var(--white);
}

header {
  height: 130px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 0.54px solid rgba(0, 26, 73, 1);
  background-color: var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background-color: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.ctaabout {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: var(--text-body);
  margin-bottom: 40px;
  text-align: justify;
  opacity: 0.6;
  cursor: pointer;
}

.ctaabout span {
  color: rgba(233, 50, 124, 1);
  text-decoration: underline;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
}

.burger-menu {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.burger-menu svg {
  fill: var(--navy);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.menu li {
  position: relative;
}

.menu-mobile {
  display: none;
}

.menu li a {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 10px 20px;
}

.menu li a.active,
.menu li a:hover {
  background-color: var(--pink);
  border-radius: 11px;
  padding: 10px 20px;
  color: var(--white);
}

/* responsivo */

/* Mostra o menu mobile quando o botão é clicado */
.show-menu-mobile {
  transform: translateY(0%);
}

/* Estilo para o botão do menu mobile */

/* Estilo para as barras horizontais do botão */
.burger {
  width: 100%;
  height: 2px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.about {
  padding: 90px 150px;
  justify-content: flex-start;
  align-items: flex-start;
}

.about::first-child {
  justify-content: center;
  align-items: center;
  color: red;
}

.about h2 {
  text-align: center;
  margin: 0 auto 50px auto;
}

.about p {
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: var(--text-body);
  margin-bottom: 40px;
  text-align: justify;
  opacity: 0.6;
}

.about-contact {
  margin-bottom: 80px;
}

.whats-btn {
  vertical-align: middle;
  margin-left: 15px;
  width: 20px;
}


@media only screen and (max-width: 1000px) {
  header {
    height: 60px;
    padding: 18px;
  }

  .logo img {
    max-height: 40px;
  }

  .menu {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .btn.desktop {
    display: none;
  }

  .menu-mobile {
    background-color: hsla(219, 100%, 14%, 0.973);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    z-index: 9;
    justify-content: space-between;
  }

  .hide {
    display: none;
  }

  .active {
    display: flex;
  }

  .menu-mobile ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .menu-mobile .btn {
    background-color: transparent;
    border: 1px solid var(--white);
    font-size: 14px;
    padding: 12px 20px;
    margin: 20px 0 0 0;
  }

  .menu-mobile li {
    margin-bottom: 20px;
  }

  .menu-mobile a {
    color: var(--white);

    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .menu-mobile ul li:last-child {
    padding-top: 50px;
  }

  .menu-mobile ul li a:hover {
    color: var(--pink);
  }

  .menu-mobile .btn:hover {
    border: 1px solid var(--pink);
  }

  .menu-mobile .close-menu {
    display: flex;
    justify-content: flex-end;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .menu-mobile .close-menu img {
    cursor: pointer;
  }
}
/* responsive */

.hero {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-top: 30px;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  margin: 0 30px;
}

.col-1 {
  color: rgba(0, 26, 73, 1);
  font-weight: 800;
  font-size: 30px;
  line-height: 85px;
  text-align: center;
}

.col-2 {
  opacity: 0.6;
  font-size: 24px;
  text-align: center;
  max-width: 800px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.col-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 64px;
  margin-top: 32px;
}

.btn {
  background-color: var(--pink);
  color: var(--white);
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 10px 21px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  border: 2px solid var(--pink);
  text-decoration: none;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(43, 177, 228, 0.55);
  outline-offset: 3px;
}

.link-pink {
  color: var(--pink);
  margin-right: 12px;
}

.outline {
  background-color: transparent;
  color: var(--pink);
}

.separador {
  display: flex;
  justify-content: center;
  align-items: center;
}

.separador span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(29, 172, 227, 1);
  margin: 0; /* espaçamento entre cada elipse */
  margin: 75px 15px;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h2,
h3 {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  letter-spacing: 0.003em;
  margin: 0;
}

h2 {
  font-size: 55px;
  color: var(--navy);
}

h3 {
  font-size: 24px;
  color: var(--pink);
}

/* Evita viúvas: equilibra linhas de títulos e impede palavra órfã em parágrafos */
h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 110px;
  gap: 160px;
}

.card-text {
  width: 50%;
  text-align: left;
  box-sizing: border-box;
}

.card-text h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 68px;
  text-align: left;
  color: var(--navy);
  margin-bottom: 20px;
}

.card-text p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 44px;
  color: rgba(70, 70, 70, 1);
  opacity: 0.6;
}

.card-text .btn {
  margin-top: 20px;
}

.reverse {
  flex-direction: row-reverse;
}

.contact div {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.inner-hero {
  padding: 80px 150px 20px;
  text-align: center;
}

.inner-hero h1 {
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-size: 55px;
  line-height: 110%;
  margin-bottom: 24px;
}

.inner-hero p {
  color: var(--text-body);
  font-size: 24px;
  line-height: 150%;
  margin: 0 auto;
  max-width: 920px;
  opacity: 0.75;
}

.content-page {
  align-items: stretch;
  padding: 40px 150px 90px;
}

.inner-hero + .separador span {
  margin: 28px 15px;
}

.content-page > .card:first-child {
  margin-top: 0;
}

.content-page h2,
.content-page h3 {
  text-align: left;
}

.content-page h2 {
  font-size: 38px;
  margin: 40px 0 18px;
}

.content-page h3 {
  font-size: 22px;
  margin: 30px 0 12px;
}

.content-page p,
.content-page li {
  color: var(--text-body);
  font-size: 20px;
  line-height: 170%;
  opacity: 0.75;
}

.content-page ul,
.content-page ol {
  padding-left: 24px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.feature-item {
  border: 1px solid rgba(0, 26, 73, 0.12);
  border-radius: 8px;
  padding: 24px;
}

.feature-item h3 {
  color: var(--navy);
  font-size: 24px;
  margin-top: 0;
}

.service-cta {
  align-items: center;
  background-color: rgba(43, 177, 228, 0.08);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 50px;
  padding: 32px;
}

.service-cta p {
  margin: 0;
}

.support-panel {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 460px;
  width: 100%;
  align-items: start;
}

.support-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 460px;
}

.support-form label {
  color: var(--navy);
  display: grid;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
}

.support-form input,
.support-form select,
.support-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  padding: 13px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: var(--dim);
}

.support-form input:hover,
.support-form select:hover,
.support-form textarea:hover {
  border-color: var(--border-strong);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--pink);
}

.support-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23001a49' d='M6 8 0 2 1.4.6 6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.support-form button[type="submit"] {
  width: 100%;
  margin-top: 4px;
  padding: 14px 21px;
  font-size: 16px;
}

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

.support-form__status {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  min-height: 1.2em;
}

.support-form__status.is-success {
  color: var(--good);
}

.support-form__status.is-error {
  color: var(--pink-2);
}

.support-form__status.is-loading {
  color: var(--navy);
}

.floating-whatsapp {
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  display: flex;
  height: 62px;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  right: 24px;
  width: 62px;
  z-index: 8;
}

.floating-whatsapp img {
  border-radius: 50%;
  height: 62px;
  object-fit: cover;
  width: 62px;
}

.cookie-banner {
  align-items: center;
  background-color: var(--white);
  border: 1px solid rgba(0, 26, 73, 0.14);
  border-radius: 8px;
  bottom: 24px;
  box-shadow: 0 18px 45px rgba(0, 26, 73, 0.18);
  display: none;
  gap: 24px;
  left: 24px;
  max-width: 720px;
  padding: 22px;
  position: fixed;
  right: 110px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 150%;
  margin: 0;
  opacity: 0.8;
}

.cookie-banner .cookie-icon {
  align-self: center;
  flex-shrink: 0;
  height: 48px;
  object-fit: contain;
  width: auto;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.not-found {
  min-height: 52vh;
}

footer {
  background-color: var(--navy);
  color: var(--white);
}

footer h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--cyan);
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}

footer p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

footer .btn-small {
  border-color: var(--cyan);
  padding: 6px 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--cyan);
}

footer .social-icons {
  display: flex;
  margin-bottom: 30px;
}

footer .social-icons img {
  height: 36px;
  width: 36px;
  margin-right: 15px;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer .col-md-3 {
  width: 25%;
  padding: 0 15px;
}

footer .border-top {
  border-top: 1px solid var(--white);
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .border-top .logo {
  height: 30px;
  width: auto;
}

footer .border-top p {
  font-size: 14px;
  color: var(--white);
  margin: 0;
}
.linkti {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 55px;
  color: rgba(255, 255, 255, 0.75);
}

footer .container {
  padding: 50px 50px 20px 50px;
}

@media only screen and (max-width: 1000px) {
  .col-1 {
    font-size: 19px;
    font-weight: 800;
    line-height: 45px;
    padding: 20px;
    margin: 0;
    text-align: center;
  }

  .col-2 {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.01em;
  }

  .col-3 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .col-3 .btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  .btn-outline {
    margin: 0;
  }

  h2 {
    font-size: 38px;
    color: var(--navy);
  }

  h3 {
    font-size: 16px;
    color: var(--pink);
  }

  .about {
    padding: 40px 24px;
  }

  .about h2 {
    margin: 0 auto 20px auto;
  }

  .about p{
    font-size: 14px;
    margin-bottom: 20px;
  }

  .ctaabout {
    cursor: pointer;
    font-size: 14px;
  }

  .card {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 20px 24px;
  }

  .inner-hero {
    padding: 50px 24px 10px;
  }

  .inner-hero h1 {
    font-size: 38px;
  }

  .inner-hero p {
    font-size: 18px;
  }

  .content-page {
    padding: 20px 24px 60px;
  }

  .content-page h2 {
    font-size: 28px;
  }

  .content-page p,
  .content-page li {
    font-size: 16px;
  }

  .feature-grid,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .floating-whatsapp {
    bottom: 18px;
    height: 56px;
    right: 18px;
    width: 56px;
  }

  .floating-whatsapp img {
    height: 56px;
    width: 56px;
  }

  .cookie-banner {
    align-items: flex-start;
    bottom: 90px;
    flex-direction: column;
    left: 16px;
    right: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .card img {
    max-width: 320px;
  }

  .card-text {
    width: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .card-text h2 {
    font-size: 24px;
    align-items: center;
    text-align: center;
  }

  .card-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: var(--text-body);
    opacity: 0.6;
  }

  footer .row {
    flex-direction: column;
    gap: 70px;
  }

  footer .col-md-3 {
    width: auto;
  }

  footer .border-top {
    margin-top: 0;
    text-align: left;
  }

  .linkti {
    display: none;
  }
  footer .container {
    padding: 40px 20px 20px 20px;
  }

  footer .copy {
    padding-top: 20px;
  }
}


.cta {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  padding: 10px 30px;
}

/* ===== Nossos números ===== */
.stats {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-num {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--pink);
}

.stat-label {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--navy);
  max-width: 220px;
}

/* ===== Avaliação de clientes (carrossel) ===== */
.reviews {
  width: 100%;
  background: var(--white);
  padding: 16px 0 50px;
  box-sizing: border-box;
}

.reviews-carousel {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 0 60px;
  box-sizing: border-box;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.review {
  flex: 0 0 calc((100% - 60px) / 3);
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 26, 73, 0.05);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.review-stars {
  color: var(--pink);
  font-size: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.review-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.review-avatar {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-name {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  align-self: end;
}

.review-role {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--text-body);
  opacity: 0.7;
  align-self: start;
}

.reviews-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 26, 73, 0.15);
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 26, 73, 0.1);
  z-index: 2;
}

.reviews-nav:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.reviews-nav.prev {
  left: 0;
}

.reviews-nav.next {
  right: 0;
}

.reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 26, 73, 0.18);
  cursor: pointer;
  padding: 0;
}

.reviews-dots button.is-active {
  background: var(--pink);
}

@media only screen and (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    margin-top: 40px;
  }

  .stat-num {
    font-size: 40px;
  }

  .stat-label {
    font-size: 15px;
  }

  .reviews-carousel {
    padding: 0 16px;
    margin-top: 40px;
  }

  .reviews-track {
    gap: 16px;
  }

  .review {
    flex-basis: 100%;
  }

  .reviews-nav {
    display: none;
  }
}

/* ===== Página de Serviços + refino dos cards ===== */
.services-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* refino: cards menos espalhados e tipografia mais contida */
.card {
  gap: 80px;
  padding: 36px 56px;
}

.card-text h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card-text h3 {
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 6px;
}

.card-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  opacity: 1;
}

.services-cta {
  width: 100%;
  max-width: 700px;
  margin: 24px auto 0;
  padding: 64px 24px 96px;
  text-align: center;
  box-sizing: border-box;
}

.services-cta h2 {
  font-size: 32px;
}

.services-cta p {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 28px;
}

@media only screen and (max-width: 1000px) {
  .card {
    gap: 24px;
    padding: 28px 24px;
  }

  .card-text h2 {
    font-size: 28px;
  }

  .services-cta {
    padding-top: 48px;
  }
}

/* ===== Blog ===== */
.blog-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
  box-sizing: border-box;
}

/* Filtros */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 18px;
  transition: all 0.15s ease;
}

.blog-filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.blog-filter-btn.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Grid de cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--surface-2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 28px rgba(0, 26, 73, 0.08);
  transform: translateY(-3px);
}

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__img--placeholder {
  background: linear-gradient(135deg, #e8f4ff 0%, #f0e8ff 100%);
}

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

.blog-card__cat {
  color: var(--pink);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card__title {
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.blog-card__resumo {
  color: var(--muted);
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  opacity: 1;
}

.blog-card__meta {
  color: var(--dim);
  display: flex;
  font-size: 13px;
  gap: 16px;
  margin-top: 4px;
}

/* Estados de loading/empty */
.blog-loading,
.blog-empty {
  color: var(--dim);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
}

/* Skeleton de carregamento do artigo (dica.html) */
.post-skeleton {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sk {
  display: block;
  border-radius: 8px;
  background: var(--surface-2);
  background-image: linear-gradient(90deg, var(--surface-2) 0, var(--bg) 80px, var(--surface-2) 160px);
  background-size: 600px 100%;
  background-repeat: no-repeat;
  animation: sk-shimmer 1.3s ease-in-out infinite;
}

.sk-chip   { width: 150px; height: 16px; }
.sk-title  { width: 100%;  height: 38px; border-radius: 10px; }
.sk-title--short { width: 55%; }
.sk-meta   { width: 220px; height: 16px; margin-top: 8px; }
.sk-cover  { width: 100%;  aspect-ratio: 16/9; border-radius: 12px; margin: 24px 0 8px; }
.sk-line   { width: 100%;  height: 18px; }
.sk-line--short { width: 68%; }

.blog-loading-label {
  color: var(--dim);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 28px;
}

@keyframes sk-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sk { animation: none; }
}

/* ===== Artigo (dica.html) ===== */
.post-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  box-sizing: border-box;
}

.post-header {
  /* Neutraliza o seletor de elemento "header" do nav (display:flex, height,
     border-bottom, background, color) que vaza para este <header class="post-header">. */
  display: block;
  height: auto;
  padding: 0;
  border-bottom: none;
  background: none;
  color: inherit;
  margin-bottom: 48px;
}

.post-title {
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 16px 0 12px;
  text-align: left;
}

.post-meta {
  color: var(--dim);
  display: flex;
  font-size: 14px;
  gap: 20px;
  margin-bottom: 28px;
}

.post-cover {
  border-radius: 12px;
  margin-top: 8px;
  max-width: 100%;
  height: auto;
}

.post-body {
  color: var(--text);
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.post-body h1,
.post-body h2,
.post-body h3 {
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 40px 0 16px;
  text-align: left;
}

.post-body h1 { font-size: 28px; }
.post-body h2 { font-size: 24px; }
.post-body h3 { font-size: 20px; }

.post-body p { margin: 0 0 20px; }

.post-body ul,
.post-body ol {
  margin: 0 0 20px;
  padding-left: 24px;
  list-style-position: outside;
}

.post-body ul { list-style-type: disc; }
.post-body ol { list-style-type: decimal; }

.post-body li { margin-bottom: 8px; }

.post-body blockquote {
  border-left: 4px solid var(--pink);
  margin: 28px 0;
  padding: 12px 20px;
  color: var(--muted);
  font-style: italic;
}

.post-body pre {
  background: var(--bg);
  border-radius: 8px;
  font-size: 15px;
  overflow-x: auto;
  padding: 20px;
  margin: 0 0 20px;
}

.post-body code {
  background: var(--bg);
  border-radius: 4px;
  font-size: 0.9em;
  padding: 2px 6px;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-body a { color: var(--pink); text-decoration: underline; }
.post-body hr { border: none; border-top: 1px solid var(--surface-2); margin: 40px 0; }

.post-body figure {
  margin: 28px 0;
}

.post-body figure img {
  border-radius: 10px;
  max-width: 100%;
}

.post-body figcaption {
  color: var(--dim);
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}

.post-footer {
  /* Neutraliza o seletor de elemento "footer" (background navy + color var(--white))
     que vaza para este <footer class="post-footer">. */
  background: none;
  color: var(--text);
  border-top: 1px solid var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 64px;
  padding-top: 40px;
}

.post-footer p {
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

@media only screen and (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-filters {
    gap: 8px;
    margin-bottom: 32px;
  }

  .post-title { font-size: 26px; }
  .post-body { font-size: 17px; }
}
