:root {
    --blue: #0647a8;
    --blue-dark: #042b66;
    --blue-soft: #eaf3ff;
    --yellow: #f3b51b;
    --text: #101828;
    --muted: #667085;
    --white: #ffffff;
}

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

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
}

.topbar {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 2px solid var(--blue-dark);
    background: var(--white);
}

.menu {
    position: absolute;
    left: 24px;
    font-size: 26px;
    color: var(--blue-dark);
    cursor: pointer;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
}

.brand-avatar {
    width: 82px;
    height: 109px;
    object-fit: cover;
    border-radius: 90%;
}

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

.brand-text strong {
    font-size: 34px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -1px;
    text-transform: lowercase;
}

.brand-text span {
    margin-top: 6px;
    font-size: 15px;
    color: var(--yellow);
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.search {
    position: absolute;
    right: 16px;
    width: 220px;
    height: 42px;
    border: 1.5px solid var(--blue-dark);
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
    background: var(--white);
}

.search input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 15px;
    font-family: inherit;
}

.search i {
    color: var(--yellow);
    font-size: 19px;
}

.nav {
    height: 48px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 32px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a.active {
    color: var(--yellow);
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 4px;
}


.nav_sobre_autor {
    height: 48px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 32px;
}

.nav_sobre_autor a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav_sobre_autor a.active {
    color: var(--yellow);
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 4px;
}

main {
    max-width: 1180px;
    padding: 34px 24px;
}

h1 {
    font-size: 34px;
    margin-bottom: 32px;
    color: var(--blue-dark);
    font-weight: 800;
}

.post {
    display: grid;
    grid-template-columns: 354px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.thumb {
    height: 224px;
    border: 3px solid var(--yellow);
    border-radius: 6px;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb i {
    font-size: 72px;
    color: var(--yellow);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--yellow);
    color: var(--blue-dark);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 2px;
}

.post h2 {
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--blue-dark);
    font-weight: 800;
    max-width: 650px;
}

.date {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.post p {
    font-size: 21px;
    line-height: 1.35;
    max-width: 600px;
    text-decoration: none;
}

.post a {
    color: var(--black);
    text-decoration: none;
}

@media (max-width: 900px) {
    .search {
    display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
    height: 88px;
    }

    .menu {
    left: 16px;
    font-size: 22px;
    }

    .brand-logo {
    width: 48px;
    height: 48px;
    }

    .brand-avatar {
    width: 52px;
    height: 68px;
    }

    .brand-text strong {
    font-size: 22px;
    }

    .brand-text span {
    font-size: 11px;
    letter-spacing: 3px;
    }

    .nav {
    overflow-x: auto;
    gap: 28px;
    padding: 0 18px;
    }

    .nav a {
    font-size: 15px;
    white-space: nowrap;
    }

    main {
    padding: 28px 16px;
    }

    h1 {
    font-size: 28px;
    }

    .post {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Mantém a imagem inteira visível */
    display: block;
    background: var(--white);
    }

    .post h2 {
    font-size: 22px;
    }

    .post p {
    font-size: 18px;
    }

    .post a {
    text-decoration: none;
    }

    .nav {
        display: none;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 5px 0 25px rgba(0,0,0,.15);
    transition: .3s;
    z-index: 999;
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    height: 70px;
    background: var(--blue-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-weight: 700;
}

.sidebar-header button {
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 22px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-nav a {
    padding: 18px 20px;
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 700;
    border-bottom: 1px solid #ececec;
    transition: .2s;
}

.sidebar-nav a:hover {
    background: var(--blue-soft);
}

.sidebar-nav a.active {
    background: var(--yellow);
    color: var(--blue-dark);
}


.sidebar-nav_sobre_autor {
    display: flex;
    flex-direction: column;
}

.sidebar-nav_sobre_autor a {
    padding: 18px 20px;
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 700;
    border-bottom: 1px solid #ececec;
    transition: .2s;
}

.sidebar-nav_sobre_autor a:hover {
    background: var(--blue-soft);
}

.sidebar-nav_sobre_autor a.active {
    background: var(--yellow);
    color: var(--blue-dark);
}


/* =====================================================
   PÁGINA SOBRE O AUTOR
===================================================== */

.author-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 80px;
}

.author-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 65px;
  padding: 50px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 223, 0, 0.17),
      transparent 35%
    ),
    #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.author-photo-wrapper {
  position: relative;
  width: 100%;
}

.author-photo {
  display: block;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-position: top center;
  background: #e5e7eb;
  width: 282px;
  height: 359px;
  object-fit: cover;
  border-radius: 90%;
}

.author-status {
  position: absolute;
  right: -18px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 50px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.author-status i {
  color: #16a34a;
  font-size: 9px;
}

.author-label,
.section-heading > span,
.author-cta span {
  display: inline-block;
  margin-bottom: 12px;
  color: #16783e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.author-introduction h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.author-introduction h2 {
  max-width: 700px;
  margin: 18px 0 26px;
  color: #c29f00;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.25;
}

.author-description {
  max-width: 760px;
  margin: 0 0 15px;
  color: #475467;
  font-size: 17px;
  line-height: 1.8;
}

.author-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.author-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.author-button.primary {
  background: #16783e;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 120, 62, 0.22);
}

.author-button.primary:hover {
  background: #0f6332;
}

.author-button.secondary {
  border-color: #d0d5dd;
  background: #ffffff;
  color: #344054;
}

.author-button.secondary:hover {
  border-color: #16783e;
  color: #16783e;
}

.author-section {
  padding: 85px 0 15px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 35px;
}

.section-heading h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.section-heading.light span,
.section-heading.light h2 {
  color: #ffffff;
}

.section-heading.light span {
  color: #ffdf00;
}

.author-text {
  max-width: 940px;
}

.author-text p {
  margin: 0 0 21px;
  color: #475467;
  font-size: 18px;
  line-height: 1.85;
}

.author-highlight {
  margin-top: 75px;
  padding: 65px;
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0)
    ),
    #16783e;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.experience-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.experience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 21px;
  border-radius: 13px;
  background: #ffdf00;
  color: #154f2d;
  font-size: 21px;
}

