:root {
  --blue-primary: #4a69ff;
  --blue-dark: #3554e0;
  --blue-footer: #4a69ff;
  --blue-footer-dark: #3a56d4;
  --green-primary: #18a058;
  --green-dark: #128647;
  --text-dark: #2d3748;
  --text-muted: #4a5568;
  --cyan-bg: #dff5f8;
  --lavender-bg: #f3e5f5;
  --lavender-strong: #c084b8;
  --lavender-strong-dark: #a86da0;
  --mint-bg: #e8f5e9;
  --mint-strong: #6fbf73;
  --mint-strong-dark: #57a85b;
  --pilar-blue: #dbeafe;
  --pilar-red: #fee2e2;
  --pilar-green: #dcfce7;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6,HHHHHHHHH
.section-title h2,
.projetos-title,
.bazar-title,
.footer-title {
  font-family: 'Lato', sans-serif;
}

/* Header */
.site-header {
  z-index: 1030;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--text-muted) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--blue-primary) !important;
}

.btn-header-apadrinhar {
  background-color: var(--blue-primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-header-apadrinhar:hover,
.btn-header-apadrinhar:focus {
  background-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-bazar {
  background-color: var(--lavender-strong);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-bazar:hover,
.btn-bazar:focus {
  background-color: var(--lavender-strong-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-apadrinhar {
  background-color: var(--mint-strong);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-apadrinhar:hover,
.btn-apadrinhar:focus {
  background-color: var(--mint-strong-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hero */
.hero-section {
  position: relative;
}

.hero-carousel {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
}

.hero-carousel .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-line-1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
}

.hero-line-2 {
  width: 100%;
  text-align: center;
}

.hero-line-2 span {
  display: inline-block;
  background-color: var(--green-primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  max-width: 700px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* Section shared */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  font-size: 1.75rem;
  color: #0891b2;
}

.section-title h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  color: #0e7490;
  margin: 0;
  letter-spacing: 0.02em;
}

.section-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
}

/* Quem Somos */
.section-quem-somos {
  background-color: var(--cyan-bg);
}

.pilar-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pilar-card h3 {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.pilar-card p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.pilar-blue {
  background-color: var(--pilar-blue);
}

.pilar-red {
  background-color: var(--pilar-red);
}

.pilar-green {
  background-color: var(--pilar-green);
}

.quem-somos-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 420px;
  margin-inline: auto;
}

.collage-item {
  aspect-ratio: 1;
  border-radius: 28%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-1 { transform: translateY(8px); }
.collage-2 { transform: translateY(-4px); }
.collage-3 { transform: translateY(4px); }
.collage-4 { transform: translateY(-8px); }

@media (min-width: 992px) {
  .quem-somos-collage {
    margin-inline: 0 0 0 auto;
  }
}

/* Projetos */
.section-projetos {
  background-color: #f5f5f5;
  background-image: url('../assets/images/background_projetos.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.projetos-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #1a202c;
  letter-spacing: 0.04em;
}

.projeto-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.projeto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.projeto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projeto-card:hover img {
  transform: scale(1.05);
}

.projeto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.projeto-overlay span {
  font-family: 'Iceberg', cursive;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* Bazar */
.section-bazar {
  background-color: var(--lavender-bg);
}

.bazar-title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

/* Apadrinhar */
.section-apadrinhar {
  background-color: var(--mint-bg);
}

.apadrinhar-destaque {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.apadrinhar-carousel {
  overflow: hidden;
}

.apadrinhar-carousel .carousel-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.apadrinhar-carousel .carousel-control-prev,
.apadrinhar-carousel .carousel-control-next {
  width: 12%;
}

.apadrinhar-carousel .carousel-indicators {
  margin-bottom: 0.75rem;
}

/* Colaborar */
.section-colaborar {
  background-color: #f7fafc;
}

.section-colaborar .section-title {
  justify-content: center;
  text-align: center;
}

.colaborar-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.colaborar-form {
  background-color: #fff;
  border: 1px solid rgba(45, 55, 72, 0.08);
  border-radius: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 8px 28px rgba(45, 55, 72, 0.06);
}

.colaborar-form .form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.colaborar-form .form-control,
.colaborar-form .form-select {
  border-color: #d1d9e6;
  border-radius: 0.55rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.colaborar-form .form-control:focus,
.colaborar-form .form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 0.2rem rgba(74, 105, 255, 0.18);
}

.colaborar-form .form-control::placeholder {
  color: #94a3b8;
}

.btn-colaborar {
  background-color: var(--blue-primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-width: 200px;
}

.btn-colaborar:hover,
.btn-colaborar:focus {
  background-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-colaborar:disabled {
  opacity: 0.75;
  transform: none;
  cursor: not-allowed;
}

.colaborar-privacy {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.colaborar-feedback {
  border-radius: 0.55rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.colaborar-feedback.is-success {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.colaborar-feedback.is-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.colaborar-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.colaborar-lgpd-check {
  padding: 0.9rem 1rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
}

.colaborar-lgpd-check .form-check-input {
  margin-top: 0.35rem;
  cursor: pointer;
}

.colaborar-lgpd-check .form-check-label {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}

/* LGPD Cookie Banner */
.lgpd-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.lgpd-banner[hidden] {
  display: none !important;
}

.lgpd-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.lgpd-banner-title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.4rem;
}

.lgpd-banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.lgpd-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.65rem;
}

.btn-lgpd-accept,
.btn-lgpd-reject {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.65rem 1.15rem;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn-lgpd-accept {
  background-color: var(--blue-primary);
  color: #fff;
}

.btn-lgpd-accept:hover,
.btn-lgpd-accept:focus {
  background-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lgpd-reject {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-lgpd-reject:hover,
.btn-lgpd-reject:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lgpd-manage-link {
  display: inline;
  margin-left: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.lgpd-manage-link:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: var(--blue-footer);
  color: #fff;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 0.75rem;
}

.footer-info-list {
  margin: 0 0 1.75rem;
}

.footer-info-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-info-item dt {
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer-info-item dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.footer-contact-block {
  margin-top: 0.5rem;
}

.footer-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0 0 1rem;
  opacity: 1;
}

.footer-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer-detail-list li i {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #fff;
  margin-top: 0.15rem;
}

.footer-detail-list address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer-detail-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-detail-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-email {
  color: #d4c4a8 !important;
}

.footer-email:hover {
  color: #e8dcc8 !important;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.65rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--blue-footer-dark);
  font-size: 0.82rem;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 991.98px) {
  :root {
    --header-height: 72px;
  }

  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .btn-header-apadrinhar {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-carousel {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .section-colaborar .section-title {
    align-items: center;
  }

  .site-logo {
    height: 44px;
  }

  .lgpd-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .lgpd-banner-actions {
    width: 100%;
  }

  .btn-lgpd-accept,
  .btn-lgpd-reject {
    flex: 1;
  }
}
