/*
Theme Name: Pedro Duarte Home
Theme URI: https://pedroduarte.com.br/
Author: OpenCode
Description: Tema WordPress responsivo baseado nos PDFs Home Desktop e Home Mobile.
Version: 1.0.0
Text Domain: pedro-duarte-home
*/

:root {
  --blue: #0577bb;
  --dark: #1f2630;
  --navy: #061d49;
  --max: 1080px;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("assets-extracted/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("assets-extracted/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .section,
  .contact-wrap {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  @keyframes section-reveal {
    from {
      opacity: 0;
      transform: translateY(32px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

body {
  margin: 0;
  color: var(--dark);
  background: #fff;
  font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

.site-header {
  height: 58px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(100%, 950px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.brand {
  display: block;
  width: 184px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.has-submenu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin: -6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.submenu-caret {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.has-submenu.open .submenu-caret {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 230px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 29, 73, 0.16);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 120;
}

.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--dark);
  font-size: 15px;
  white-space: nowrap;
}

.submenu a:hover {
  background: #f1f6fb;
  color: var(--blue);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.search-icon,
.header-inner > .search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #777;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: #777;
  transform: rotate(45deg);
}

.header-inner > .search-icon,
.menu-icon {
  display: none;
}

.hero {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #d7e7f2;
}

.hero img {
  width: 100%;
  height: auto;
}

.section {
  width: min(100% - 34px, var(--max));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 50px;
  color: #333;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 28px;
  /* font-weight: 900; */
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.about {
  width: min(100% - 34px, 1080px);
  min-height: 390px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0 58px;
}

.about .section-title {
  margin-bottom: 8px;
  text-align: left;
}

.about-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.24;
}

.about-text p {
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 38px;
  padding: 11px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font:
    900 16px/1 Montserrat,
    Arial,
    sans-serif;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
}

.photo,
.card {
  overflow: hidden;
  border-radius: 6px;
  background: #d9d9d9;
}

.photo img,
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-photo > img {
  object-position: right top !important;
}

.about-photo {
  aspect-ratio: 100/80;
}

.cards-section {
  padding: 22px 0 54px;
}

#atuacao.cards-section {
  width: min(100% - 34px, 1080px);
}

.acting-grid,
.transparency-grid,
.plano-de-mandato-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.acting-grid {
  grid-template-columns: 500px 1fr;
  gap: 24px;
  align-items: start;
}

.stacked-cards {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  height: 220px;
}

.card img {
  position: absolute;
  inset: 0;
}

.card-small {
  height: 102px;
}

.transparency-grid > .card {
  height: 365px;
}

.acting-grid > .card:first-child {
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.acting-grid .stacked-cards {
  height: 400px;
  gap: 24px;
}

.stacked-cards > .card-small {
  height: 188px;
}

.acting-grid > .card img,
.transparency-grid > .card img,
.stacked-cards > .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acting-grid > .card:first-child img {
  object-position: center center;
}
.stacked-cards > .card-small:first-child img {
  object-position: clamp(40px, 6.25vw, 90px) clamp(-100px, -2.8vw, -25px);
}
.stacked-cards > .card-small:last-child img {
  object-fit: contain;
  object-position: right center;
}
.transparency-grid > .card:first-child img {
  object-position: center center;
}
.transparency-grid > .card:last-child img {
  object-position: center center;
}

.card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.card-small .card-title {
  top: 0;
  right: auto;
  width: 46%;
  min-height: 100%;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.08;
}

.social-feeds {
  display: flex;
  justify-content: center;
  padding: 28px 0 72px;
}

.feed {
  display: flex;
  flex-direction: column;
  width: min(100%, 720px);
  margin: 0 auto;
  align-items: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.feed-cta {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 20px;
}

.x-feed {
  display: grid;
  gap: 16px;
  font-size: 16px;
  line-height: 1.25;
}

.tweet {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.tweet p {
  margin: 0;
}

.tweet img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-wrap {
  padding: 72px 0 24px;
  background:
    linear-gradient(
      to bottom,
      #fff 0,
      rgba(255, 255, 255, 0.96) 18%,
      rgba(255, 255, 255, 0.82) 42%,
      rgba(255, 255, 255, 0.72) 100%
    ),
    url("assets-extracted/desktop-004.png") center bottom / cover no-repeat;
}

.contact {
  width: min(100% - 34px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-photo {
  aspect-ratio: 356 / 232;
}

.contact-copy h2 {
  margin: 0 0 22px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.38;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.contact-form label {
  position: relative;
}

.contact-form span {
  position: absolute;
  top: 5px;
  left: 12px;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #202020;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.18);
  font:
    400 17px "Myriad Pro",
    Arial,
    sans-serif;
}

.contact-form input {
  height: 60px;
  padding: 20px 12px 6px;
}
.contact-form textarea {
  height: 92px;
  padding: 24px 12px 10px;
  resize: vertical;
}
.contact-form .message {
  grid-column: 1 / -1;
}
.submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.social-links {
  padding: 24px 0 18px;
  text-align: center;
}

.social-links .section-title {
  margin-bottom: 23px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.social-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.social-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.social-icon-facebook img {
  width: 100%;
  height: 100%;
}

.social-icon-youtube img {
  width: 90%;
  height: 72%;
}

.site-footer {
  width: min(100% - 34px, 1200px);
  margin: 18px auto 0;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(31, 38, 48, 0.32);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.about-page-main {
  width: min(100% - 34px, var(--max));
  margin: 34px auto 0;
}

.about-hero {
  overflow: hidden;
  margin: 0 0 34px;
  border-radius: 14px;
}

.about-page-grid figure,
.about-image-stack figure {
  margin: 0;
}

.about-hero img,
.about-image-stack img,
.about-experience-photo img {
  width: 100%;
  object-fit: cover;
}

.about-hero img {
  height: auto;
}

.about-page-section,
.about-page-grid {
  margin-bottom: 60px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: start;
}

.about-history {
  grid-template-columns: 500px 1fr;
  gap: 64px;
}

.about-page-copy,
.about-biography {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.24;
}

.about-page-copy h2,
.about-biography h1 {
  margin: 0 0 14px;
  color: #333;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-page-copy p,
.about-biography p {
  margin: 0 0 13px;
}

.about-page-copy p:last-child,
.about-biography p:last-child {
  margin-bottom: 0;
}

.about-image-stack {
  display: grid;
  gap: 16px;
}

.about-image-stack figure {
  overflow: hidden;
  height: auto;
  aspect-ratio: 22 / 9;
  border-radius: 6px;
}

.about-image-stack img {
  height: 100%;
}

.about-image-stack figure:first-child img {
  object-position: 50% 30%;
}

.about-image-stack figure:last-child img {
  object-position: 50% 68%;
}

.about-experience {
  align-items: center;
  margin-bottom: 58px;
}

.about-page-copy ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.about-page-copy li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
}

.about-page-copy li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.about-experience-photo {
  overflow: hidden;
  height: 400px;
  border-radius: 6px;
}

.about-experience-photo img {
  object-position: 44% 38%;
  height: 100%;
}

.plano-de-mandato-page-main,
.prestacao-de-contas-page-main,
.leis-aprovadas-page-main,
.colinha-page-main {
  width: min(100% - 34px, var(--max));
  margin: 34px auto 0;
}

.plano-de-mandato-page-grid,
.prestacao-de-contas-page-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 58px;
}

.plano-de-mandato-page-grid figure,
.prestacao-de-contas-page-grid figure {
  margin: 0;
}

.plano-de-mandato-page-copy,
.prestacao-de-contas-page-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.24;
}

.plano-de-mandato-page-copy h1,
.prestacao-de-contas-page-copy h1 {
  margin: 0 0 14px;
  color: #333;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.08;
  text-transform: uppercase;
}

.plano-de-mandato-page-copy p,
.prestacao-de-contas-page-copy p {
  margin: 0 0 13px;
}

.plano-de-mandato-page-copy .btn,
.prestacao-de-contas-page-copy .btn {
  margin-top: 12px;
}

.plano-de-mandato-photo,
.prestacao-de-contas-photo {
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  /* max-width: 460px; */
  justify-self: end;
}

.plano-de-mandato-photo img,
.prestacao-de-contas-photo img {
  height: auto;
  object-fit: contain;
  width: 100%;
  max-width: 440px;
}

.prestacao-de-contas-photo img {
  max-width: 400px;
}

.generic-page-main {
  width: min(100% - 34px, 880px);
  margin: 48px auto 64px;
}

.generic-page-content {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.generic-page-content h1 {
  margin: 0 0 24px;
  color: #333;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.generic-page-content p {
  margin: 0 0 18px;
}

.proposals-page-main {
  width: min(100% - 34px, var(--max));
  margin: 34px auto 64px;
}

.proposals-resumo {
  margin-bottom: 100px;
  text-align: center;
}

.proposals-resumo h2,
.leis-resumo h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.12;
  text-transform: uppercase;
}

.proposals-resumo p {
  max-width: 720px;
  margin: 0 auto 10px auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.proposals-resumo p:last-child {
  margin-bottom: 0;
}

.proposals-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.proposals-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.proposals-download {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

#propostas {
  scroll-margin-top: 80px;
}

.plano-de-mandato-page-main .proposals-head {
  margin-top: 8px;
}

.proposals-accordion {
  margin-bottom: 54px;
}

.axis {
  border-bottom: 2px solid var(--navy);
}

.axis-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 4px;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.axis-trigger::-webkit-details-marker {
  display: none;
}

.axis-trigger:hover {
  color: var(--blue);
}

.axis-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.axis-icon::before,
.axis-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.axis-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.axis[open] > .axis-trigger .axis-icon::after {
  display: none;
}

.axis[open] > .axis-trigger {
  font-weight: 700;
}

.axis-panel {
  padding: 6px 4px 30px;
}

.axis-label {
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.proposal {
  border-bottom: 1px solid rgba(6, 29, 73, 0.22);
}

.proposal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.proposal summary::-webkit-details-marker {
  display: none;
}

.proposal summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 400;
}

.proposal[open] summary::after {
  content: "–";
}

.proposal summary:hover {
  color: var(--blue);
}

.proposal p {
  margin: 0;
  padding: 2px 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

/* ===== Leis Aprovadas (espelha proposals, classes próprias leis-*) ===== */

.leis-page-main {
  width: min(100% - 34px, var(--max));
  margin: 34px auto 64px;
}

.leis-resumo {
  margin-bottom: 100px;
  text-align: center;
}

.leis-resumo p {
  max-width: 720px;
  margin: 0 auto 10px auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.leis-resumo p:last-child {
  margin-bottom: 0;
}

.leis-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.leis-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.leis-download {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

#leis {
  scroll-margin-top: 80px;
}

.leis-accordion {
  margin-bottom: 54px;
}

.lei {
  border-bottom: 2px solid var(--navy);
}

.lei-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 4px;
  color: #0b66b1;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.lei-trigger::-webkit-details-marker {
  display: none;
}

.lei-trigger:hover {
  color: var(--blue);
}

.lei-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: inherit;
}

.lei-icon::before,
.lei-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.lei-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lei[open] > .lei-trigger .lei-icon::after {
  display: none;
}

.lei[open] > .lei-trigger {
  font-weight: 700;
}

.lei-panel {
  padding: 6px 4px 30px;
}

.lei-panel p {
  margin: 0 0 13px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.lei-panel p:last-child {
  margin-bottom: 0;
}

/* ===== Economia do mandato (mesmo padrão de título das outras páginas) ===== */

.economia-page-main {
  width: min(100% - 34px, var(--max));
  margin: 34px auto 64px;
}

.economia-resumo {
  margin-bottom: 40px;
  text-align: center;
}

.economia-resumo h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.12;
  text-transform: uppercase;
}

.economia-destaque {
  margin: 26px auto 26px;
  padding: 28px 20px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.economia-destaque strong {
  display: block;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.05;
}

.economia-destaque span {
  display: block;
  margin-top: 8px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.economia-resumo p {
  /* max-width: 720px; */
  margin: 0 auto 10px auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.economia-resumo p:last-child {
  margin-bottom: 0;
}

.economia-head {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.economia-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.economia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.economia-card {
  padding: 22px 20px;
  border: 1px solid rgba(6, 29, 73, 0.18);
  border-radius: 12px;
  background: #f6f9fc;
}

.economia-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.economia-card-valor {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.economia-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.economia-fonte {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.85;
}

.colinha-page-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 64px;
  justify-items: center;
}

.colinha-head {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 8px;
}

.colinha-head .section-title {
  margin-bottom: 10px;
}

.colinha-head p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
}

.colinha-div {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.img-candidato-bloco {
  flex: 0 0 86px;
  display: flex;
  align-self: stretch;
}

.colinha-div .img-candidato {
  width: 86px;
  height: 100%;
  min-height: 86px;
  flex: 1;
  padding: 0;
  background-color: #ccc;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.bloco-direita {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}

.bloco-direita h3.cargo {
  margin: 0 0 2px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--navy);
}

.bloco-direita .buscar-btn {
  align-self: flex-start;
  width: 100px;
  padding: 6px 10px;
  background-color: #061d49;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.campo-preencher,
.input-confirma-bloco {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.campo-preencher {
  gap: 6px;
}

.campo-preencher .campo-preencher-input {
  width: 2rem;
  height: 2rem;
  padding: 0;
  background-color: #ccc;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.campo-preencher .campo-preencher-input:focus {
  border-color: var(--blue);
}

.colinha-div.is-locked .campo-preencher-input[readonly] {
  color: #061d49;
  cursor: default;
  opacity: 1;
}

.input-confirma-bloco .btn-confirma {
  padding: 6px 12px;
  background-color: #1a9e4b;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.bloco-direita button {
  font-size: 12px;
}

@media (max-width: 1180px) {
  :root {
    --max: 940px;
  }

  .header-inner {
    width: min(100%, var(--max));
  }

  .section-title {
    margin-bottom: 38px;
    font-size: 26px;
  }

  .about {
    width: min(100% - 34px, var(--max));
    grid-template-columns: 440px 1fr;
    gap: 48px;
  }

  .about-text {
    font-size: 16px;
  }

  #atuacao.cards-section {
    width: min(100% - 34px, var(--max));
  }

  .acting-grid {
    grid-template-columns: 440px 1fr;
  }

  .acting-grid > .card:first-child {
    width: 100%;
    max-width: 440px;
    height: 360px;
  }

  .acting-grid .stacked-cards {
    height: 360px;
  }

  .stacked-cards > .card-small {
    height: 168px;
  }

  .transparency-grid > .card {
    height: 315px;
  }

  .card-title {
    min-height: 44px;
    font-size: 16px;
  }

  .social-feeds {
    gap: 56px;
  }

  .contact-copy h2 {
    font-size: 27px;
  }

  .contact-copy p {
    font-size: 16px;
  }

  .about-page-main {
    width: min(100% - 34px, var(--max));
  }

  .about-page-grid,
  .about-history,
  .plano-de-mandato-page-grid,
  .prestacao-de-contas-page-grid {
    grid-template-columns: 440px 1fr;
    gap: 48px;
  }

  .about-page-copy,
  .about-biography {
    font-size: 16px;
  }

  .about-page-copy h2,
  .about-biography h1 {
    font-size: 26px;
  }

  .plano-de-mandato-page-copy,
  .prestacao-de-contas-page-copy {
    font-size: 16px;
  }

  .plano-de-mandato-page-copy h1,
  .prestacao-de-contas-page-copy h1 {
    font-size: 26px;
  }

  .proposals-page-main,
  .leis-page-main,
  .economia-page-main {
    width: min(100% - 34px, var(--max));
  }

  .economia-resumo h2 {
    font-size: 30px;
  }

  .economia-destaque strong {
    font-size: 36px;
  }

  .economia-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proposals-head h2,
  .leis-head h2 {
    font-size: 16px;
  }

  .axis-trigger,
  .lei-trigger {
    padding: 22px 4px;
    /* font-size: 21px; */
  }

  .proposal summary,
  .proposal p,
  .lei-panel p {
    font-size: 15px;
  }

  .about-experience-photo {
    height: 360px;
  }

  .colinha-page-main {
    gap: 28px 16px;
  }

  .colinha-div {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  :root {
    --max: 720px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .brand {
    width: 168px;
  }

  .main-nav {
    gap: 20px;
    font-size: 14px;
  }

  .about {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    gap: 32px;
    padding: 46px 0 44px;
  }

  .about-text {
    font-size: 15px;
  }

  .about .about-photo > img {
    object-position: right top !important;
  }

  .acting-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .acting-grid > .card:first-child {
    width: auto;
    height: 320px;
  }

  .acting-grid .stacked-cards {
    height: 320px;
  }

  .stacked-cards > .card-small {
    height: 148px;
  }

  .transparency-grid > .card {
    height: 270px;
  }

  .social-feeds {
    gap: 34px;
  }

  .x-feed {
    font-size: 14px;
  }

  .tweet {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .tweet img {
    width: 54px;
    height: 54px;
  }

  .contact {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
  }

  .contact-copy h2 {
    font-size: 24px;
  }

  .contact-copy p {
    font-size: 15px;
  }

  .contact-form input {
    height: 46px;
  }

  .about-page-main {
    width: min(100% - 34px, var(--max));
    margin-top: 24px;
  }

  .about-page-grid,
  .about-history,
  .plano-de-mandato-page-grid,
  .prestacao-de-contas-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    gap: 32px;
  }

  .about-page-copy,
  .about-biography {
    font-size: 15px;
  }

  .about-page-copy h2,
  .about-biography h1 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .plano-de-mandato-page-main,
  .prestacao-de-contas-page-main {
    width: min(100% - 34px, var(--max));
    margin-top: 24px;
  }

  .plano-de-mandato-page-copy,
  .prestacao-de-contas-page-copy {
    font-size: 15px;
  }

  .plano-de-mandato-page-copy h1,
  .prestacao-de-contas-page-copy h1 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .proposals-head h2,
  .leis-head h2 {
    font-size: 15px;
  }

  .axis-trigger,
  .lei-trigger {
    padding: 20px 4px;
    font-size: 19px;
  }

  .proposals-accordion,
  .leis-accordion {
    margin-bottom: 42px;
  }

  .economia-grid {
    grid-template-columns: 1fr;
  }

  .economia-destaque strong {
    font-size: 32px;
  }

  .about-experience-photo {
    height: 320px;
  }

  .about-image-stack figure {
    aspect-ratio: 18 / 9;
  }

  .colinha-page-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
    margin-top: 24px;
    margin-bottom: 48px;
  }

  .colinha-head p {
    font-size: 15px;
  }

  .colinha-div {
    max-width: 100%;
  }

  .bloco-direita h3.cargo {
    font-size: 15px;
  }
} /* fim breakpoint 900px */

@media (max-width: 640px) {
  :root {
    --max: 390px;
  }

  .site-header {
    height: 55px;
  }
  .header-inner {
    padding: 0 21px;
  }
  .brand {
    width: 164px;
  }
  .main-nav {
    display: none;
  }
  .site-header {
    position: relative;
    z-index: 100;
  }
  .menu-icon {
    display: block;
    width: 25px;
    height: 15px;
    padding: 0;
    border: 0;
    background: linear-gradient(
      #111 0 2px,
      transparent 2px 6px,
      #111 6px 8px,
      transparent 8px 12px,
      #111 12px 14px
    );
    cursor: pointer;
  }
  body.menu-open .menu-icon {
    position: relative;
    background: transparent;
  }
  body.menu-open .menu-icon::before,
  body.menu-open .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    margin-top: -1px;
    background: #111;
  }
  body.menu-open .menu-icon::before {
    transform: rotate(45deg);
  }
  body.menu-open .menu-icon::after {
    transform: rotate(-45deg);
  }
  body.menu-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 21px 16px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  body.menu-open .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(31, 38, 48, 0.12);
    font-size: 16px;
  }
  body.menu-open .main-nav a:last-of-type {
    border-bottom: 0;
  }
  body.menu-open .main-nav .search-icon {
    display: none;
  }
  body.menu-open .nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(31, 38, 48, 0.12);
  }
  body.menu-open .nav-item > .nav-link {
    flex: 1 1 auto;
    border-bottom: 0;
  }
  body.menu-open .submenu-toggle {
    flex: 0 0 auto;
    padding: 13px 2px 13px 14px;
    margin: 0;
  }
  body.menu-open .submenu {
    position: static;
    flex: 1 1 100%;
    min-width: 0;
    padding: 0 0 6px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
    display: none;
  }
  body.menu-open .has-submenu.open > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  body.menu-open .submenu a {
    padding: 10px 0 10px 14px;
    border-bottom: 0;
    font-size: 15px;
  }
  .header-inner > .search-icon {
    display: block;
  }

  .hero {
    width: 100%;
  }

  .section-title {
    margin-bottom: 12px;
    font-size: 25px;
    letter-spacing: 3.8px;
  }

  .about {
    width: min(100% - 24px, 390px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 30px 0 28px;
  }

  .about > div,
  .about-text {
    display: contents;
  }

  .about .section-title {
    order: 0;
    margin: 0;
    text-align: center;
  }

  .about-text {
    font-size: 13.5px;
    line-height: 1.18;
  }
  .about-text p {
    order: 2;
    margin: 20px 0 14px;
  }
  .about-photo {
    order: 1;
    width: 100%;
    margin: 10px 0 0 0;
  }
  .about .btn {
    order: 3;
    width: 100%;
    min-width: 0;
    min-height: 28px;
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .about .about-photo > img {
    object-position: right top !important;
  }

  .cards-section {
    padding: 18px 0 32px;
  }
  #atuacao.cards-section {
    width: min(100% - 24px, 390px);
  }
  .acting-grid,
  .transparency-grid {
    gap: 9px;
  }
  .acting-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .stacked-cards {
    gap: 8px;
  }
  .card {
    height: 146px;
    border-radius: 4px;
  }
  .card-small {
    height: 69px;
  }
  .acting-grid > .card {
    height: 146px;
  }
  .acting-grid .stacked-cards {
    height: auto;
    gap: 8px;
  }

  .stacked-cards > .card-small {
    height: 156px;
    /* gap: 0; */
  }
  .acting-grid > .card img,
  .transparency-grid > .card img,
  .stacked-cards > .card img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .stacked-cards > .card-small:first-child img {
    object-position: center;
  }

  .transparency-grid > .card {
    height: 146px;
  }
  .card-title {
    min-height: 32px;
    padding: 7px;
    font-size: 12.2px;
    letter-spacing: 0.9px;
  }
  .card-small .card-title {
    top: auto;
    right: 0;
    width: 100%;
    min-height: 28px;
    justify-content: center;
    text-align: center;
  }

  .social-feeds {
    display: flex;
    justify-content: center;
    padding: 18px 0 38px;
  }
  .feed {
    display: flex;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 15px;
  }
  .instagram-grid {
    gap: 7px;
  }
  .feed-cta {
    margin-top: auto;
    padding-top: 8px;
  }
  .btn {
    min-height: 32px;
    min-width: 224px;
    width: 100%;
    padding: 8px 20px;
    font-size: 12px;
  }
  .x-feed {
    gap: 12px;
    font-size: 13px;
    line-height: 1.18;
  }
  .tweet {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }
  .tweet img {
    width: 50px;
    height: 50px;
  }

  .contact-wrap {
    padding: 0;
  }
  .contact {
    display: block;
    width: min(100% - 24px, 390px);
  }
  .contact-photo {
    display: none;
  }
  .contact-copy h2 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
  }
  .contact-copy p {
    margin-bottom: 9px;
    text-align: center;
    font-size: 14px;
    line-height: 1.22;
  }
  .contact-form {
    display: block;
  }
  .contact-form label {
    display: block;
    margin-bottom: 3px;
  }
  .contact-form span {
    top: 5px;
    font-size: 13px;
  }
  .contact-form input {
    height: 50px;
    border-radius: 8px;
  }
  .contact-form textarea {
    height: 76px;
    border-radius: 5px;
  }
  .submit-row {
    margin-top: 11px;
  }

  .social-links {
    padding: 15px 0 10px;
  }
  .social-links .section-title {
    margin-bottom: 11px;
  }
  .social-icons {
    gap: 20px;
  }
  .social-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .site-footer {
    width: min(100% - 48px, 320px);
    margin-top: 12px;
    padding-top: 7px;
    font-size: 9px;
  }

  .about-page-main {
    width: min(100% - 24px, 390px);
    margin-top: 20px;
  }

  .about-hero {
    margin-bottom: 22px;
    border-radius: 9px;
  }

  .about-page-section,
  .about-page-grid {
    margin-bottom: 24px;
  }

  .about-page-grid,
  .about-history,
  .plano-de-mandato-page-grid,
  .prestacao-de-contas-page-grid {
    display: block;
  }

  .plano-de-mandato-page-main,
  .prestacao-de-contas-page-main {
    width: min(100% - 24px, 390px);
    margin-top: 20px;
  }

  .plano-de-mandato-page-grid,
  .prestacao-de-contas-page-grid {
    margin-bottom: 24px;
  }

  .plano-de-mandato-page-copy,
  .prestacao-de-contas-page-copy {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .plano-de-mandato-page-copy h1,
  .prestacao-de-contas-page-copy h1 {
    margin-bottom: 9px;
    font-size: 25px;
    letter-spacing: 3.8px;
    text-align: center;
  }

  .plano-de-mandato-page-copy .btn,
  .prestacao-de-contas-page-copy .btn {
    width: 100%;
    margin-top: 14px;
  }

  .plano-de-mandato-photo,
  .prestacao-de-contas-photo {
    margin: 18px auto 0;
    max-width: 340px;
  }

  .proposals-page-main,
  .leis-page-main,
  .economia-page-main {
    width: min(100% - 24px, 390px);
    margin: 20px auto 42px;
  }

  .proposals-resumo,
  .leis-resumo,
  .economia-resumo {
    margin-bottom: 24px;
  }

  .proposals-resumo h2,
  .leis-resumo h2,
  .economia-resumo h2 {
    font-size: 18px;
    letter-spacing: 1.2px;
  }

  .proposals-resumo p,
  .leis-resumo p,
  .economia-resumo p {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .economia-destaque {
    padding: 20px 14px;
  }

  .economia-destaque strong {
    font-size: 28px;
  }

  .economia-destaque span {
    font-size: 14px;
  }

  .economia-card-valor {
    font-size: 17px;
  }

  .proposals-head,
  .leis-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
  }

  .proposals-head h2,
  .leis-head h2 {
    font-size: 14px;
  }

  .proposals-download,
  .leis-download {
    font-size: 12px;
    margin-top: 0;
  }

  .proposals-accordion,
  .leis-accordion {
    margin-bottom: 34px;
  }

  .axis-trigger,
  .lei-trigger {
    padding: 18px 2px;
    font-size: 17px;
  }

  .axis-panel,
  .lei-panel {
    padding-bottom: 22px;
  }

  .proposal summary {
    padding: 12px 0;
    font-size: 14px;
  }

  .proposal p,
  .lei-panel p {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .about-page-grid {
    gap: 0;
  }

  .about-page-copy,
  .about-biography {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .about-page-copy h2,
  .about-biography h1 {
    margin-bottom: 9px;
    font-size: 25px;
    letter-spacing: 3.8px;
    text-align: center;
  }

  .about-origins {
    display: flex;
    flex-direction: column;
  }

  .about-origins h2 {
    order: 0;
  }

  .about-origins .about-image-stack {
    order: 1;
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .about-origins .about-page-copy p {
    order: 2;
  }

  .about-image-stack {
    margin-top: 18px;
  }

  .about-image-stack figure {
    border-radius: 5px;
  }

  .about-liberty {
    padding-top: 24px;
  }

  .about-page-copy li {
    margin-bottom: 10px;
  }

  .about-experience-photo {
    height: 160px;
    margin-top: 16px;
    border-radius: 5px;
  }

  .colinha-page-main {
    width: min(100% - 24px, 390px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px auto 42px;
  }

  .colinha-head p {
    font-size: 13.5px;
  }

  .colinha-div {
    max-width: 100%;
  }

  .bloco-direita {
    gap: 8px;
  }

  .bloco-direita h3.cargo {
    font-size: 14px;
  }

  .input-confirma-bloco {
    gap: 8px;
  }

  .stacked-cards > .card-small:last-child img {
    object-fit: cover;
  }
} /* fim breakpoint 640px */

@media (max-width: 380px) {
  :root {
    --max: 340px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand {
    width: 144px;
  }

  .section {
    width: min(100% - 24px, var(--max));
  }

  .section-title {
    margin-bottom: 10px;
    font-size: 22px;
    letter-spacing: 2.6px;
  }

  .about {
    width: min(100% - 24px, var(--max));
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
  }

  .about .section-title {
    margin-bottom: 0;
  }

  .about-text {
    font-size: 13px;
    line-height: 1.2;
  }

  .about-photo {
    max-height: 320px;
  }

  #atuacao.cards-section {
    width: min(100% - 24px, var(--max));
  }

  .acting-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .acting-grid > .card,
  .acting-grid > .card:first-child,
  .transparency-grid > .card {
    height: 220px;
  }

  .acting-grid .stacked-cards {
    height: auto;
    gap: 10px;
  }

  .stacked-cards > .card-small {
    height: 140px;
  }

  .card-small .card-title {
    width: 48%;
    min-height: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .card-title {
    font-size: 13px;
  }

  .social-feeds {
    padding: 14px 0 32px;
  }

  .instagram-grid {
    gap: 6px;
  }

  .tweet {
    grid-template-columns: 44px 1fr;
  }

  .tweet img {
    width: 44px;
    height: 44px;
  }

  .contact {
    width: min(100% - 24px, var(--max));
  }

  .contact-copy h2 {
    font-size: 21px;
  }

  .contact-copy p {
    font-size: 13px;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icon {
    width: 46px;
    height: 46px;
  }

  .about-page-main {
    width: min(100% - 24px, var(--max));
  }

  .about-page-copy,
  .about-biography {
    font-size: 13px;
  }

  .about-page-copy h2,
  .about-biography h1 {
    font-size: 22px;
    letter-spacing: 2.6px;
  }

  .about-experience-photo {
    height: 220px;
  }

  .plano-de-mandato-page-main,
  .prestacao-de-contas-page-main {
    width: min(100% - 24px, var(--max));
  }

  .plano-de-mandato-page-copy,
  .prestacao-de-contas-page-copy {
    font-size: 13px;
  }

  .plano-de-mandato-page-copy h1,
  .prestacao-de-contas-page-copy h1 {
    font-size: 22px;
    letter-spacing: 2.6px;
  }

  .plano-de-mandato-photo,
  .prestacao-de-contas-photo {
    max-width: 300px;
  }

  .proposals-page-main,
  .leis-page-main,
  .economia-page-main {
    width: min(100% - 24px, var(--max));
  }

  .proposals-resumo h2,
  .leis-resumo h2,
  .economia-resumo h2 {
    font-size: 16px;
  }

  .proposals-resumo p,
  .leis-resumo p,
  .economia-resumo p {
    font-size: 13px;
  }

  .proposals-head h2,
  .leis-head h2,
  .economia-head h2 {
    font-size: 13px;
  }

  .axis-trigger,
  .lei-trigger {
    font-size: 14px;
  }

  .proposal summary,
  .proposal p,
  .lei-panel p {
    font-size: 12px;
  }

  .colinha-page-main {
    width: min(100% - 24px, var(--max));
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .colinha-head p {
    font-size: 13px;
  }

  .stacked-cards > .card-small:first-child img {
    object-position: 50px -20px;
  }

  .stacked-cards > .card-small:last-child img {
    object-fit: contain;
  }
} /* fim breakpoint 380px */
