.elementor-456 .elementor-element.elementor-element-3a60a388{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-456 .elementor-element.elementor-element-c9d39db{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c9d39db *//* ════════════════════════════════════════════
   THE CASE PROJECT — HEADER
   Pegar en: Elementor → Custom CSS (Pro) o
             Apariencia → Personalizar → CSS adicional
════════════════════════════════════════════ */

#header-flotante {
  --orange: #d57814;
  --orange-soft: #e88a26;
  --red: #dc1018;
  --red-soft: #f02530;
  --bg-header: rgba(20,20,20,0.97);
  --radius: 33px;
  font-family: 'Outfit', sans-serif;
}

#header-flotante,
#header-flotante *,
#header-flotante *::before,
#header-flotante *::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ════════════════════════════════════════════
   HEADER FLOTANTE
════════════════════════════════════════════ */
#header-flotante {
  position: fixed;
  top: 25px;
  left: 50px;
  right: 50px;
  z-index: 9999;
  background: var(--bg-header);
  box-shadow: 0 4px 20px rgba(213,120,20,0.30);
  border-radius: var(--radius);
  overflow: visible;
  transition: top 0.3s, box-shadow 0.3s;
}
#header-flotante.scrolled {
  top: 12px;
  box-shadow: 0 4px 30px rgba(220,16,24,0.40);
}

#header-flotante .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  transition: padding 0.3s;
}
#header-flotante.scrolled .header-container { padding: 6px 24px; }

/* ── LOGO + SLOGAN ── */
#header-flotante .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
#header-flotante .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}
#header-flotante .logo-link:hover { transform: scale(1.04); }
#header-flotante .logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: height 0.25s, filter 0.25s;
}
#header-flotante .logo-link:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(220,16,24,0.4));
}
#header-flotante.scrolled .logo-img { height: 46px; }

#header-flotante .logo-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  transition: font-size 0.25s, opacity 0.25s;
}
#header-flotante .logo-tagline-accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
#header-flotante.scrolled .logo-tagline {
  font-size: 14px;
}

/* ── MENÚ ── */
#header-flotante .menu-principal ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
#header-flotante .menu-principal ul li { position: relative; }
#header-flotante .menu-principal ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#header-flotante .menu-principal ul li a:hover,
#header-flotante .menu-principal ul li a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ── DERECHA ── */
#header-flotante .header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── CTA: degradado rojo→naranja ── */
#header-flotante .btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(220,16,24,0.35);
  transition: transform 0.2s, box-shadow 0.25s;
  overflow: hidden;
}
#header-flotante .btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
#header-flotante .btn-cta-text,
#header-flotante .btn-arrow {
  position: relative;
  z-index: 1;
}
#header-flotante .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(220,16,24,0.55);
}
#header-flotante .btn-cta:hover::before { opacity: 1; }
#header-flotante .btn-arrow {
  font-size: 14px;
  transition: transform 0.25s;
}
#header-flotante .btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── HAMBURGUESA MOBILE ── */
#header-flotante .menu-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
#header-flotante .menu-mobile-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--orange);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}
#header-flotante .menu-mobile-toggle.open span { background: var(--red); }
#header-flotante .menu-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
#header-flotante .menu-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#header-flotante .menu-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@keyframes thecase-dropdownAnim {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   TABLET ≤ 1200px — ocultamos slogan para
   evitar que el header se rompa
════════════════════════════════════════════ */
@media (max-width: 1200px) {
  #header-flotante .logo-tagline { display: none; }
}

/* ════════════════════════════════════════════
   MOBILE ≤ 992px
════════════════════════════════════════════ */
@media (max-width: 992px) {

  #header-flotante { left: 16px; right: 16px; top: 16px; }
  #header-flotante .menu-mobile-toggle { display: flex; }

  /* CTA reducido en móvil */
  #header-flotante .btn-cta {
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }
  #header-flotante .btn-cta-text { display: none; }
  #header-flotante .btn-cta::after {
    content: "Download";
    position: relative;
    z-index: 1;
    font-weight: 600;
  }

  #header-flotante nav.menu-principal {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(15,17,23,0.99);
    border-radius: 20px;
    border: 1px solid rgba(213,120,20,0.20);
    box-shadow: 0 8px 28px rgba(213,120,20,0.22);
    padding: 10px 0;
    display: none;
    z-index: 9997;
    overflow: hidden;
  }
  #header-flotante nav.menu-principal.open {
    display: block;
    animation: thecase-dropdownAnim 0.25s ease forwards;
  }

  #header-flotante nav.menu-principal > ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    width: 100%;
  }
  #header-flotante nav.menu-principal > ul > li { width: 100%; }
  #header-flotante nav.menu-principal > ul > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    border-bottom: none !important;
    border-radius: 0;
    white-space: normal !important;
    transition: background 0.15s, color 0.15s;
  }
  #header-flotante nav.menu-principal > ul > li > a:hover,
  #header-flotante nav.menu-principal > ul > li > a.active {
    background: rgba(213,120,20,0.10) !important;
    color: var(--orange) !important;
    border-bottom-color: transparent !important;
  }
  #header-flotante nav.menu-principal > ul > li + li > a {
    border-top: 1px solid rgba(213,120,20,0.08) !important;
  }
}

