/* ------------------------------
   CONFIGURAÇÕES GERAIS
------------------------------ */

body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  margin: 0;
  padding: 0;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------
   CABEÇALHO PREMIUM CLEAN
------------------------------ */

.header {
  background: #fff;
  border-bottom: 2px solid #000;
}

#mainNav {
  background: #fff;
  padding: 10px 0;
}



/* LINKS DO MENU */
.menu-link {
  font-weight: 600;
  color: #000 !important;
  margin-left: 20px;
  transition: 0.2s;
}

.menu-link:hover {
  color: #1A73E8 !important;
}

/* BOTÃO CONTATO */
.nav-contato {
  padding: 7px 16px !important;
  border: 1px solid #1A73E8;
  border-radius: 6px;
  margin-left: 20px;
  color: #1A73E8 !important;
  font-weight: 600;
}

.nav-contato:hover {
  background: #1A73E8;
  color: #fff !important;
}

/* ------------------------------
   HERO SECTION (HOME)
------------------------------ */

.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero .display-4 {
  font-weight: 700;
}

.hero .btn {
  padding: 12px 32px;
  font-size: 18px;
}

/* ------------------------------
   MODAL DE CONTATO
------------------------------ */

.modal-content {
  border-radius: 12px;
  padding: 25px !important;
}

.modal-content h5 {
  font-weight: 700;
}

/* ------------------------------
   FOOTER
------------------------------ */

footer {
  background: #000000;
  color: #FFFFFF;
  font-size: 14px;
}

/* ------------------------------
   RESPONSIVIDADE
------------------------------ */

@media (max-width: 991px) {
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}


/* ------------------------------
   breadcrumb
------------------------------ */
/* Wrapper para posição */
.breadcrumb-wrapper {
  margin-top: 80px; /* abaixo do header fixo */
}

/* Breadcrumb alinhado à esquerda dentro do container */
.breadcrumb {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 0.95rem;
  margin: 0;              /* <-- IMPORTANTE */
}

/* Links */
.breadcrumb-item a {
  text-decoration: none;
  color: #1A73E8;
  font-weight: 600;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Item ativo */
.breadcrumb-item.active {
  color: #555;
  font-weight: 600;
}

/* Seta elegante */
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px;
  color: #888;
  font-size: 12px;
}

/* Lightbox Global */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
  animation: zoomIn .25s ease;
}

#lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Lightbox de Galeria */
.gallery-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#gallery-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
}

#gallery-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 20px;
}

#gallery-prev { left: 50px; }
#gallery-next { right: 50px; }

/* ============================
   TIMELINE
============================ */
.timeline {
  position: relative;
  margin: 60px auto;
  padding: 20px 0;
  max-width: 1000px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #1A73E8;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}

.timeline-left { left: 0; text-align: right; }
.timeline-right { left: 50%; }

.timeline-dot {
  width: 18px;
  height: 18px;
  background: #1A73E8;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: calc(50% - 9px);
  z-index: 10;
}

.timeline-year {
  font-size: 30px;
  font-weight: bold;
  color: #1A73E8;
  margin-bottom: 15px;
}

/* ============================
   TIMELINE CARD
============================ */
.timeline-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.10);
}

.timeline-card img {
  width: 100%;
  border-radius: 6px;
}


/* ============================
   SLIDESHOW
============================ */
.slide-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}

.slide-prev { left: 10px; }
.slide-next { right: 10px; }

