:root {

  --blue: #005EFF;
  --cyan: #00AFFF;
  --navy: #00183C;
  --lime: #B4E717;

  --offwhite: #F2F2F2;
  --white: #FFFFFF;

  --bg: #F2F2F2;

  --text: #00183C;
  --muted: #64748b;

  --radius: 22px;

  --shadow: 0 14px 35px rgba(0, 24, 60, 0.08);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* HEADER */

.header {
  width: calc(100% - 40px);
  max-width: 1380px;

  margin: 10px auto;

  background: rgba(0, 24, 60, 0.96);

  backdrop-filter: blur(10px);

  border-radius: 22px;

  padding: 2px 20px;

  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 10px;

  z-index: 999;

  box-shadow: 0 8px 24px rgba(0, 24, 60, 0.10);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 120px;

  width: auto;

  object-fit: contain;

  display: block;

  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: rgba(255,255,255,0.86);

  text-decoration: none;

  font-size: 15px;
  font-weight: 800;

  transition: 0.3s;
}

.nav a:hover {
  color: var(--lime);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn-primary,
.btn-outline,
.btn-admin {
  padding: 13px 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  transition: 0.3s;
}

.btn-primary {
  background: var(--lime);
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.18);
  color: white;
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-admin {
  background: var(--cyan);
  color: white;
}

.btn-admin:hover {
  transform: translateY(-3px);
}

/* HERO */

.hero {
  max-width: 1380px;

  margin: 22px auto;

  display: grid;

  grid-template-columns: 1fr 370px;

  gap: 24px;

  align-items: stretch;

  padding: 0 20px;
}

.hero-main {
  position: relative;

  border-radius: 34px;

  overflow: hidden;

  height: 480px;

  background: #d9f1ff;
}

.hero-main img,
.hero-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 24, 60, 0.92),
    rgba(0, 24, 60, 0.22)
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 60px;
}

.category {
  display: inline-flex;

  width: fit-content;

  background: rgba(180, 231, 23, 0.18);

  color: var(--lime);

  padding: 10px 18px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;

  margin-bottom: 20px;
}

.hero-overlay h1 {
  font-size: 42px;

  line-height: 1.08;

  color: white;

  max-width: 700px;

  margin-bottom: 18px;
}

.hero-overlay p {
  max-width: 620px;

  font-size: 16px;
  line-height: 1.7;

  color: rgba(255,255,255,0.88);

  margin-bottom: 24px;
}

/* PATROCINADORES */

.sponsors-panel {
  background: var(--navy);

  border-radius: 28px;

  padding: 24px;

  box-shadow: var(--shadow);

  overflow: hidden;

  color: white;

  height: 480px;

  display: flex;
  flex-direction: column;
}

.sponsors-panel h3 {
  font-size: 26px;

  margin-bottom: 24px;

  color: white;
}

.sponsors-slider {
  flex: 1;

  overflow: hidden;

  position: relative;
}

.sponsors-track {
  display: flex;
  flex-direction: column;

  gap: 18px;

  animation: sponsorsScroll 20s linear infinite;
}

.sponsors-slider:hover .sponsors-track {
  animation-play-state: paused;
}

.sponsor-card {
  position: relative;

  width: 100%;
  height: 140px;

  border-radius: 22px;

  overflow: hidden;

  flex-shrink: 0;

  text-decoration: none;

  background: #ffffff;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  transition: 0.3s;
}

.sponsor-card:hover {
  transform: scale(1.02);
}

.sponsor-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 18px;

  background: white;

  z-index: 1;
}

.sponsor-card::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 65%;

  background: linear-gradient(
    to top,
    rgba(0, 24, 60, 0.95),
    rgba(0, 24, 60, 0.45),
    transparent
  );

  z-index: 2;
}

.sponsor-card span {
  position: relative;

  z-index: 3;

  width: 100%;

  text-align: center;

  padding: 18px 12px;

  color: white;

  font-size: 15px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1px;

  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

@keyframes sponsorsScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-158px * 3));
  }
}

/* MAIN */