/* ════════════════════════════════════════════
   MOBILE pequeño ≤ 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {
  #header-flotante .header-container { padding: 8px 14px; gap: 10px; }
  #header-flotante .logo-img { height: 48px; }
  #header-flotante.scrolled .logo-img { height: 40px; }
  #header-flotante .btn-cta { height: 36px; padding: 0 14px; font-size: 11px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7fbcdf2 *//* ════════════════════════════════════════════
   THE CASE PROJECT — FOOTER (al final del flujo)
   Pegar en: Elementor → Site Settings → Custom CSS
   o en Apariencia → Personalizar → CSS adicional

   IMPORTANTE: borra cualquier CSS anterior del
   footer antes de pegar este. Y vacía caché.
════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   RESET: anular cualquier regla anterior que
   estuviera flotando el footer o haciendo
   flex el body. Si nunca pegaste esas reglas,
   estas líneas no hacen nada.
────────────────────────────────────────── */
body {
  display: block !important;
  padding-bottom: 0 !important;
}
#tc-footer {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
}

/* ════════════════════════════════════════════
   FOOTER NORMAL (en el flujo del documento)
════════════════════════════════════════════ */
#tc-footer {
  --orange: #d57814;
  --orange-soft: #e88a26;
  --red: #dc1018;
  --red-soft: #f02530;
  --bg-footer: rgba(20,20,20,0.97);
  --radius: 33px;

  font-family: 'Outfit', sans-serif;
  margin: 60px 50px 25px 50px;
  padding: 28px 36px 20px 36px;
  background: var(--bg-footer);
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(213,120,20,0.25);
  color: #fff;
  overflow: hidden;
}

#tc-footer,
#tc-footer *,
#tc-footer *::before,
#tc-footer *::after {
  box-sizing: border-box;
}

/* Línea decorativa superior con degradado de marca */
#tc-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 30%,
    var(--orange) 70%,
    transparent 100%);
  opacity: 0.6;
}

#tc-footer .tc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   FILA PRINCIPAL: Brand · Menú
════════════════════════════════════════════ */
#tc-footer .tc-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Brand: logo + slogan al lado */
#tc-footer .tc-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
#tc-footer .tc-footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, filter 0.25s;
}
#tc-footer .tc-footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: filter 0.25s;
}
#tc-footer .tc-footer-logo:hover { transform: scale(1.04); }
#tc-footer .tc-footer-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(220,16,24,0.4));
}
#tc-footer .tc-tagline-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
#tc-footer .tc-tagline-accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Menú derecha */
#tc-footer .tc-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 22px;
  align-items: center;
}
#tc-footer .tc-footer-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
#tc-footer .tc-footer-menu a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* DIVISOR */
#tc-footer .tc-footer-divider {
  height: 1px;
  margin: 22px 0 18px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(213,120,20,0.25) 50%,
    transparent 100%);
}

/* FILA INFERIOR */
#tc-footer .tc-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

#tc-footer .tc-footer-legal {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
#tc-footer .tc-footer-legal a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#tc-footer .tc-footer-legal a:hover { color: var(--orange); }
#tc-footer .tc-sep {
  color: rgba(213,120,20,0.4);
  font-size: 12px;
  user-select: none;
}

#tc-footer .tc-footer-copy {
  justify-self: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  text-align: center;
}

#tc-footer .tc-footer-dev {
  justify-self: end;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
#tc-footer .tc-footer-dev a {
  text-decoration: none;
  color: var(--orange);
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}
#tc-footer .tc-footer-dev a:hover {
  color: var(--red);
  text-shadow: 0 0 8px rgba(220,16,24,0.4);
}

/* ════════════════════════════════════════════
   TABLET ≤ 992px
════════════════════════════════════════════ */
@media (max-width: 992px) {

  #tc-footer {
    margin: 40px 16px 16px 16px;
    padding: 24px 22px 16px 22px;
  }

  #tc-footer .tc-footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  #tc-footer .tc-footer-brand { justify-content: center; }
  #tc-footer .tc-footer-menu {
    justify-content: center;
    gap: 6px 18px;
  }

  #tc-footer .tc-footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  #tc-footer .tc-footer-legal,
  #tc-footer .tc-footer-copy,
  #tc-footer .tc-footer-dev {
    justify-self: center;
  }

  #tc-footer .tc-footer-legal { justify-content: center; }
}

/* ════════════════════════════════════════════
   MÓVIL ≤ 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {

  #tc-footer {
    margin: 32px 12px 12px 12px;
    padding: 22px 18px 14px 18px;
    border-radius: 24px;
  }

  #tc-footer .tc-footer-brand {
    flex-direction: column;
    gap: 10px;
  }
  #tc-footer .tc-footer-logo img { height: 48px; }
  #tc-footer .tc-tagline-text { font-size: 15px; white-space: normal; }

  #tc-footer .tc-footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  #tc-footer .tc-footer-menu a {
    font-size: 14px;
    padding: 4px 0;
  }

  #tc-footer .tc-footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
  }
  #tc-footer .tc-footer-legal a { font-size: 11px; }
  #tc-footer .tc-footer-copy,
  #tc-footer .tc-footer-dev { font-size: 11px; }
}/* End custom CSS */