﻿
/* Mobile menu (drawer) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #005FA9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: #ffffff;
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: #ffffff;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 4px 0 12px rgba(0,0,0,0.15);
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1200;
}

.menu-drawer.active {
  left: 0;
}

.close-btn {
  display: block;
  position: sticky;
  top: 0;
  background: #ffffff;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 14px 18px;
  width: 100%;
  text-align: left;
  color: #005FA9;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 100;
}

.drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-links > li {
  border-bottom: 1px solid #e6e6e6;
}

.drawer-links > li > a {
  display: block;
  padding: 14px 18px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.drawer-links > li > a:hover {
  background: #e6eef5;
  color: #005FA9;
}

.drawer-links > li > a.is-active {
  background: #e6eef5;
  color: #005FA9;
  font-weight: 700;
}

.drawer-dropdown {
  border-bottom: 1px solid #e6e6e6;
}

.drawer-toggle {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  color: #000000;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
}

.drawer-toggle:hover {
  background: #e6eef5;
  color: #005FA9;
}

.drawer-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #ffffff;
  border-left: 2px solid #005FA9;
}

.drawer-submenu.active {
  max-height: 400px;
}

.drawer-submenu li a {
  display: block;
  padding: 10px 18px 10px 28px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.drawer-submenu li a:hover {
  background: #e6eef5;
  color: #005FA9;
}

.drawer-submenu li a.is-active {
  background: #e6eef5;
  color: #005FA9;
  font-weight: 700;
  position: relative;
}

.drawer-submenu li a.is-active::before {
  content: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #005FA9;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1190;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Exemplo de mídia para mostrar o hambúrguer só no mobile */
@media (max-width: 991px) {

  /* aqui normalmente você esconderia o menu desktop, ex:
  .main-nav {
    display: none;
  }
  */
}

/* ===== MEDIA QUERIES (RESPONSIVIDADE) ===== */

/* Tablets (768px e abaixo) */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .topbar {
    display: none;
  }

  html,
  body {
    background: #ffffff;
  }

  .menu-links {
    display: none;             /* esconde o menu desktop */
  }

  .menu {
        padding: 20px 12px;         /* ocupa o espaco do cabecalho */
        top: 0;

  }

  .menu > a img {
    width: 80px;               /* reduz logo */
    height: auto;
  }

  .selos {
    gap: 10px;                 /* reduz espaco entre selos */
  }

  .selos .selo img {
    width: 70px;               /* reduz tamanho dos selos */
    height: auto;
  }

  .mobile-info-fab,
  .mobile-info-backdrop,
  .mobile-info-panel {
    display: block;
  }

  .mobile-info-fab {
    display: grid;
    right: 16px;
    bottom: 96px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .mobile-info-panel {
    display: grid;
    right: 12px;
    bottom: 150px;
    width: min(300px, 90vw);
  }

  .scroll-top-btn {
    bottom: 52px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }


  .topbar {
    background: #0b6db5;   /* ajuste a cor conforme o site */
    padding: 8px 12px;
    justify-content: center;
  }

  .topbar-left,
  .topbar-right {
    display: none;
  }

  .topbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .topbar-center a {
    color: #fff;
    font-size: 20px; /* tamanho dos icones */
    margin: 0 5px; /* ajuste nos icones */
  }

  .topbar .login {
    color: #fff;
    font-weight: 600;
  }

  .topbar img {
    width: 28px;
    height: 18px;
    border-radius: 50%; /* deixa circular */
    object-fit: cover;
    margin: 0 5px; /* ajuste nas bandeiras */
  }

  .phone {
    display: none;             /* esconde telefone em tablets */
  }

  .whatsapp-modal-card {
    width: min(270px, 84vw);
  }

  .whatsapp-modal-header {
    padding: 10px 38px 10px 12px;
  }

  .whatsapp-modal-header p {
    font-size: 13px;
  }

  .whatsapp-modal-body {
    padding: 6px 12px 10px;
    gap: 6px;
  }

  .whatsapp-option-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .whatsapp-option-label {
    font-size: 11px;
  }

  .whatsapp-option-strong {
    font-size: 13px;
  }

  .whatsapp-close {
    top: 6px;
    right: 8px;
    left: auto;
    width: 28px;
    height: 28px;
    font-size: 18px;
    z-index: 2;
  }
}



