/* =====================================================
   AAES / SEPM - CSS GERAL UNIFICADO
   Páginas:
   - Index
   - Institucional
   - Biblioteca Virtual
   - Planejamento Estratégico
   - Contato
   - Meus Arquivos / Google Drive
===================================================== */


/* =====================================================
   RESET GERAL
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #071a3a;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}


/* =====================================================
   VARIÁVEIS VISUAIS
===================================================== */

:root {
  --navy-950: #020b1c;
  --navy-900: #04142f;
  --navy-800: #061a39;
  --navy-700: #071f45;
  --navy-600: #092856;
  --purple-700: #321061;

  --cyan: #00d9ff;
  --cyan-dark: #00bfe8;
  --yellow: #f4cc22;
  --blue: #0050b5;
  --google-blue: #1a73e8;

  --green: #0f9d58;
  --red: #d71920;
  --orange: #fbbc04;

  --text-main: #071a3a;
  --text-muted: rgba(7, 26, 58, 0.68);

  --border-soft: rgba(7, 26, 58, 0.18);
  --border-medium: rgba(7, 26, 58, 0.28);

  --bg-soft: #f3f7ff;
  --bg-light: #f8fbff;
  --bg-purple: #ead7fb;

  --shadow-soft: 0 2px 8px rgba(7, 26, 58, 0.05);
  --shadow-hover: 0 10px 24px rgba(7, 26, 58, 0.12);

  --gradient-header: linear-gradient(
    115deg,
    #061a39 0%,
    #071f45 45%,
    #092856 70%,
    #341064 100%
  );

  --gradient-card: linear-gradient(
    135deg,
    #041b3e 0%,
    #071f45 48%,
    #321061 100%
  );

  --gradient-button: linear-gradient(90deg, #0797ed 0%, #004bd6 100%);
}


/* =====================================================
   HEADER / MENU PRINCIPAL
===================================================== */

.site-header {
  width: 100%;
  background: var(--gradient-header);
  color: #ffffff;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.header-container {
  width: 100%;
  max-width: 1440px;
  min-height: 160px;
  margin: 0 auto;
  padding: 18px clamp(18px, 3vw, 54px);

  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr) auto;
  grid-template-rows: 56px 64px;
  column-gap: clamp(14px, 2vw, 34px);
  align-items: center;
}


/* =====================================================
   LOGO / IDENTIDADE
===================================================== */

.brand-area {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  align-self: start;
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
}

.brand-logo {
  width: 84px;
  min-width: 84px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  padding-top: 8px;
  min-width: 0;
}

.brand-text h1 {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #ffffff;
}

.brand-text p {
  margin-top: 9px;
  font-size: clamp(10px, 0.92vw, 13px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: #ffffff;
}

.brand-text p span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.75);
}


/* =====================================================
   LINKS SUPERIORES
===================================================== */

.top-links-area {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  justify-self: end;
  align-self: start;
  padding-top: 16px;
  max-width: 100%;
  overflow: hidden;
}

.top-links-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.top-links-nav a,
.top-links-nav span {
  font-size: clamp(8px, 0.63vw, 10px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15px;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.top-links-nav a:hover {
  color: var(--cyan);
}


/* =====================================================
   MENU PRINCIPAL
===================================================== */

.main-nav {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: start;
  align-self: end;
  padding-bottom: 5px;
  max-width: 100%;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 34px);
  flex-wrap: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: clamp(10.5px, 0.9vw, 13.5px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  white-space: nowrap;
  color: #ffffff;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--cyan);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: var(--yellow);
  border-radius: 4px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}


/* =====================================================
   AÇÕES DO HEADER
===================================================== */

.header-actions {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  justify-self: end;
  align-self: end;

  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  white-space: nowrap;
}

.instagram-link {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #ffffff;
  transition: 0.25s ease;
}

.instagram-link:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}

.header-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.45);
  display: inline-block;
}

.internal-area-btn {
  height: 36px;
  min-width: 128px;
  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.96);
  color: #16264b;

  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2px;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: 0.25s ease;
}

.internal-area-btn i {
  font-size: 12px;
  color: #16264b;
}

.internal-area-btn:hover {
  background-color: #ffffff;
  color: var(--purple-700);
  transform: translateY(-2px);
}


/* =====================================================
   BOTÃO MOBILE
===================================================== */

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  background: none;
}


/* =====================================================
   CONTEÚDO GERAL
===================================================== */