.main-layout {
  max-width: 1380px;

  margin: 60px auto;

  padding: 0 20px;
}

.section-title span {
  color: var(--cyan);

  font-weight: 800;

  font-size: 14px;
}

.section-title h2 {
  font-size: 42px;

  color: var(--navy);

  margin-top: 10px;
  margin-bottom: 32px;
}

/* POSTS */

.posts-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 26px;
}

.post-card {
  background: rgba(255,255,255,0.82);

  border-radius: 28px;

  overflow: hidden;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.post-card:hover {
  transform: translateY(-8px);
}

.post-card img,
.post-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post-info {
  padding: 26px;
}

.post-info h3 {
  font-size: 26px;

  line-height: 1.3;

  margin: 16px 0;

  color: var(--navy);
}

.post-info p {
  color: #475569;

  line-height: 1.8;

  margin-bottom: 24px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-footer span {
  font-size: 14px;
  color: var(--muted);
}

.post-footer a {
  color: var(--blue);

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;
}

/* SOBRE */

.about-preview {
  max-width: 1380px;

  margin: 48px auto 0;

  background: var(--navy);

  border-radius: 34px;

  padding: 32px;

  display: grid;
  grid-template-columns: 320px 1fr;

  gap: 34px;
  align-items: center;

  box-shadow: var(--shadow);

  overflow: hidden;
  position: relative;
}

.about-preview::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(180, 231, 23, 0.08);

  left: -80px;
  bottom: -80px;
}

.about-image {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: visible;
  height: 390px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 10px;
}

.about-image img {
  position: absolute;
  bottom: 0;
  width: 112%;
  max-height: 430px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
  transition: 0.4s;
  left: 52%;
  transform: translateX(-50%);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content span {
  color: var(--lime);

  font-size: 13px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  color: white;

  font-size: 32px;
  line-height: 1.15;

  margin: 14px 0 18px;

  max-width: 780px;
}

.about-content p {
  color: rgba(255,255,255,0.82);

  font-size: 16px;
  line-height: 1.7;

  margin-bottom: 14px;

  max-width: 850px;
}

/* FOOTER */

.footer {
  margin-top: 70px;

  padding: 34px;

  text-align: center;

  color: var(--muted);
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .hero,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

}

@media (max-width: 900px) {

  .about-preview {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .about-image {
    height: 340px;
  }

  .about-content h2 {
    font-size: 28px;
  }

}

@media (max-width: 700px) {

  .hero-overlay {
    padding: 30px;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }

}

/* PÁGINA DO POST COMPLETO */

.post-page {
  max-width: 1180px;
  margin: 50px auto;
  padding: 0 24px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: var(--lime);
}

.post-full {
  background: rgba(255,255,255,0.88);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.post-full-header {
  padding: 46px 52px 28px;
}

.post-full-header h1 {
  font-size: 48px;
  line-height: 1.1;
  color: var(--navy);
  margin: 18px 0 10px;
  max-width: 950px;
}

.post-date {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.post-full-media {
  width: calc(100% - 104px);
  max-height: 560px;
  object-fit: cover;
  border-radius: 26px;
  margin: 0 52px 36px;
  display: block;
}

.post-text {
  padding: 0 52px 52px;
  max-width: 900px;
  font-size: 19px;
  line-height: 1.9;
  color: #253044;
}

.post-text p {
  margin-bottom: 22px;
}

@media (max-width: 700px) {
  .post-page {
    margin: 28px auto;
    padding: 0 18px;
  }

  .post-full-header {
    padding: 28px 24px 20px;
  }

  .post-full-header h1 {
    font-size: 32px;
  }

  .post-full-media {
    width: calc(100% - 48px);
    margin: 0 24px 28px;
  }

  .post-text {
    padding: 0 24px 34px;
    font-size: 17px;
  }
}

/* PÁGINAS APOIE / PARCEIRO */

.support-page,
.partner-page {
  max-width: 1380px;
  margin: 50px auto;
  padding: 0 20px;
}

.support-hero,
.partner-hero {
  background: var(--navy);
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: center;
  box-shadow: var(--shadow);
}

.support-content span,
.partner-content span {
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-content h1,
.partner-content h1 {
  color: white;
  font-size: 46px;
  line-height: 1.1;
  margin: 18px 0 22px;
}

.support-content p,
.partner-content p {
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.support-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-outline-dark {
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.support-card,
.partner-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 30px;
  color: white;
}

.support-card h2,
.partner-box h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.support-card p,
.partner-box p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.donation-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.donation-values button {
  border: none;
  background: var(--lime);
  color: var(--navy);
  padding: 14px;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
}

.payment-box {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
}

.payment-box h3 {
  margin-bottom: 8px;
}

.payment-box strong {
  display: block;
  color: var(--lime);
  font-size: 20px;
  margin: 8px 0;
}

.payment-box small {
  display: block;
  color: rgba(255,255,255,0.6);
}

.partner-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-box li {
  background: rgba(255,255,255,0.08);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.impact-section,
.benefits-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.impact-section div,
.benefits-section div {
  background: rgba(255,255,255,0.88);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.impact-section strong {
  display: block;
  color: var(--blue);
  font-size: 40px;
  margin-bottom: 8px;
}

.impact-section span,
.benefits-section p {
  color: var(--muted);
}

.benefits-section h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .support-hero,
  .partner-hero,
  .impact-section,
  .benefits-section {
    grid-template-columns: 1fr;
  }

  .support-hero,
  .partner-hero {
    padding: 32px;
  }

  .support-content h1,
  .partner-content h1 {
    font-size: 34px;
  }
}

/* SOBRE */

.about-page {
  max-width: 1380px;
  margin: 50px auto;
  padding: 0 20px;
}

.about-hero-page {
  background: var(--navy);

  border-radius: 38px;

  padding: 60px;

  display: grid;
  grid-template-columns: 1.2fr 420px;

  gap: 40px;
  align-items: center;

  overflow: hidden;

  box-shadow: var(--shadow);

  position: relative;
}

.about-hero-page::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(180,231,23,0.08);

  left: -120px;
  bottom: -120px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-content span {
  color: var(--lime);

  font-size: 14px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-content h1 {
  color: white;

  font-size: 54px;
  line-height: 1.08;

  margin: 18px 0 26px;
}

.about-hero-content p {
  color: rgba(255,255,255,0.82);

  font-size: 18px;
  line-height: 1.9;
}

.about-hero-image {
  position: relative;

  height: 520px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-hero-image img {
  position: absolute;

  bottom: -40px;

  width: 120%;
  max-height: 620px;

  object-fit: contain;

  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
}

.history-section {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;

  margin-top: 40px;
}

.history-card {
  background: rgba(255,255,255,0.9);

  border-radius: 30px;

  padding: 34px;

  box-shadow: var(--shadow);
}

.history-card h2 {
  color: var(--navy);

  font-size: 28px;

  margin-bottom: 18px;
}

.history-card p {
  color: #334155;

  line-height: 1.9;

  margin-bottom: 18px;
}

.mission-section {
  margin-top: 42px;

  background: linear-gradient(
    135deg,
    var(--navy),
    #002b6d
  );

  border-radius: 36px;

  padding: 60px;

  box-shadow: var(--shadow);
}

.mission-content span {
  color: var(--lime);

  font-size: 14px;
  font-weight: 900;

  text-transform: uppercase;
}

.mission-content h2 {
  color: white;

  font-size: 46px;

  margin: 18px 0 24px;
}

.mission-content p {
  color: rgba(255,255,255,0.84);

  font-size: 18px;
  line-height: 1.9;

  max-width: 920px;

  margin-bottom: 18px;
}

.mission-content .btn-primary {
  display: inline-flex;
  margin-top: 12px;
}

@media (max-width: 950px) {

  .about-hero-page,
  .history-section {
    grid-template-columns: 1fr;
  }

  .about-hero-page {
    padding: 34px;
  }

  .about-hero-content h1 {
    font-size: 38px;
  }

  .mission-section {
    padding: 34px;
  }

  .mission-content h2 {
    font-size: 34px;
  }

}

/* =========================
   MOBILE GERAL
========================= */

@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  .header {
    width: calc(100% - 24px);
    height: auto;
    min-height: 72px;
    padding: 10px 16px;
    border-radius: 20px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 82px;
    margin-top: 0;
  }

  .nav {
    width: 100%;
    display: flex;
    order: 3;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 4px;
  }

  .nav a {
    white-space: nowrap;
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-primary,
  .btn-outline,
  .btn-admin {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 14px;
    margin: 18px auto;
  }

  .hero-main {
    height: 420px;
    border-radius: 26px;
  }

  .hero-overlay {
    padding: 28px;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 15px;
  }

  .sponsors-panel {
    height: 420px;
    border-radius: 26px;
  }

  .sponsor-card {
    height: 120px;
  }

  .main-layout {
    margin: 40px auto;
    padding: 0 14px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-info h3 {
    font-size: 22px;
  }

  .about-preview {
    margin: 36px 14px 0;
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 28px;
  }

  .about-image {
    height: 360px;
    margin-top: 0;
  }

  .about-image img {
    width: 105%;
    max-height: 410px;
    bottom: 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .post-page,
  .about-page,
  .support-page,
  .partner-page {
    margin: 32px auto;
    padding: 0 14px;
  }

  .post-full {
    border-radius: 26px;
  }

  .post-full-header {
    padding: 28px 24px 20px;
  }

  .post-full-header h1 {
    font-size: 32px;
  }

  .post-full-media {
    width: calc(100% - 40px);
    margin: 0 20px 26px;
    border-radius: 20px;
  }

  .post-text {
    padding: 0 24px 34px;
    font-size: 17px;
  }

  .about-hero-page,
  .support-hero,
  .partner-hero,
  .history-section,
  .impact-section,
  .benefits-section {
    grid-template-columns: 1fr;
  }

  .about-hero-page,
  .support-hero,
  .partner-hero,
  .mission-section {
    padding: 30px;
    border-radius: 28px;
  }

  .about-hero-content h1,
  .support-content h1,
  .partner-content h1 {
    font-size: 34px;
  }

  .about-hero-image {
    height: 380px;
  }

  .about-hero-image img {
    width: 105%;
    bottom: -20px;
  }
}

@media (max-width: 480px) {

  .header {
    align-items: center;
  }

  .logo img {
    height: 72px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-main {
    height: 380px;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .category {
    font-size: 12px;
    padding: 8px 14px;
  }

  .sponsors-panel {
    height: 390px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .post-card img,
  .post-card video {
    height: 210px;
  }

  .about-image {
    height: 320px;
  }

  .about-content h2 {
    font-size: 25px;
  }

  .footer {
    padding: 24px 14px;
    font-size: 14px;
  }
}

.menu-toggle {
  display: none;
}

/* MOBILE HEADER */

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {

  .header {
    width: calc(100% - 20px);

    margin: 10px auto;

    padding: 12px 16px;

    min-height: 84px;

    border-radius: 24px;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 12px;

    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 64px;
    width: auto;
    margin: 0;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary,
  .btn-outline {
    padding: 8px 12px;

    font-size: 11px;

    white-space: nowrap;
  }

  .btn-admin {
    display: none;
  }

  .menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 14px;

    background: rgba(255,255,255,0.10);

    color: white;

    font-size: 24px;
    font-weight: 900;

    cursor: pointer;
  }

  .nav {
    display: none;

    position: absolute;

    top: 92px;
    left: 0;

    width: 100%;

    background: var(--navy);

    border-radius: 22px;

    padding: 18px;

    flex-direction: column;

    gap: 10px;

    box-shadow: var(--shadow);

    z-index: 9999;
  }

  .nav.active {
    display: flex !important;
  }

  .nav a {
    color: white;

    padding: 12px 14px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;
  }

  .nav a:hover {
    background: rgba(255,255,255,0.08);
  }

}

/* ADMIN */

.admin-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.admin-box {
  width: 100%;
  max-width: 980px;
  background: var(--navy);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
  color: white;
}

.admin-box h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.admin-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 34px;
}

.admin-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.admin-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 26px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.admin-card:hover {
  transform: translateY(-5px);
  background: rgba(180,231,23,0.14);
}

.admin-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.admin-card span {
  color: rgba(255,255,255,0.7);
}

.admin-card.logout {
  background: rgba(255,70,70,0.14);
}

@media (max-width: 700px) {
  .admin-actions {
    grid-template-columns: 1fr;
  }

  .admin-box {
    padding: 30px;
  }
}

.back-admin {
  display: inline-flex;

  margin-bottom: 22px;

  color: var(--navy);

  font-weight: 800;

  text-decoration: none;

  background: rgba(255,255,255,0.92);

  padding: 12px 18px;

  border-radius: 14px;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.back-admin:hover {
  transform: translateY(-3px);

  color: var(--blue);
}

/* FORMULÁRIOS DO ADMIN */

.admin-form-page {
  min-height: 100vh;
  background: var(--bg);
  padding: 40px 20px;
}

.admin-form-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  color: white;
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.admin-form-box h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.admin-form-box p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 30px;
}

.admin-form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--lime);
}

.admin-form-box input,
.admin-form-box textarea,
.admin-form-box select {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 15px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  margin-bottom: 18px;
}

.admin-form-box textarea {
  min-height: 160px;
  resize: vertical;
}

.admin-form-box input[type="file"] {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
}

.admin-form-box button {
  border: none;
  background: var(--lime);
  color: var(--navy);
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.admin-form-box button:hover {
  transform: translateY(-3px);
}

.back-admin {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  background: white;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (max-width: 700px) {
  .admin-form-box {
    padding: 28px;
    border-radius: 26px;
  }

  .admin-form-box h1 {
    font-size: 30px;
  }
}

/* LOGIN ADMIN */

.admin-login-page {
  min-height: 100vh;

  background: #f4f6fb;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;
}

.admin-login-box {
  width: 100%;
  max-width: 460px;

  background: var(--navy);

  border-radius: 34px;

  padding: 42px;

  box-shadow: 0 24px 60px rgba(0,0,0,0.12);

  text-align: center;

  color: white;
}

.admin-login-logo {
  display: flex;
  justify-content: center;

  margin-bottom: 10px;
}

.admin-login-logo img {
  height: 110px;
  object-fit: contain;
}

.admin-login-box h1 {
  color: white;

  font-size: 34px;

  margin-bottom: 10px;
}

.admin-login-box p {
  color: rgba(255,255,255,0.72);

  line-height: 1.7;

  margin-bottom: 26px;
}

.admin-login-box form {
  text-align: left;
}

.admin-login-box label {
  display: block;

  color: var(--lime);

  font-weight: 900;

  margin-bottom: 8px;
}

.admin-login-box input {
  width: 100%;

  border: none;
  outline: none;

  background: rgba(255,255,255,0.94);

  padding: 15px 16px;

  border-radius: 16px;

  font-size: 15px;

  color: var(--navy);

  margin-bottom: 18px;
}

.admin-login-box input::placeholder {
  color: #64748b;
}

.admin-login-box button {
  width: 100%;

  border: none;

  background: var(--lime);

  color: var(--navy);

  padding: 15px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 900;

  cursor: pointer;

  transition: 0.3s;
}

.admin-login-box button:hover {
  transform: translateY(-3px);

  filter: brightness(1.03);
}

.login-error {
  background: rgba(255, 70, 70, 0.14);

  color: #ffd7d7;

  padding: 12px;

  border-radius: 14px;

  font-weight: 800;

  margin-bottom: 18px;
}

.back-site {
  display: inline-flex;

  margin-top: 22px;

  color: var(--lime);

  font-weight: 900;

  text-decoration: none;
}

.back-site:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {

  .admin-login-box {
    padding: 30px;
    border-radius: 28px;
  }

  .admin-login-logo img {
    height: 90px;
  }

  .admin-login-box h1 {
    font-size: 28px;
  }

}