.experience-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid #d0d5dd;
  border-radius: 50px;
  background: #ffffff;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.skill:hover {
  border-color: #16783e;
  color: #16783e;
  transform: translateY(-2px);
}

.projects-list {
  display: flex;
  flex-direction: column;
}

.project-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid #eaecf0;
}

.project-item:first-child {
  border-top: 1px solid #eaecf0;
}

.project-number {
  color: #c5a500;
  font-size: 25px;
  font-weight: 800;
}

.project-item h3 {
  margin: 0 0 12px;
  color: #101828;
  font-size: 23px;
}

.project-item p {
  max-width: 830px;
  margin: 0 0 13px;
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}

.project-item span {
  color: #16783e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.education-section {
  padding-bottom: 70px;
}

.education-timeline {
  position: relative;
  max-width: 900px;
  margin-left: 8px;
  padding-left: 37px;
  border-left: 2px solid #d0d5dd;
}

.education-item {
  position: relative;
  padding: 0 0 38px 20px;
}

.education-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 3px;
  left: -47px;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #16783e;
  box-shadow: 0 0 0 2px #16783e;
}

.education-date {
  color: #c29f00;
  font-size: 13px;
  font-weight: 800;
}

.education-item h3 {
  margin: 7px 0;
  color: #101828;
  font-size: 21px;
}

.education-item p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}

.author-quote {
  position: relative;
  margin: 25px 0 90px;
  padding: 55px 70px;
  overflow: hidden;
  border-radius: 25px;
  background: #fff7cc;
}

.author-quote > i {
  position: absolute;
  top: 20px;
  right: 40px;
  color: rgba(194, 159, 0, 0.18);
  font-size: 110px;
}

.author-quote blockquote {
  position: relative;
  max-width: 900px;
  margin: 0 0 23px;
  color: #302a13;
  font-size: clamp(23px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.7px;
}

.author-quote strong {
  color: #16783e;
  font-size: 14px;
}

.author-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px;
  border-radius: 22px;
  background: #101828;
}

.author-cta h2 {
  max-width: 750px;
  margin: 0 0 13px;
  color: #ffffff;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.2;
}

.author-cta p {
  max-width: 750px;
  margin: 0;
  color: #98a2b3;
  font-size: 16px;
  line-height: 1.7;
}

/* =====================================================
   RODAPÉ
===================================================== */

.site-footer {
  margin-top: 70px;
  background: #0c111d;
  color: #ffffff;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 45px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  color: #98a2b3;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid #344054;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.footer-social a:hover {
  background: #ffdf00;
  color: #101828;
}

.footer-bottom {
  border-top: 1px solid #1d2939;
}

.footer-bottom p {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  color: #667085;
  font-size: 12px;
  text-align: center;
}