.main-content {
  width: 100%;
  background-color: #ffffff;
}

.content-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}


/* =====================================================
   TÍTULOS PADRÃO
===================================================== */

.section-title,
.timeline-title,
.library-acervo-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.title-marker {
  width: 4px;
  height: 34px;
  background-color: var(--cyan);
  border-radius: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.section-title h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

.timeline-title h2,
.library-acervo-title h2 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-main);
}


/* =====================================================
   INDEX - SERVIÇOS E ACESSOS RÁPIDOS
===================================================== */

.quick-services-section {
  width: 100%;
  padding: 34px 0 24px;
  background-color: #ffffff;
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 34px;
}

.service-card {
  min-height: 192px;
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card-active {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card-header {
  min-height: 64px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(115deg, #041b3e 0%, #062653 52%, #33105e 100%);
  color: #ffffff;
}

.service-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 30px;
}

.service-card-header h3 {
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
}

.service-card-body {
  padding: 18px 24px 22px;
}

.service-link {
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 26, 58, 0.25);

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;

  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-main);

  transition: color 0.25s ease, padding-left 0.25s ease;
}

.service-link:last-child {
  border-bottom: none;
}

.service-link i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.service-link:hover {
  color: #005cc8;
  padding-left: 4px;
}

.service-link:hover i {
  transform: translateX(4px);
}


/* =====================================================
   INSTITUCIONAL
===================================================== */

.institutional-section {
  width: 100%;
  padding: 34px 0 30px;
  background-color: #ffffff;
}

.institutional-container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.institutional-left,
.institutional-right {
  min-width: 0;
}

.institutional-intro {
  margin-top: 16px;
  max-width: 700px;
}

.institutional-intro p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-main);
  text-align: justify;
}

.institutional-cards {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.institutional-card {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;

  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.institutional-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.institutional-card-icon {
  min-height: 100%;
  background: var(--gradient-card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 44px;
}

.institutional-card-content {
  padding: 17px 22px;
}

.institutional-card-content h3 {
  margin-bottom: 8px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-main);
}

.institutional-card-content p,
.institutional-card-content li {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-main);
}

.institutional-card-content ul {
  padding-left: 18px;
  list-style: disc;
}

.institutional-card-content li {
  margin-bottom: 3px;
}

.institutional-right {
  padding-top: 55px;
}

.timeline-title {
  margin-bottom: 16px;
}

.timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 43px;
  top: -18px;
  bottom: -18px;
  width: 2px;
  background-color: rgba(7, 26, 58, 0.25);
  z-index: 0;
}

.timeline-item:first-child::before {
  top: 42px;
}

.timeline-item:last-child::before {
  bottom: 42px;
}

.timeline-icon {
  position: relative;
  z-index: 1;

  width: 76px;
  height: 76px;
  border-radius: 50%;

  background: var(--gradient-card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 34px;

  box-shadow: 0 8px 18px rgba(7, 26, 58, 0.18);
}

.timeline-card {
  position: relative;
  min-height: 96px;
  padding: 14px 18px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 43px;
  width: 15px;
  height: 1px;
  background-color: rgba(7, 26, 58, 0.25);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.timeline-card-header span {
  font-size: 13px;
  font-weight: 800;
  color: #7a26c9;
}

.timeline-card-header strong {
  padding: 5px 12px;
  border-radius: 7px;
  background-color: var(--bg-purple);

  font-size: 13px;
  font-weight: 800;
  color: #7a26c9;
  white-space: nowrap;
}

.timeline-card h3 {
  margin-bottom: 5px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-main);
}

.timeline-card p {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-main);
}


/* =====================================================
   BIBLIOTECA VIRTUAL
===================================================== */

.library-section {
  width: 100%;
  padding: 34px 0 30px;
  background-color: #ffffff;
}

.library-container {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.library-left,
.library-right {
  min-width: 0;
}

.library-intro {
  margin-top: 16px;
  max-width: 720px;
}

.library-intro p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-main);
  text-align: justify;
}

