/* ============================
   CONFIGURAÇÕES GERAIS
============================ */
:root {
  --dark: #111;
  --muted: #777;
  --light-border: rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
}

/* ============================
   NAVBAR
============================ */

/* 🔥 CORREÇÃO DEFINITIVA DA FONTE DA NAVBAR */
.navbar,
.navbar * {
  font-family: 'Poppins', sans-serif !important;
}

.site-header .navbar {
  background: #0f0f0f;
  padding: 18px 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.brand-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  padding: 0 12px;
  text-transform: lowercase;
}

.navbar .nav-link:hover {
  opacity: 0.7;
}

/* ============================
   HERO SECTION
============================ */
.hero-section {
  padding-top: 70px;
  padding-bottom: 0px;
  background: linear-gradient(#ffffff, #fafafa);
}

.hero-title {
  font-size: 55px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.9;
}

.data-left {
  display: block;
  text-align: left !important;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 330px;
}

/* HERO IMAGE WRAPPER */
.hero-image-container {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LINHA FULL WIDTH */
.hero-line {
  width: 100%;
  height: 2px;
  margin-top: 0;
  margin-bottom: 40px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.10) 20%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.10) 80%,
    rgba(0,0,0,0) 100%
  );
}

/* ============================
   EXPLORE MY WORK
============================ */
.latest-work {
  background: #ffffff;
  padding-bottom: 80px;
}

.latest-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* CARDS */
.lw-card {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: .25s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* IMAGEM COBRE O CARD */
.lw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* TÍTULO DO CARD */
.lw-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-align: center;
  background: #fff;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.card-link {
  text-decoration: none;
}

/* ============================
   FOOTER
============================ */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  padding: 20px 0;
}

.footer-copy {
  font-size: 14px;
  color: #777;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-icon {
  font-size: 20px;
  color: #333;
  transition: 0.2s ease;
}

.footer-icon:hover {
  color: #0073ff;
  transform: translateY(-2px);
}
.text-justify {
  text-align: justify;
}
/* ===== LINKS ESTILO PREMIUM ===== */
.link-card {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background: #ffffff;
}

.link-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
}

.link-card a i {
  font-size: 18px;
  color: #007bff;
}

.link-card:hover a {
  color: #0056d6;
}

.link-card:hover a i {
  color: #0056d6;
}


/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-image-container {
    height: 380px;
  }

  .lw-card {
    height: 230px;
  }
}

@media (max-width: 768px) {

  .hero-section {
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-image-container {
    height: 330px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-card {
    height: 220px;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 30px;
  }

  .hero-image-container {
    height: 280px;
  }

  .navbar .nav-link {
    display: none;
  }

  .lw-card {
    height: 210px;
  }
}
