/* ------------------------------------------
   BELLEAM LANDING PAGE FINAL VERSION
   ------------------------------------------ */

:root {
  --blue-dark: #0A1A44;
  --blue: #1B3A7A;
  --blue-light: #8FB6E1;
  --blue-soft: #E8F1FA;
  --gold: #C8A768;
  --white: #ffffff;
  --text-dark: #0a0a0a;
}

/* ===========================
   BACKGROUND FIXO (iPhone Safe)
   =========================== */

body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans Condensed", sans-serif;
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Fundo fixo real (funciona em iPhone) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/bkg-small.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 1; /* ajusta se quiseres */
}

/* ===========================
   MAIN CONTAINER
   =========================== */

.landing-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

/* LOGO */
.logo-block {
  text-align: center;
  margin: 15px 0 25px;
}

.logo-block img {
  width: 170px;
}

/* HERO */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block {
  text-align: center;
}

.text-block h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.subtitle {
  color: var(--blue-light);
  font-size: 1.1rem;
}

/* SWIPER */
.gallery-block {
  width: 100%;
}

.swiper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* PROJECT INFO */
.project-info {
  margin-top: 50px;
  padding: 30px 20px;
  background: var(--blue-soft);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

/* ---- LISTA COM ✓ GRANDES E ALINHADOS ---- */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 4px;
}

.info-list .icon {
  font-size: 1.6rem;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
}

.info-list strong {
  font-size: 1.15rem;
  color: var(--blue-dark);
  font-weight: 700;
}

.info-list small {
  display: block;
  font-size: 0.92rem;
  color: #666;
  margin-top: 2px;
}

.info-list .gold {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
}

/* CONTACT BLOCK */
.contact-block {
  margin-top: 40px;
  text-align: center;
  padding: 55px 20px 70px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.contact-block h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-block p {
  margin-bottom: 32px;
}

.cta-button {
  background: var(--gold);
  padding: 16px 34px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}

/* FOOTER */
footer {
  text-align: center;
  margin: 25px 0;
  color: #333;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .text-block h1 { font-size: 2rem; }
  .swiper-slide img { height: 220px; }
}