.library-cards {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.library-card {
  width: 100%;
  min-height: 100px;

  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;

  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.library-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.library-card-icon {
  min-height: 100%;
  background: var(--gradient-card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 48px;
}

.library-card-content {
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.library-card-content h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.16;
  font-weight: 800;
  color: var(--text-main);
}

.library-card-content p {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-main);
}

.library-card-content span {
  margin: 0 7px;
  color: var(--purple-700);
  font-weight: 800;
}

.library-right {
  padding-top: 12px;
}

.library-acervo-title {
  margin-bottom: 14px;
}

.library-acervo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.library-acervo-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.library-acervo-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: var(--gradient-card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 27px;

  box-shadow: 0 8px 18px rgba(7, 26, 58, 0.18);
}

.library-acervo-card {
  min-height: 58px;
  padding: 12px 16px 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.library-acervo-card:hover {
  transform: translateX(4px);
  border-color: rgba(0, 217, 255, 0.7);
  box-shadow: 0 9px 22px rgba(7, 26, 58, 0.13);
}

.library-acervo-card h3 {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-main);
}

.library-acervo-card p {
  margin-top: 2px;
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.25;
  font-weight: 500;
  color: var(--text-main);
}

.library-acervo-card span {
  padding: 6px 12px;
  border-radius: 7px;
  background-color: var(--bg-purple);

  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 800;
  color: #7a26c9;
  white-space: nowrap;
}

.library-purpose {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;

  box-shadow: var(--shadow-soft);
}

.library-purpose-icon {
  background: var(--gradient-card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 36px;
}

.library-purpose-icon i {
  width: 44px;
  height: 44px;
  border: 2px solid var(--cyan);
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.library-purpose-content {
  padding: 14px 18px;
}

.library-purpose-content h3 {
  margin-bottom: 5px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-main);
}

.library-purpose-content p {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.42;
  font-weight: 500;
  color: var(--text-main);
}


/* =====================================================
   PLANEJAMENTO ESTRATÉGICO
===================================================== */

.planning-section {
  width: 100%;
  padding: 34px 0 30px;
  background-color: #ffffff;
}

.planning-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}

.planning-left,
.planning-right {
  min-width: 0;
}

.planning-intro {
  margin-top: 14px;
  margin-bottom: 18px;
  max-width: 760px;
}

.planning-intro p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-main);
}

.planning-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
}

.planning-card {
  min-height: 180px;
  padding: 18px;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.planning-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.planning-card-icon,
.planning-side-icon,
.planning-download-icon,
.planning-summary-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-card);
  color: var(--cyan);
  font-size: 26px;
}

.planning-side-icon,
.planning-download-icon,
.planning-summary-icon {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.planning-card-content h3 {
  margin-bottom: 10px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-main);
}

.planning-card-content p,
.planning-card-content li {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-main);
}

.planning-card-content ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.planning-card-content li {
  position: relative;
  padding-left: 18px;
}

.planning-card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}

.planning-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.planning-info-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: flex-start;
}

.planning-info-item i {
  color: var(--blue);
  font-size: 17px;
  margin-top: 2px;
}

.planning-axis-list {
  counter-reset: axis;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.planning-axis-list li {
  counter-increment: axis;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  border-bottom: 1px solid rgba(7, 26, 58, 0.12);
  padding-bottom: 5px;
}

.planning-axis-list li::before {
  content: counter(axis);
  position: static;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background-color: var(--navy-800);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.planning-side-card {
  width: 100%;
  margin-bottom: 14px;
  padding: 16px 18px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
}

.planning-side-title,
.planning-download-title,
.planning-summary-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.planning-side-title h3,
.planning-download-title h3,
.planning-summary-title h3 {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-main);
}

.planning-links-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.planning-links-list a {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(7, 26, 58, 0.16);
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);

  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.planning-links-list a:hover {
  transform: translateX(4px);
  border-color: var(--cyan-dark);
  color: var(--blue);
}

.planning-download-box {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.pdf-illustration {
  width: 120px;
  height: 132px;
  border-radius: 10px;
  border: 1px solid rgba(7, 26, 58, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fbff;
  color: var(--red);
  font-size: 62px;
}

.planning-download-info h4 {
  margin-bottom: 12px;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-main);
}

.download-btn {
  height: 38px;
  padding: 0 22px;
  margin-bottom: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-radius: 7px;
  background: var(--gradient-button);
  color: #ffffff;

  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 76, 214, 0.24);
}

.planning-download-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.planning-download-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
}

.planning-download-meta i {
  color: var(--navy-800);
}

.planning-summary-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.planning-summary-card p {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-main);
}


/* =====================================================
   CONTATO
===================================================== */

