/* ============================================
   RESET + BASE
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif';
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Containers padrão */
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* ============================================
   MENU SUPERIOR FIXO
============================================ */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffee;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.logo-area a {
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  color: #111;
}

.nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: .25s;
}

.nav a:hover,
.nav a.active {
  color: #000;
}

.menu-toggle {
  display: none;
}

/* Ajuste para compensar menu fixo */
body {
  padding-top: 80px;
}

/* ============================================
   HERO COM BANNER
============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(75%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.hero-logo {
  width: 110px;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 700;
}

.hero-content p {
  font-size: 17px;
  margin: 10px 0 20px;
}

.btn {
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: .25s;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* ============================================
   SEÇÕES PADRÃO
============================================ */
.section {
  padding: 80px 0;
}

.section-light {
  background: #fff;
}

.section h1,
.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.texto-centro {
  text-align: center;
}

.texto-menor {
  color: #666;
  font-size: 14px;
}

/* ============================================
   EMPRESA – lista de diferenciais
============================================ */
.lista-destaque {
  list-style: none;
  margin-top: 20px;
}

.lista-destaque li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.lista-destaque li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ============================================
   CTA SOCIAL (EMPRESA)
============================================ */
.cta-social {
  margin-top: 60px;
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.cta-social h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
}

.btn-light {
  background: #fff;
  color: #000;
  border: 1px solid #222;
}

.btn-light:hover {
  background: #000;
  color: #fff;
}

/* ============================================
   SERVIÇOS — GRID
============================================ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.card-servico {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 15px;
  transition: .25s;
  cursor: pointer;
}

.card-servico:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ============================================
   CURIOSIDADES — BOX
============================================ */
.box-curiosidades {
  max-width: 700px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box-curiosidades p {
  margin: 8px 0;
}

/* ============================================
   PUBLICAÇÃO — BOX
============================================ */
.box-publicacao {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box-publicacao p {
  margin-bottom: 14px;
}

/* ============================================
   PORTFÓLIO — CARROSSEL PREMIUM
============================================ */

.categoria h2 {
  margin-top: 55px;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 600;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 22px;
  padding: 15px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  height: 280px;
  width: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform .30s ease, box-shadow .30s ease;
}

.carousel-track img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.carousel-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.carousel-btn:hover {
  opacity: 0.9;
  transform: scale(1.1);
}

/* ============================================
   CONTATO
============================================ */
.contato-page {
  text-align: center;
}

.contato-page .btn {
  margin: 20px 0;
}

/* ============================================
   RODAPÉ + BOTÕES
============================================ */
.footer {
  background: #222;
  color: #ccc;
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
}

.footer-buttons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-btn {
  padding: 10px 18px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: .25s;
}

.footer-btn:hover {
  background: #555;
  transform: scale(1.06);
}

/* ============================================
   ADMIN
============================================ */
.admin-body {
  padding-top: 40px !important;
}

/* ============================================
   RESPONSIVIDADE
============================================ */
@media (max-width: 900px) {

  .topbar {
    padding: 12px 20px;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav.nav-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }

  .carousel-track img {
    height: 200px;
  }

  .hero {
    height: 65vh;
  }
}

@media (max-width: 600px) {

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .carousel-track img {
    height: 160px;
  }
}