/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media (max-width: 900px) {
  .author-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px;
  }

  .author-photo-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .author-introduction {
    text-align: center;
  }

  .author-description {
    margin-right: auto;
    margin-left: auto;
  }

  .author-actions {
    justify-content: center;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .author-highlight {
    padding: 40px 30px;
  }

  .author-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .author-page {
    width: min(100% - 24px, 1180px);
    padding-top: 25px;
  }

  .author-hero {
    padding: 22px;
    border-radius: 18px;
  }

  .author-status {
    right: 10px;
    bottom: 12px;
  }

  .author-introduction h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .author-actions {
    flex-direction: column;
  }

  .author-button {
    width: 100%;
  }

  .author-section {
    padding-top: 60px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .author-text p {
    font-size: 16px;
  }

  .author-highlight {
    margin-top: 55px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .experience-card {
    padding: 24px;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-number {
    font-size: 18px;
  }

  .education-timeline {
    padding-left: 25px;
  }

  .education-item {
    padding-left: 12px;
  }

  .timeline-marker {
    left: -35px;
  }

  .author-quote {
    padding: 35px 25px;
  }

  .author-quote > i {
    right: 20px;
    font-size: 75px;
  }

  .author-cta {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }
}

.link-sobre-autor {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #16783e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.link-sobre-autor i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.link-sobre-autor:hover i {
    transform: translateX(3px);
}

/* =====================================================
   AJUSTES MOBILE GERAIS
   Coloque este bloco no final do arquivo CSS
===================================================== */

/* Tablets e telas menores */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .search {
    display: none;
  }

  .nav,
  .nav_sobre_autor {
    gap: 28px;
    overflow-x: auto;
    padding: 0 18px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar,
  .nav_sobre_autor::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .nav_sobre_autor a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Celulares */
@media (max-width: 768px) {
  .topbar {
    min-height: 82px;
    height: auto;
    padding: 10px 56px;
  }

  .menu {
    left: 16px;
    font-size: 24px;
  }

  .brand {
    max-width: 100%;
    gap: 9px;
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
  }

  .brand-avatar {
    flex: 0 0 auto;
    width: 46px;
    height: 60px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: clamp(17px, 5.5vw, 22px);
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  .brand-text span {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .nav,
  .nav_sobre_autor {
    display: none;
  }

  main {
    padding: 24px 14px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.15;
  }

  .post {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 34px;
  }

  .thumb {
    width: 100%;
    height: auto;
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }

  .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
  }

  .badge {
    top: 8px;
    right: 8px;
    font-size: 11px;
    padding: 5px 8px;
  }

  .post h2 {
    max-width: 100%;
    font-size: clamp(20px, 6vw, 24px);
    overflow-wrap: anywhere;
  }

  .post p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.5;
  }

  .sidebar {
    left: -100%;
    width: min(84vw, 320px);
  }

  .sidebar-nav a,
  .sidebar-nav_sobre_autor a {
    padding: 16px 18px;
    font-size: 15px;
  }

  .author-page {
    width: calc(100% - 24px);
    padding: 22px 0 55px;
  }

  .author-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .author-photo-wrapper {
    display: flex;
    justify-content: center;
    max-width: 290px;
  }

  .author-photo {
    width: min(72vw, 240px);
    height: auto;
    max-width: 100%;
    aspect-ratio: 282 / 359;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
  }

  .author-status {
    right: 0;
    bottom: 8px;
    max-width: 90%;
    padding: 10px 13px;
    font-size: 11px;
  }

  .author-introduction h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.5px;
  }

  .author-introduction h2 {
    margin: 14px 0 20px;
    font-size: clamp(19px, 6vw, 24px);
  }

  .author-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .author-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .author-button {
    width: 100%;
    min-height: 46px;
  }

  .author-section {
    padding: 55px 0 10px;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 9vw, 36px);
    letter-spacing: -0.8px;
  }

  .author-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .author-highlight {
    margin-top: 45px;
    padding: 28px 16px;
    border-radius: 18px;
  }

  .experience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-card {
    padding: 22px 18px;
  }

  .skills-container {
    gap: 8px;
  }

  .skill {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .project-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 26px 0;
  }

  .project-item h3 {
    font-size: 20px;
  }

  .project-item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .education-timeline {
    margin-left: 2px;
    padding-left: 23px;
  }

  .education-item {
    padding-left: 10px;
  }

  .timeline-marker {
    left: -33px;
  }

  .author-quote {
    margin-bottom: 55px;
    padding: 32px 20px;
    border-radius: 18px;
  }

  .author-quote blockquote {
    font-size: clamp(21px, 7vw, 28px);
  }

  .author-quote > i {
    right: 14px;
    font-size: 64px;
  }

  .author-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding: 30px 20px;
    border-radius: 18px;
  }

  .author-cta h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

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

  .footer-content {
    flex-direction: column;
    width: calc(100% - 24px);
    gap: 26px;
    padding: 35px 0;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-bottom p {
    width: calc(100% - 24px);
    line-height: 1.5;
  }
}

/* Celulares pequenos */
@media (max-width: 420px) {
  .topbar {
    padding-right: 44px;
    padding-left: 48px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-avatar {
    width: 40px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  main {
    padding-right: 12px;
    padding-left: 12px;
  }

  .thumb {
    min-height: 170px;
  }

  .author-hero {
    padding-right: 13px;
    padding-left: 13px;
  }

  .author-photo {
    width: min(76vw, 220px);
  }

  .author-status {
    position: static;
    width: fit-content;
    margin: 12px auto 0;
  }
}