.contact-section {
  width: 100%;
  padding: 34px 0 24px;
  background-color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.contact-left,
.contact-right {
  min-width: 0;
}

.contact-intro {
  margin-top: 14px;
  margin-bottom: 18px;
  max-width: 560px;
}

.contact-intro p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-main);
}

.contact-info-card {
  width: 100%;
  margin-top: 14px;
  padding: 16px 18px;

  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card-large {
  min-height: 210px;
}

.contact-info-icon,
.contact-form-icon,
.quick-channels-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;

  background: var(--gradient-card);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--cyan);
  font-size: 27px;
}

.contact-form-icon,
.quick-channels-icon {
  font-size: 25px;
}

.contact-info-content h3 {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
}

.contact-info-content p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-main);
}

.contact-info-content p strong {
  font-weight: 900;
  color: var(--blue);
}

.contact-note {
  margin-top: 6px;
  color: var(--text-main);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  min-height: 48px;
  padding: 9px 0;

  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;

  border-bottom: 1px solid rgba(7, 26, 58, 0.16);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item-icon {
  color: var(--navy-800);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item span {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-main);
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  color: #004fc4;
  word-break: break-word;
}

.contact-form-card {
  width: 100%;
  padding: 18px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
}

.contact-form-title,
.quick-channels-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-form-title h3,
.quick-channels-title h3 {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group-full {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid rgba(7, 26, 58, 0.22);
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);

  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input,
.form-group select {
  height: 38px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(7, 26, 58, 0.45);
}

.form-group select {
  appearance: none;
  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, #061a39 50%),
    linear-gradient(135deg, #061a39 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 16px,
    calc(100% - 13px) 16px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.14);
}

.contact-submit-btn {
  width: 100%;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 6px;
  background: var(--gradient-button);
  color: #ffffff;

  font-size: 16px;
  font-weight: 800;
  line-height: 1;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-submit-btn i {
  font-size: 18px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 76, 214, 0.24);
  filter: brightness(1.04);
}

.quick-channels-card {
  width: 100%;
  margin-top: 10px;
  padding: 14px 18px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: var(--shadow-soft);
}

.quick-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.quick-channel-link {
  height: 37px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);

  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.quick-channel-link:hover {
  transform: translateX(4px);
  border-color: var(--cyan-dark);
  color: var(--blue);
}

.quick-channel-link i {
  font-size: 12px;
}


/* =====================================================
   MEUS ARQUIVOS / GOOGLE DRIVE
===================================================== */

.drive-section {
  width: 100%;
  padding: 30px 0 30px;
  background-color: #ffffff;
}

.drive-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drive-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.drive-title-area {
  min-width: 0;
}

.drive-page-subtitle {
  margin-top: 10px;
  max-width: 720px;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-main);
}

.drive-breadcrumb {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background-color: var(--bg-soft);

  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text-main);
  font-size: 13px;
  white-space: nowrap;
}

.drive-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-main);
  font-weight: 700;
}

.drive-breadcrumb a:hover {
  color: var(--blue);
}

.drive-breadcrumb strong {
  font-weight: 900;
}

.drive-breadcrumb span {
  color: rgba(7, 26, 58, 0.45);
}

.drive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.drive-search-box {
  width: min(440px, 100%);
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  align-items: center;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.drive-search-box > i {
  color: var(--text-main);
  text-align: center;
  font-size: 15px;
}

.drive-search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-main);
}

.drive-search-box input::placeholder {
  color: rgba(7, 26, 58, 0.45);
}

.drive-search-box button {
  height: 100%;
  border-left: 1px solid rgba(7, 26, 58, 0.14);
  color: var(--text-main);
  transition: 0.25s ease;
}

.drive-search-box button:hover {
  background-color: var(--bg-soft);
  color: var(--blue);
}

.drive-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drive-action-btn {
  height: 42px;
  padding: 0 18px;

  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--text-main);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;

  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.drive-action-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-dark);
  color: var(--blue);
  box-shadow: var(--shadow-hover);
}

.drive-new-btn,
.drive-login-btn {
  background-color: var(--navy-800);
  color: #ffffff;
  border-color: var(--navy-800);
}

.drive-new-btn:hover,
.drive-login-btn:hover {
  background-color: var(--navy-600);
  color: #ffffff;
  border-color: var(--navy-600);
}