/* Celulares pequenos (480px e abaixo) */
@media (max-width: 480px) {
  body {
    font-size: 14px;           /* reduz tamanho global do texto */
  }

  .menu {
    padding: 10px 8px;         /* reduz padding ainda mais */
    flex-wrap: wrap;           /* permite quebra de linha */
  }

  .menu > a img {
    width: 60px;               /* logo ainda menor */
    height: auto;
  }

  .selos {
    gap: 8px;
    order: 3;                  /* posiciona selos em terceira ordem */
  }

  .selos .selo img {
    width: 50px;               /* selos menores */
    height: auto;
  }



  .topbar {
    padding: 6px 8px;          /* reduz padding ainda mais */
    font-size: 11px;           /* texto bem pequeno */
  }

  .topbar-left,
  .topbar-center,
  .topbar-right {
    gap: 6px;                  /* espaço mínimo */
  }


  .dropdown-content a {
    padding: 0.4rem 0.8rem;    /* reduz padding dos dropdowns desktop */
    font-size: 13px;           /* texto menor */
  }

}

/* Celulares muito pequenos (320px) */
@media (max-width: 320px) {
  .menu {
    padding: 8px 4px;          /* padding mínimo */
  }

  .menu > a img {
    width: 50px;               /* logo bem pequena */
  }

  .selos .selo img {
    width: 40px;               /* selos bem pequenos */
  }

  .topbar {
    padding: 4px 6px;          /* padding mínimo */
    font-size: 10px;           /* texto mínimo */
  }



  
  }


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

/* Ajustes gerais do carrossel em telas menores que 1080px */
@media (max-width: 1080px) {
  .hero-figure img {
    max-height: 460px;                 /* reduz altura máxima da imagem */
  }
}

