.elementor-kit-6{--e-global-color-primary:#17003B;--e-global-color-secondary:#007BFF;--e-global-color-text:#333333;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Albert Sans", Sans-serif;font-size:1px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:"Albert Sans", Sans-serif;font-weight:400;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  --jc-bg: #17003b;
  --jc-bg-soft: #1c0a4f;
  --jc-accent: #df1919;
  --jc-accent-soft: #ff5a5f;
  --jc-text: #ffffff;
  --jc-muted: #c9c5e6;
}

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Albert Sans", system-ui, sans-serif;
}

/* NAVBAR */
.jc-navbar {
  width: 100%;
  background: var(--jc-bg);
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  font-family: "Albert Sans", system-ui, sans-serif;
  margin: 0;
  box-sizing: border-box;
}

/* IZQUIERDA (LOGO) */
.jc-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* FONDO DETRÁS DEL LOGO + EFECTO */
.jc-nav-logo {
  padding: 0px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.jc-nav-logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.jc-nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* DERECHA (MENÚ + BOTÓN) */
.jc-nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LINKS */
.jc-nav-menu {
  display: flex;
  gap: 24px;
}

.jc-nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.jc-nav-menu a:hover {
  opacity: 0.6;
}

/* BOTÓN */
.jc-nav-btn {
  padding: 14px 32px;
  background: var(--jc-accent);
  color: #fff;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.jc-nav-btn:hover {
  background: var(--jc-accent-soft);
  transform: translateY(-2px);
}

/* HAMBURGUESA MOBILE */
.jc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.jc-burger div {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* MENÚ MOBILE */
.jc-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--jc-bg-soft);
  padding: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 70vw;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.55);
}

.jc-mobile-menu a {
  padding: 12px 0;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jc-mobile-menu a:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
/* Tablets y pantallas medianas */
@media (max-width: 1100px) {
  .jc-nav-logo img {
    height: 50px;
  }

  .jc-nav-menu {
    gap: 16px;
  }

  .jc-nav-menu a {
    font-size: 13px;
  }

  .jc-nav-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .jc-nav-right {
    gap: 24px;
  }
}

/* WAVE DIVIDER */
.jc-wave-divider {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 140px;
  line-height: 0;
  z-index: 2;
}

.jc-wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
}

/* Mobile */
@media (max-width: 900px) {
  .jc-nav-menu {
    display: none;
  }

  .jc-nav-btn {
    display: none;
  }

  .jc-burger {
    display: flex;
  }

  .jc-nav-logo img {
    height: 55px;
  }
}

/* ========== HEADER ========== */
.jc-header {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-image: url('https://javiercastrilli.cl/wordpress/wp-content/uploads/2025/11/jc.jpg');
  background-size: cover;
  background-position: right 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.jc-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(23, 0, 59, 0.95) 0%, rgba(23, 0, 59, 0.85) 40%, rgba(23, 0, 59, 0.3) 70%, transparent 100%);
  z-index: 1;
}

.jc-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* TEXTO */
.jc-header-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.jc-header-label {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e0ddf0;
  margin-bottom: 4px;
}

.jc-header-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

.jc-header-highlight {
  display: block;
  background: var(--jc-accent);
  color: white;
  padding: 8px 20px;
  margin-top: 12px;
  width: fit-content;
  letter-spacing: 0.05em;
}

.jc-header-description {
  font-size: 24px;
  line-height: 1.7;
  color: var(--jc-muted);
  max-width: 540px;
  margin: 4px 0 0 0;
}

/* DECORACIÓN DE ONDA */
.jc-wave-decoration {
  width: 140px;
  height: 12px;
  color: white;
  margin-top: 12px;
  display: block;
}

.jc-header-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 10;
}

.jc-header-btn-primary,
.jc-header-btn-secondary {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  display: inline-block;
}

.jc-header-btn-primary {
  background: var(--jc-accent);
  color: white;
  border: 2px solid var(--jc-accent);
}

.jc-header-btn-primary:hover {
  background: var(--jc-accent-soft);
  border-color: var(--jc-accent-soft);
  transform: translateY(-2px);
}

.jc-header-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.jc-header-btn-secondary:hover {
  background: white;
  color: var(--jc-bg);
  transform: translateY(-2px);
}

/* RESPONSIVE HEADER */
@media (max-width: 900px) {
  .jc-header {
    min-height: auto;
    padding: 40px 0;
    background-position: center center;
  }

  .jc-header-content {
    padding: 40px 5vw;
  }

  .jc-header-title {
    font-size: clamp(36px, 8vw, 52px);
  }

  .jc-header-description {
    font-size: 16px;
  }

  .jc-header-actions {
    flex-direction: column;
    gap: 12px;
  }

  .jc-header-btn-primary,
  .jc-header-btn-secondary {
    text-align: center;
    width: 100%;
  }
}/* End custom CSS */