.drive-login-btn.connected {
  background-color: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

.drive-upload-btn {
  background-color: #f8fbff;
}

.drive-status {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: #eef4ff;
  border: 1px solid rgba(7, 26, 58, 0.12);

  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
}

.drive-status i {
  color: var(--blue);
}

.drive-status.success {
  background-color: #ecfff4;
  border-color: rgba(0, 150, 80, 0.2);
}

.drive-status.success i {
  color: var(--green);
}

.drive-status.warning {
  background-color: #fff9e8;
  border-color: rgba(230, 170, 0, 0.25);
}

.drive-status.warning i {
  color: #c98500;
}

.drive-status.error {
  background-color: #fff1f1;
  border-color: rgba(200, 0, 0, 0.22);
}

.drive-status.error i {
  color: var(--red);
}

.drive-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: start;
}

.drive-sidebar,
.drive-summary,
.drive-files-area {
  min-width: 0;
}

.drive-panel,
.drive-files-area {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.drive-panel {
  padding: 14px;
  margin-bottom: 14px;
}

.drive-panel:last-child {
  margin-bottom: 0;
}

.drive-panel h3,
.drive-files-header h3 {
  display: flex;
  align-items: center;
  gap: 9px;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-main);
}

.drive-panel h3 i,
.drive-files-header h3 i {
  color: var(--blue);
}

.drive-folder-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.drive-folder-list button {
  min-height: 36px;
  width: 100%;
  padding: 0 8px;

  border-radius: 6px;
  background-color: #ffffff;
  color: var(--text-main);

  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 7px;

  text-align: left;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.25s ease;
}

.drive-folder-list button i {
  color: var(--google-blue);
}

.drive-folder-list button span {
  display: inline-flex;
  justify-content: flex-end;
  color: rgba(7, 26, 58, 0.4);
}

.drive-folder-list button:hover,
.drive-folder-list button.active {
  background-color: var(--bg-soft);
  color: var(--blue);
}

.drive-storage-bar {
  width: 100%;
  height: 7px;
  margin: 14px 0 10px;
  border-radius: 20px;
  background-color: #e9eef8;
  overflow: hidden;
}

.drive-storage-bar span {
  display: block;
  height: 100%;
  border-radius: 20px;
  background: var(--gradient-button);
}

.drive-storage-panel p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-main);
}

.drive-storage-panel p strong {
  font-weight: 900;
  color: var(--navy-800);
}

.drive-storage-panel a {
  height: 36px;
  margin-top: 12px;
  border: 1px solid rgba(7, 26, 58, 0.16);
  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);

  transition: 0.25s ease;
}

.drive-storage-panel a:hover {
  border-color: var(--cyan-dark);
  color: var(--blue);
  background-color: var(--bg-soft);
}

.drive-files-area {
  padding: 14px;
}

.drive-files-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.drive-files-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drive-files-controls button {
  height: 34px;
  padding: 0 12px;

  border: 1px solid rgba(7, 26, 58, 0.15);
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--text-main);

  font-size: 13px;
  font-weight: 800;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  transition: 0.25s ease;
}

.drive-files-controls button:hover,
.drive-files-controls button.active {
  background-color: var(--bg-soft);
  color: var(--blue);
  border-color: rgba(0, 191, 232, 0.5);
}

.drive-folder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.drive-folder-grid.drive-folder-grid-list {
  grid-template-columns: 1fr;
}

.drive-folder-grid.drive-folder-grid-list .drive-folder-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.drive-folder-grid.drive-folder-grid-list .drive-folder-card i {
  grid-row: 1 / 3;
  margin-bottom: 0;
}

.drive-folder-card {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(7, 26, 58, 0.14);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;

  box-shadow: 0 1px 5px rgba(7, 26, 58, 0.03);
  transition: 0.25s ease;
}

.drive-folder-card i {
  margin-bottom: 12px;
  color: var(--google-blue);
  font-size: 29px;
}

.drive-folder-card h4 {
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--text-main);
}

