/* ==== BASE ==== */
html, body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, Arial, sans-serif;
  background: #fff;
  color: #111;
}

/* ==== GRID BÁSICO ==== */
.container-xxl {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
  max-width: 1400px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-12 { width: 100%; }
.col-lg-11 { width: 100%; }

.justify-content-center { justify-content: center; }
.text-center { text-align: center; }

/* ==== NAVBAR ==== */
.navbar {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 15px 0;
  background: transparent;
}


.logo {
  position: relative;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* ==== NAV RIGHT ==== */
.nav-info-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ==== TOGGLER ==== */
.navbar-toggler {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ==== HERO ==== */
.ed-slide {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.ed-slide h1 {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  margin: 0;
}

.ed-slide .img img {
  /* max-width: 100%; */
  height: auto;
  display: block;
  margin: auto;
}
