.header {
  background: #1e2030;
  padding: 0 48px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.header__logo-img {
  display: block;
	height: 75px;
}
/* Elements */
.header__logo {  
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

.header__logo-accent {
  color: #f5a623;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s;
}

.header__nav-link:hover {
  color: #fff;
}

/* Modifier: enlace con flecha de dropdown */
.header__nav-link--dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #e0e0e0;
  margin-left: 2px;
  vertical-align: middle;
}

.header__cta-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 1.5px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.18s, color 0.18s;
  background: transparent;
}

.header__cta-btn:hover {
  background: #fff;
  color: #1e2030;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax: background-attachment: fixed es el truco */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/storage/app/media/01.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  /* ← parallax nativo CSS */
  filter: brightness(0.45);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

/* Mancha naranja con SVG inline */
.hero__brush {
  position: relative;
  display: inline-block;
  padding: 32px 80px 40px;
}

.hero__brush::before {
  content: '';
  position: absolute;
  inset: -10px -30px;
  /*background: url('/storage/app/media/6.png') center/cover no-repeat;*/
  z-index: -1;
}

.hero__title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero__subtitle {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 32px;
}

.hero__cta {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.hero__cta:hover {
  background: #fff;
  color: #1a1a1a;
}