.drive-folder-card p {
  margin-top: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.drive-folder-card:hover,
.drive-folder-card.active {
  transform: translateY(-2px);
  border-color: var(--cyan-dark);
  box-shadow: 0 8px 18px rgba(7, 26, 58, 0.1);
  background-color: #fbfdff;
}

.drive-table-wrapper {
  margin-top: 14px;
  overflow-x: auto;
  border-radius: 8px;
}

.drive-files-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.drive-files-table th,
.drive-files-table td {
  padding: 11px 12px;
  border-top: 1px solid rgba(7, 26, 58, 0.12);
  font-size: 13px;
  color: var(--text-main);
  text-align: left;
  vertical-align: middle;
}

.drive-files-table th {
  font-weight: 900;
  background-color: #fbfdff;
}

.drive-files-table tbody tr {
  transition: 0.25s ease;
}

.drive-files-table tbody tr:hover {
  background-color: var(--bg-soft);
}

.drive-file-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.drive-file-name i {
  font-size: 18px;
}

.drive-file-pdf {
  color: var(--red);
}

.drive-file-sheet {
  color: var(--green);
}

.drive-file-doc {
  color: var(--google-blue);
}

.drive-file-slide {
  color: var(--orange);
}

.drive-table-action {
  width: 30px;
  height: 30px;
  border-radius: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--text-main);
  transition: 0.25s ease;
}

.drive-table-action:hover {
  background-color: #ffffff;
  color: var(--blue);
}

.drive-empty-row {
  text-align: center !important;
  padding: 24px !important;
  color: rgba(7, 26, 58, 0.65) !important;
}

.drive-summary-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
}

.drive-summary-item {
  min-height: 70px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 26, 58, 0.12);

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.drive-summary-item:last-child {
  border-bottom: none;
}

.drive-summary-item > i {
  color: var(--google-blue);
  font-size: 28px;
}

.drive-summary-item span {
  display: block;
  font-size: 13px;
  color: var(--text-main);
}

.drive-summary-item strong {
  display: block;
  margin-top: 2px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-main);
}

.drive-summary-item small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(7, 26, 58, 0.72);
}

.drive-open-btn {
  min-height: 38px;
  margin-top: 12px;
  padding: 0 12px;

  border: 1px solid rgba(7, 26, 58, 0.16);
  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  font-size: 13px;
  font-weight: 900;
  color: var(--text-main);

  transition: 0.25s ease;
}

.drive-open-btn:hover {
  border-color: var(--cyan-dark);
  color: var(--blue);
  background-color: var(--bg-soft);
}


/* =====================================================
   RODAPÉ
===================================================== */

.site-footer {
  width: 100%;
  background: var(--gradient-header);
  color: #ffffff;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 72px) 24px;

  display: grid;
  grid-template-columns: 1.65fr repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}

.footer-brand,
.footer-column,
.footer-technology {
  min-width: 0;
}

.footer-column,
.footer-technology {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 86px;
  min-width: 86px;
  height: auto;
  object-fit: contain;
}

.footer-brand-text h2 {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #ffffff;
}