/* Tablets / telas médias */
@media (max-width: 960px) {
  .hero-carousel {
    min-height: 540px;
  }

  .hero-content {
    grid-template-columns: 1fr;        /* texto e imagem empilhados */
    text-align: center;
    padding: 24px 24px 40px;
    margin-top: 40px;                  /* diminui o deslocamento para baixo no mobile */
    gap: 16px;
  }

  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-figure {
    justify-content: center;
  }

  .hero-figure .hero-img-1,
  .hero-figure .hero-img-2,
  .hero-figure .hero-img-3,
  .hero-figure .hero-img-4 {
    max-height: 320px;
    width: auto;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  /* Sobre nós */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-media img {
    max-height: 360px;
  }

  .approved-info-inner {
    grid-template-columns: 1fr;
  }

  .approved-docs-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-carousel {
    min-height: 680px;
    max-height: 760px;
    background: #f7fbff;
  }

  .hero-content {
    padding: 0;
    margin-top: 0;
    gap: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    flex: 1;
  }

  .hero-slide {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    background: #f7fbff;
    height: 100%;
  }

  .hero-slide::after {
    content: none;
  }

  .hero-slide .hero-bg {
    display: none;
  }

  .hero-figure {
    order: 1;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 32px 10px 8px;
    position: relative;
    min-height: 260px;
    margin-top: 24px;
  }

  .hero-figure::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 132px, #f3d147 132px, #f3d147 146px, transparent 146px),
                radial-gradient(circle, transparent 112px, #005fa9 112px, #005fa9 118px, transparent 118px),
                radial-gradient(circle at 78% 20%, #f3d147 0 6px, transparent 7px),
                radial-gradient(circle at 20% 78%, #005fa9 0 6px, transparent 7px),
                radial-gradient(circle at 20% 22%, #f3d147 0 4px, transparent 5px),
                radial-gradient(circle at 82% 78%, #005fa9 0 4px, transparent 5px);
    transform: translateX(-50%);
    z-index: 0;
  }

  .hero-figure::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 32%, #f3d147 33% 100%);
    transform: translateX(-50%);
    z-index: 0;
  }

  .hero-figure .hero-img-1,
  .hero-figure .hero-img-2,
  .hero-figure .hero-img-3,
  .hero-figure .hero-img-4 {
    max-height: 320px !important;
    width: 86% !important;
    height: auto;
    object-fit: contain;
    position: relative;
    transform: scale(1);
    z-index: 1;
  }

  .hero-figure .hero-img-1 {
    max-height: 320px !important;
    width: 86% !important;
  }

  .hero-text {
    order: 2;
    position: relative;
    background: #0b3d75;
    padding: 18px 16px 26px;
    margin-top: 0;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 -14px 28px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56px;
    min-height: 200px;
  }

  .hero-text h1,
  .hero-text .subcopy,
  .hero-cta {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1,
  .hero-text .subcopy,
  .hero-cta {
    transform: translateY(0);
  }

  .hero-text::after {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -10px;
    height: 80px;
    background: #f3d147;
    border-radius: 60% 60% 0 0;
    z-index: 0;
  }

  .hero-text h1 {
    font-size: clamp(24px, 6.6vw, 32px);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    line-height: 1.18;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text .subcopy {
    font-size: 17px;
    max-width: 88%;
    color: #ffffff;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
    margin-top: 28px;
    position: relative;
    z-index: 1;
  }

  .hero-cta .btn-primary {
    padding: 14px 26px;
    font-size: 18px;
    background: #f3d147;
    color: #0b3d75;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    font-weight: 700;
  }

  .hero-arrow {
    display: grid;                      /* mant‚m botäes de navega‡Æo no mobile */
    width: 38px;
    height: 38px;
    top: 40%;
  }

  .hero-arrow.prev {
    left: 10px;
  }

  .hero-arrow.next {
    right: 10px;
  }

  [vw-access-button] {
    bottom: 120px !important;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
  }

  [vw-access-button]:hover {
    opacity: 1;
    filter: none;
  }

  .hero-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 110px !important;
    transform: translateX(-50%) !important;
    z-index: 30 !important;
    display: flex !important;
    justify-content: center;
  }

  .hero-dots button {
    background: #f7e59b;
  }

  .hero-dots button.active {
    background: #f3d147;
  }

  .programs-detail-text,
  .programs-detail {
    text-align: left;
  }

  .programs-detail-kicker {
    justify-content: flex-start;
  }

  .programs-detail-subtitle,
  .programs-detail-heading,
  .programs-detail-description {
    margin-left: 0;
    margin-right: 0;
  }

  .programs-steps-card {
    text-align: left;
  }

  .programs-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .programs-step-icon {
    margin: 0;
  }

  .programs-cta {
    margin-left: 0;
    margin-right: 0;
  }

  .programs-media-frame img {
    object-fit: contain;
    max-height: 60vh;
    width: 100%;
    height: auto;
  }

  .programs-media-frame {
    padding: 0;
    border-width: 0;
    background: transparent;
    box-shadow: none;
  }

  .internship-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .internship-step {
    gap: 10px;
  }

  .internship-step-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .internship-step h4 {
    font-size: 18px;
  }

  .internship-step p {
    font-size: 12px;
  }

  .internship-section-title {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }

  .internship-section-title h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .internship-section-mark {
    width: 6px;
    height: 48px;
  }

  .internship-requirements ul {
    gap: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .internship-requirements li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
  }

  .internship-requirements li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #0b4c9a;
    font-size: 20px;
    margin: 2px 0 0;
  }

  /* Sobre nos */
  .about-section {
    padding: 36px 14px 42px;
    text-align: center;
  }

  .about-grid {
    gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .about-text {
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .about-kicker {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .about-title {
    font-size: clamp(20px, 6.2vw, 25px);
    line-height: 1.15;
  }

  .about-lead,
  .about-highlight {
    font-size: 14px;
    line-height: 1.45;
  }

  .about-cta {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 15px;
    margin-top: 6px;
    align-self: center;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-media img {
    max-height: 240px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .apprentice-frame {
    width: 88%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    padding: 14px 22px 14px 20px;
    display: grid;
    place-items: center;
    margin-left: 0;
    margin-right: auto;
  }

  .apprentice-frame img {
    display: block;
    width: 92%;
    max-width: 320px;
    max-height: 320px;
    height: auto;
    border-radius: 22px;
    object-fit: contain;
    transform: none;
    margin: 0 auto;
  }

  .about-media.video-embed {
    padding-top: 0;
    aspect-ratio: 16 / 9;
    max-height: 220px;
    margin: 0 auto;
  }

  .team-card {
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .team-media {
    border-radius: 24px 24px 0 0;
    box-shadow: none;
  }

  .team-media img {
    min-height: 220px;
  }

  .team-content {
    padding: 22px 20px 28px;
  }

  .btn-partner {
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .seals-track {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .seals-track::before {
    content: "";
    flex-basis: 100%;
    height: 0;
    order: 3;
  }

  .seals-track::after {
    content: "";
    flex-basis: 100%;
    height: 0;
    order: 5;
  }

  .seals-track img {
    height: 56px;
  }

  .seal-rotary {
    height: 58px;
  }

  .seal-social {
    height: 54px;
  }

  .seal-transparencia,
  .seal-ong {
    height: 52px;
    padding: 8px;
    flex: 0 0 48%;
  }

  .seal-rotary {
    order: 1;
  }

  .seal-social {
    order: 2;
  }

  .seals-track a:nth-of-type(1) {
    order: 3;
  }

  .seals-track a:nth-of-type(2) {
    order: 4;
  }

  .seal-globalsign {
    order: 6;
  }
 
  #apprentice-title,
  #internship-title,
  #estrutura,
  #historia,
  #certifications-title,
  #documentos,
  #compliance,
  #compliance-highlight,
  #contratar,
  #empresas {
    scroll-margin-top: var(--anchor-offset);
  }

  #estrutura {
    scroll-margin-top: 10px;
  }

  #historia{
    scroll-margin-top: 80px;
  }
    #values-title{
      scroll-margin-top: 170px;
    }
      #presidents-title{
        scroll-margin-top: 150px;
      }
        #team{
          scroll-margin-top: 130px;
        }
  #pre-aprendizagem-title{
     scroll-margin-top: 110px;
  }

  .approved-hero {
    padding: 72px 16px 110px;
  }

  .approved-info {
    padding: 0 16px 72px;
    margin-top: 0;
  }

  .approved-search {
    margin-top: 0;
    padding: 16px 16px 24px;
  }

  .approved-search-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .approved-search-form {
    width: 100%;
  }

  .approved-search-inner {
    border-radius: 28px;
    padding: 28px 20px 32px;
  }

  .approved-main-closed .approved-search {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .approved-closed-card {
    padding: 32px 20px;
  }

  .approved-main-closed .approved-closed-card {
    text-align: center;
  }

  .approved-main-closed .approved-closed-text {
    text-align: center;
  }

  .approved-closed-title {
    font-size: 22px;
  }

  .approved-closed-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .approved-search-form {
    flex-direction: column;
    flex: 1 1 auto;
  }

  .approved-results-head,
  .approved-results-row {
    grid-template-columns: 1fr;
  }

  .approved-results-head span {
    display: none;
  }

  .approved-location-card-alt {
    padding: 22px;
  }

  .approved-location-cta {
    width: 100%;
  }

  .approved-panel {
    padding: 24px 20px;
  }

  .approved-help {
    padding: 20px;
  }

  .approved-help-item {
    border-radius: 18px;
  }

  .approved-download {
    width: 100%;
  }
}

/* Mobile pequeno */

@media (max-width: 400px) {
  .hero-carousel {
    min-height: 680px;
    max-height: 820px;
  }

  .hero-figure {
    min-height: 250px;
    padding: 22px 10px 6px;
  }

  .hero-figure::before {
    width: 230px;
    height: 230px;
    top: -8px;
  }

  .hero-figure::after {
    width: 200px;
    height: 200px;
  }

  .hero-figure .hero-img-1,
  .hero-figure .hero-img-2,
  .hero-figure .hero-img-3,
  .hero-figure .hero-img-4 {
    max-height: 200px;
    width: 72%;
  }

  .hero-text {
    padding: 18px 14px 48px;
    padding-bottom: 200px;
  }

  .hero-text::after {
    bottom: -36px;
    height: 120px;
  }

  .hero-text h1 {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .hero-text .subcopy {
    font-size: 16.5px;
    max-width: 88%;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    margin: 0 auto;
    text-align: center;
  }

  .hero-cta .btn-primary {
    padding: 13px 24px;
    font-size: 17px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 175px !important;
    transform: translateX(-50%) !important;
    z-index: 30 !important;
    display: flex !important;
    justify-content: center;
  }

  [vw-access-button] {
   bottom: 48px !important;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
  }

  [vw-access-button]:hover {
    opacity: 1;
    filter: none;
  }

  /* Sobre nós */
      .about-section {
    padding: 32px 12px 38px;
  }

  .about-grid {
    gap: 16px;
  }

  .about-title {
    font-size: clamp(18px, 6.5vw, 22px);
  }

  .about-lead,
  .about-highlight {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .about-cta {
    padding: 9px 14px;
    font-size: 14px;
  }

  .about-media img {
    max-height: 210px;
  }

  .about-media.video-embed {
    max-height: 210px;
  }
}

@media (max-width: 980px) {
  .projects-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .projects-hero-content {
    text-align: center;
    justify-items: center;
  }

  .projects-subtitle {
    max-width: 640px;
  }

  .projects-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .projects-hero-media {
    justify-items: center;
  }

  .projects-eixos-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .projects-impact-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .transport-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .transport-aux-page .transport-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .transport-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .transport-media {
    justify-items: center;
  }

  .transport-grid,
  .transport-media .transport-grid {
    grid-template-columns: 1fr;
  }

  .transport-media .transport-grid {
    width: min(620px, 100%);
  }

  .transport-media > .transport-card {
    width: min(620px, 100%);
  }
}

@media (max-width: 640px) {
  .projects-hero {
    padding: 70px 16px 60px;
  }

  .projects-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .projects-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .projects-cta,
  .projects-ghost {
    width: 100%;
    justify-content: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .projects-cta {
    padding: 10px 16px;
    font-size: 15px;
    min-height: 40px;
  }

  .projects-ghost {
    padding: 9px 14px;
    font-size: 14px;
    min-height: 40px;
    white-space: normal;
    text-align: center;
  }

  .projects-eixos {
    padding: 68px 16px 80px;
  }

  .projects-eixos-grid,
  .projects-impact-grid {
    grid-template-columns: 1fr;
  }

  .projects-eixo-card {
    padding: 30px 20px;
  }

  .projects-eixo-card p {
    font-size: 16px;
  }

  .transport-hero {
    padding: 70px 16px 60px;
  }

  .transport-hero-inner {
    text-align: left;
    gap: 20px;
  }

  .transport-aux-page .transport-hero-inner {
    gap: 18px;
  }

  .transport-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .transport-back {
    font-size: 13px;
  }

  .transport-pill {
    font-size: 13px;
  }

  .transport-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.15;
  }

  .transport-subtitle {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .transport-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .transport-benefit {
    font-size: 12px;
    line-height: 1.35;
    justify-content: flex-start;
  }

  .transport-card {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .transport-card-head {
    gap: 12px;
  }

  .transport-card h3 {
    font-size: 22px;
  }

  .transport-card.pix-aux {
    min-height: auto;
  }

  .transport-pix-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }

  .transport-qr {
    width: 100%;
    max-width: 280px;
  }

  .transport-pix-box {
    width: 100%;
    padding: 16px;
    text-align: left;
  }

  .transport-pix-box > div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .transport-pix-value {
    font-size: 16px;
  }

  .transport-cta {
    width: 100%;
    margin-right: 0;
    font-size: 12px;
  }

  .transport-card.dark .transport-cta {
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.15;
  }

  .transport-card.dark .transport-cta i {
    font-size: 16px;
    flex-shrink: 0;
  }

  .transport-card.dark .transport-cta + .transport-cta {
    margin-top: 8px;
  }

  .transport-media > .transport-card {
    width: 100%;
    min-width: 0;
  }

  .transport-hours {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }
}

@media (max-width: 900px) {
  .career-card {
    padding: 36px 32px;
  }

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

@media (max-width: 600px) {
  .career-hero {
    padding: 52px 0 32px;
  }

  .career-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .career-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .career-upload {
    padding: 20px;
  }

  .career-submit {
    font-size: 12px;
  }
}