.footer-brand-text p {
  margin-top: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand-text p span {
  margin: 0 6px;
}

.footer-address {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-address i {
  color: var(--cyan);
  font-size: 23px;
  margin-top: 4px;
}

.footer-address p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column a {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-column a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-technology {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.technology-label {
  font-size: 17px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

.footer-technology h3 {
  margin-top: 4px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.developer-label {
  margin-top: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.developer-name {
  margin-top: 7px;
  font-size: 16px;
  color: #ffffff;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.footer-bottom span {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.65);
}


/* =====================================================
   EFEITOS DO JAVASCRIPT
===================================================== */

.keyboard-focus {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}


/* =====================================================
   RESPONSIVIDADE - TELAS GRANDES
===================================================== */

@media (min-width: 1600px) {
  .header-container,
  .footer-container {
    max-width: 1500px;
  }
}


/* =====================================================
   RESPONSIVIDADE - NOTEBOOKS
===================================================== */

@media (max-width: 1366px) {
  .header-container {
    max-width: 100%;
    min-height: 150px;
    padding: 16px 24px;
    grid-template-columns: 310px minmax(0, 1fr) auto;
    grid-template-rows: 52px 60px;
    column-gap: 18px;
  }

  .brand-logo {
    width: 76px;
    min-width: 76px;
  }

  .brand-text h1 {
    font-size: 20px;
    letter-spacing: 0.7px;
  }

  .brand-text p {
    font-size: 11.5px;
  }

  .top-links-nav a,
  .top-links-nav span {
    font-size: 8.5px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11.2px;
  }

  .instagram-link {
    font-size: 22px;
  }

  .internal-area-btn {
    min-width: 118px;
    height: 34px;
    font-size: 9.5px;
    padding: 0 10px;
  }

  .institutional-container,
  .library-container,
  .planning-container,
  .contact-container {
    gap: 44px;
  }

  .drive-layout {
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 14px;
  }

  .drive-folder-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .drive-action-btn {
    padding: 0 14px;
    font-size: 13px;
  }
}


/* =====================================================
   RESPONSIVIDADE - NOTEBOOK MENOR
===================================================== */

@media (max-width: 1220px) {
  .header-container {
    min-height: 135px;
    grid-template-columns: 300px minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .top-links-area {
    display: none;
  }

  .brand-area {
    grid-row: 1 / 2;
  }

  .main-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
    padding-bottom: 0;
  }

  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    font-size: 10.8px;
  }

  .header-actions {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    align-self: center;
    padding-bottom: 0;
    gap: 10px;
  }

  .header-divider {
    height: 32px;
  }

  .internal-area-btn {
    min-width: 112px;
    height: 32px;
    font-size: 9px;
  }

  .institutional-container,
  .library-container,
  .planning-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .institutional-right,
  .library-right {
    padding-top: 0;
  }

  .timeline-wrapper,
  .library-acervo-wrapper,
  .contact-left,
  .contact-right,
  .planning-left,
  .planning-right {
    max-width: 920px;
  }

  .drive-layout {
    grid-template-columns: 1fr;
  }

  .drive-sidebar,
  .drive-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .drive-panel {
    margin-bottom: 0;
  }

  .drive-folder-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-column,
  .footer-technology {
    border-left: none;
    padding-left: 0;
  }
}


/* =====================================================
   RESPONSIVIDADE - MENU MOBILE
===================================================== */

@media (max-width: 1080px) {
  .site-header {
    overflow: visible;
  }

  .header-container {
    min-height: auto;
    padding: 16px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }

  .brand-area {
    width: calc(100% - 58px);
  }

  .brand-link {
    align-items: center;
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
    min-width: 64px;
  }

  .brand-text {
    padding-top: 0;
  }

  .brand-text h1 {
    font-size: 17px;
    line-height: 1.15;
  }

  .brand-text p {
    font-size: 10.5px;
    margin-top: 6px;
  }

  .top-links-area,
  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.menu-open .top-links-area,
  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .site-header.menu-open .top-links-area {
    width: 100%;
    order: 3;
    padding-top: 18px;
  }

  .site-header.menu-open .top-links-nav,
  .site-header.menu-open .top-links-nav ul {
    width: 100%;
  }

  .site-header.menu-open .top-links-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-header.menu-open .top-links-nav span {
    display: none;
  }

  .site-header.menu-open .top-links-nav a {
    font-size: 12px;
  }

  .site-header.menu-open .main-nav {
    width: 100%;
    order: 4;
    padding-top: 18px;
  }

  .site-header.menu-open .main-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-header.menu-open .main-nav a {
    font-size: 13px;
  }

  .site-header.menu-open .header-actions {
    width: 100%;
    order: 5;
    justify-content: flex-start;
    padding-top: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   RESPONSIVIDADE - TABLETS
===================================================== */

@media (max-width: 900px) {
  .drive-page-header,
  .drive-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .drive-breadcrumb {
    width: fit-content;
  }

  .drive-actions {
    flex-wrap: wrap;
  }

  .drive-action-btn {
    flex: 1 1 150px;
  }

  .drive-folder-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drive-sidebar,
  .drive-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .content-container {
    padding: 0 22px;
  }

  .quick-services-section,
  .institutional-section,
  .library-section,
  .planning-section,
  .contact-section,
  .drive-section {
    padding: 28px 0 26px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .services-grid,
  .planning-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .institutional-intro p,
  .library-intro p {
    text-align: left;
  }

  .institutional-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .institutional-card-icon {
    font-size: 32px;
  }

  .library-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .library-card-icon {
    font-size: 34px;
  }

  .planning-download-box,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quick-channels-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}


/* =====================================================
   RESPONSIVIDADE - CELULARES
===================================================== */

@media (max-width: 600px) {
  .header-container {
    padding: 15px 16px;
  }

  .brand-area {
    width: calc(100% - 50px);
  }

  .brand-logo {
    width: 54px;
    min-width: 54px;
  }

  .brand-text h1 {
    font-size: 13.5px;
    letter-spacing: 0.35px;
  }

  .brand-text p {
    font-size: 8.8px;
    letter-spacing: 0.25px;
  }

  .brand-text p span {
    margin: 0 4px;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .content-container {
    padding: 0 16px;
  }

  .section-title,
  .timeline-title,
  .library-acervo-title {
    gap: 10px;
  }

  .title-marker {
    height: 28px;
  }

  .section-title h2 {
    font-size: 24px;
    letter-spacing: -0.4px;
  }

  .timeline-title h2,
  .library-acervo-title h2 {
    font-size: 18px;
  }

  .service-card-header {
    min-height: 58px;
    padding: 13px 16px;
    gap: 13px;
  }

  .service-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .service-card-header h3 {
    font-size: 17px;
  }

  .service-card-body {
    padding: 14px 18px 18px;
  }

  .service-link {
    font-size: 14px;
    min-height: 44px;
  }

  .institutional-card,
  .library-card,
  .contact-info-card,
  .planning-card {
    grid-template-columns: 1fr;
  }

  .institutional-card-icon,
  .library-card-icon {
    min-height: 72px;
    font-size: 34px;
  }

  .institutional-card-content,
  .library-card-content {
    padding: 16px;
  }

  .timeline-item,
  .library-acervo-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item::before,
  .timeline-card::before {
    display: none;
  }

  .timeline-icon,
  .library-acervo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 23px;
  }

  .library-acervo-card {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .library-purpose {
    grid-template-columns: 1fr;
  }

  .library-purpose-icon {
    min-height: 72px;
  }

  .contact-form-card,
  .quick-channels-card {
    padding: 15px;
  }

  .contact-form-title,
  .quick-channels-title {
    gap: 12px;
  }

  .contact-form-icon,
  .quick-channels-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .contact-submit-btn {
    height: 40px;
    font-size: 14px;
  }

  .drive-page-subtitle {
    font-size: 13.5px;
  }

  .drive-breadcrumb {
    flex-wrap: wrap;
    white-space: normal;
    width: 100%;
    padding: 10px 12px;
  }

  .drive-search-box {
    grid-template-columns: 40px minmax(0, 1fr) 44px;
  }

  .drive-folder-grid {
    grid-template-columns: 1fr;
  }

  .drive-files-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .drive-files-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  .drive-files-controls button {
    flex: 1;
  }

  .drive-panel h3,
  .drive-files-header h3 {
    font-size: 14px;
  }

  .drive-action-btn {
    height: 40px;
    font-size: 13px;
  }

  .drive-summary-item strong {
    font-size: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-logo {
    width: 68px;
    min-width: 68px;
  }

  .footer-brand-text h2 {
    font-size: 16px;
  }

  .footer-brand-text p {
    font-size: 10.5px;
  }

  .footer-column h3 {
    margin-bottom: 10px;
  }

  .footer-column ul {
    gap: 9px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 16px 18px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom span {
    display: none;
  }
}


/* =====================================================
   RESPONSIVIDADE - TELAS PEQUENAS
===================================================== */

@media (max-width: 420px) {
  .header-container {
    padding: 14px;
  }

  .brand-logo {
    width: 48px;
    min-width: 48px;
  }

  .brand-text h1 {
    font-size: 12px;
    line-height: 1.16;
  }

  .brand-text p {
    font-size: 8px;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .site-header.menu-open .top-links-nav a,
  .site-header.menu-open .main-nav a {
    font-size: 11.5px;
  }

  .section-title h2 {
    font-size: 21px;
  }

  .timeline-title h2,
  .library-acervo-title h2 {
    font-size: 16px;
  }

  .institutional-intro p,
  .library-intro p,
  .planning-intro p,
  .contact-intro p {
    font-size: 13.5px;
  }

  .service-card-header h3,
  .library-card-content h3,
  .institutional-card-content h3 {
    font-size: 16px;
  }

  .service-link,
  .library-card-content p,
  .institutional-card-content p,
  .institutional-card-content li {
    font-size: 13.5px;
  }

  .quick-channel-link {
    padding: 0 10px;
    font-size: 12px;
  }

  .drive-action-btn {
    flex-basis: 100%;
  }

  .drive-folder-card h4 {
    font-size: 13px;
  }

  .drive-folder-card p {
    font-size: 11.5px;
  }

  .drive-status {
    font-size: 12.5px;
  }
}

@media (max-width: 340px) {
  .brand-logo {
    width: 42px;
    min-width: 42px;
  }

  .brand-text h1 {
    font-size: 10.8px;
  }

  .brand-text p {
    font-size: 7.2px;
  }

  .mobile-menu-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 19px;
  }
}