.elementor-312 .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-312 .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-23b3013 *//* =========================================================
   THE CASE PROJECT — HERO CON HEADER PADDING
   ✅ Header 100px desktop | ✅ Responsive móvil
========================================================= */

/* 🔧 FIX: Sin barras + header padding */
* { box-sizing: border-box; }
html, body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  background: #0a0a0a;
  font-family: "Outfit", system-ui, sans-serif;
  overflow-x: hidden;
}

@font-face {
  font-family: "SpriteGraffiti";
  src: url("https://thecase-project.com/wp-content/uploads/fonts/Sprite-Graffiti.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg:          #0a0a0a;
  --bg-soft:     #111111;
  --ink:         #f5f5f5;
  --ink-dim:     #8a8a8a;
  --ink-muted:   #444444;
  --accent:      #ff5a00;
  --line:        rgba(255, 255, 255, 0.07);
  --line-accent: rgba(255, 90, 0, 0.25);
}

/* noise grain overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
  background-image: url("image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* radial glow */
#hero::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(255,90,0,0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: heroPulse 7s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroPulse {
  from { opacity: 0.4; transform: translate(-50%, -50%) scale(0.88); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

/* 🔧 HERO CON PADDING HEADER 100px */
#hero {
  position: relative;
  min-height: 100vh;
  /* 🔑 PADDING PARA HEADER: 100px desktop, responsive móvil */
  padding-top: clamp(80px, 12vh + 20px, 120px);
  padding-bottom: clamp(80px, 12vh, 100px);
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
  
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 5%, rgba(255, 90, 0, 0.12) 0%, transparent 42%),
    radial-gradient(ellipse at 85% 95%, rgba(185, 28, 28, 0.09) 0%, transparent 42%);
  
  /* Centrado */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vh, 2.5rem);
}

/* Contenido encima de overlays */
#hero > * { position: relative; z-index: 1; }

/* EYEBROW */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(10px, 1.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  display: block;
  width: clamp(32px, 4vw, 40px);
  height: 1.5px;
  background: var(--accent);
  opacity: 0.55;
}

/* TITLE */
.hero__title {
  font-size: clamp(54px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: clamp(-3px, -0.05em, -1px);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero__title .graffiti {
  font-family: "SpriteGraffiti", Impact, cursive;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: block;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.85;
  animation: neonGlow 3.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
  from { text-shadow: 0 0 8px rgba(255,90,0,0.6), 0 0 30px rgba(255,90,0,0.3); }
  to { text-shadow: 0 0 16px rgba(255,90,0,1), 0 0 60px rgba(255,90,0,0.5), 0 0 120px rgba(255,90,0,0.2); }
}

/* SUBTITLE */
.hero__sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ink-dim);
  max-width: 460px;
  line-height: 1.68;
  margin: 0;
  animation: fadeUp 0.9s 0.2s ease both;
}

/* COUNTDOWN */
.countdown-wrap { animation: fadeUp 1s 0.3s ease both; }
.countdown-caption {
  font-size: clamp(9px, 1.1vw, 10px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 20px 0;
  font-weight: 600;
}
.countdown {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  justify-content: center;
  flex-wrap: wrap;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.countdown__num {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line-accent);
  border-radius: 10px;
  padding: clamp(14px, 3vw, 22px) clamp(16px, 3vw, 28px);
  min-width: clamp(90px, 15vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(255,90,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 20px rgba(255,90,0,0.03);
}
.countdown__num::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,0,0.5), transparent);
}
.countdown__lbl {
  font-size: clamp(8px, 1vw, 9px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.countdown__sep {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--accent);
  padding-bottom: clamp(18px, 3vw, 28px);
  opacity: 0.55;
  align-self: center;
}
.countdown__launch {
  margin-top: clamp(16px, 3vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(10px, 1.3vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line-accent);
  border-radius: 99px;
  padding: 8px 22px;
  font-weight: 600;
}

/* SCROLL HINT */
.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: clamp(8px, 1.1vw, 9px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  z-index: 10;
  animation: fadeUp 1s 0.7s ease both;
}
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.25; transform: scaleY(0.5) translateY(0); }
  50%      { opacity: 1;    transform: scaleY(1)   translateY(5px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  #hero {
    padding-top: clamp(60px, 10vh, 90px);
    padding-bottom: clamp(60px, 10vh, 80px);
  }
}

@media (max-width: 480px) {
  #hero {
    padding-top: clamp(50px, 8vh, 70px);
    padding-bottom: clamp(50px, 8vh, 60px);
  }
  .hero__title { letter-spacing: -1px; }
  .countdown__num { 
    min-width: 74px; 
    padding: 14px 16px; 
    font-size: 38px; 
  }
  .countdown__sep { 
    font-size: 28px; 
    padding-bottom: 18px; 
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-975e87c *//* =========================================================
   THE CASE PROJECT — ABOUT SECTION
   Fixed for Elementor HTML Widget
========================================================= */

.tcp-about,
.tcp-about * {
  box-sizing: border-box;
}

.tcp-about {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --ink: #f5f5f5;
  --ink-dim: #8a8a8a;
  --ink-muted: #555555;
  --accent: #ff5a00;
  --line: rgba(255, 255, 255, 0.07);
  --line-accent: rgba(255, 90, 0, 0.22);
  --display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  position: relative;
  background: var(--bg);
  padding: 120px 24px 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: var(--ink);
  font-family: var(--display);
}

.tcp-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.35), transparent);
  pointer-events: none;
}

.tcp-about .about-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tcp-about .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.tcp-about .section-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.tcp-about .about__headline {
  margin: 0 0 44px;
  max-width: 780px;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--ink);
}

.tcp-about .about__headline em {
  font-style: normal;
  color: var(--accent);
}

.tcp-about .about__lead {
  margin: 0 0 72px;
  max-width: 660px;
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--ink-dim);
  line-height: 1.75;
}

.tcp-about .about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 72px;
}

.tcp-about .about__card {
  background: var(--bg-soft);
  padding: 42px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
}

.tcp-about .about__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tcp-about .about__card:hover {
  background: #181818;
  transform: translateY(-2px);
}

.tcp-about .about__card:hover::after {
  opacity: 1;
}

.tcp-about .about__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--accent);
  opacity: 0.9;
}

.tcp-about .about__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tcp-about .about__card h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.tcp-about .about__card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
}

.tcp-about .about__card strong {
  color: var(--ink);
  font-weight: 600;
}

.tcp-about .about__statement {
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.tcp-about .about__statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 90, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.tcp-about .about__statement-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.tcp-about .about__statement-text span {
  color: var(--accent);
}

.tcp-about .about__statement-sub {
  margin-top: 18px;
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .tcp-about .about__grid {
    grid-template-columns: 1fr;
  }

  .tcp-about .about__card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .tcp-about {
    padding: 80px 20px 70px;
  }

  .tcp-about .about__headline {
    letter-spacing: -0.5px;
  }

  .tcp-about .about__statement {
    padding: 42px 22px;
  }

  .tcp-about .about__statement-sub {
    letter-spacing: 0.04em;
    line-height: 1.6;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-295c759 *//* =========================================================
   THE CASE PROJECT — APP SECTION
   Fixed for Elementor HTML Widget
   No dots
========================================================= */

.tcp-app,
.tcp-app * {
  box-sizing: border-box;
}

.tcp-app {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --ink: #f5f5f5;
  --ink-dim: #8a8a8a;
  --ink-muted: #3a3a3a;
  --accent: #ff5a00;
  --line: rgba(255, 255, 255, 0.07);
  --line-accent: rgba(255, 90, 0, 0.25);
  --display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  position: relative;
  background: var(--bg);
  padding: 120px 24px 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: var(--ink);
  font-family: var(--display);
}

.tcp-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.35), transparent);
  pointer-events: none;
}

.tcp-app .app-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tcp-app .app__intro {
  text-align: center;
  margin-bottom: 90px;
}

.tcp-app .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.tcp-app .section-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.tcp-app .app__title {
  margin: 0 0 18px;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--ink);
}

.tcp-app .app__title em {
  font-style: normal;
  color: var(--accent);
}

.tcp-app .app__subtitle {
  margin: 0 auto;
  max-width: 440px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-dim);
  line-height: 1.65;
}

.tcp-app .app__layout {
  display: grid;
  grid-template-columns: 1fr 310px 1fr;
  gap: 48px;
  align-items: center;
}

.tcp-app .features-left,
.tcp-app .features-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tcp-app .feature-item {
  padding: 22px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

.tcp-app .feature-item::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tcp-app .features-left .feature-item {
  text-align: right;
}

.tcp-app .features-left .feature-item::before {
  right: 0;
}

.tcp-app .features-right .feature-item {
  text-align: left;
}

.tcp-app .features-right .feature-item::before {
  left: 0;
}

.tcp-app .feature-item:hover,
.tcp-app .feature-item.active {
  border-color: var(--line-accent);
  background: rgba(255, 90, 0, 0.04);
}

.tcp-app .feature-item:hover::before,
.tcp-app .feature-item.active::before {
  opacity: 1;
}

.tcp-app .feature-item__tag {
  display: block;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tcp-app .feature-item__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.tcp-app .feature-item.active .feature-item__title {
  color: var(--accent);
}

.tcp-app .feature-item__desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.65;
}

.tcp-app .iphone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tcp-app .iphone-outer {
  position: relative;
  flex-shrink: 0;
}

.tcp-app .iphone-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.3) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
  animation: tcpGlowPulse 3.5s ease-in-out infinite alternate;
}

@keyframes tcpGlowPulse {
  from {
    opacity: 0.4;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.tcp-app .iphone {
  width: 310px;
  height: 634px;
  background: #080808;
  border-radius: 52px;
  border: 3.5px solid var(--accent);
  box-shadow:
    0 0 0 1px rgba(255, 90, 0, 0.2),
    0 0 60px rgba(255, 90, 0, 0.5),
    0 0 140px rgba(255, 90, 0, 0.18),
    0 50px 90px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  animation: tcpPhoneFloat 4.5s ease-in-out infinite;
}

@keyframes tcpPhoneFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0.3deg);
  }
  50% {
    transform: translateY(-14px) rotate(-0.3deg);
  }
}

.tcp-app .iphone__island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 29px;
  background: #000;
  border-radius: 22px;
  z-index: 10;
}

.tcp-app .iphone__side-btn {
  position: absolute;
  top: 120px;
  right: -4px;
  width: 4px;
  height: 68px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 14px rgba(255, 90, 0, 0.9), 0 0 28px rgba(255, 90, 0, 0.4);
  z-index: 5;
}

.tcp-app .iphone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 28%,
    transparent 72%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
  z-index: 9;
}

.tcp-app .iphone__screen {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  overflow: hidden;
  background: #000;
}

.tcp-app .iphone__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.tcp-app .iphone__slide.active {
  opacity: 1;
  z-index: 2;
}

.tcp-app .iphone__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #000;
}

@media (max-width: 1060px) {
  .tcp-app .app__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tcp-app .features-left {
    order: 2;
  }

  .tcp-app .iphone-wrap {
    order: 1;
  }

  .tcp-app .features-right {
    order: 3;
  }

  .tcp-app .features-left,
  .tcp-app .features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .tcp-app .features-left .feature-item,
  .tcp-app .features-right .feature-item {
    text-align: left;
  }

  .tcp-app .features-left .feature-item::before,
  .tcp-app .features-right .feature-item::before {
    left: 0;
    right: auto;
  }
}

@media (max-width: 640px) {
  .tcp-app {
    padding: 80px 20px 70px;
  }

  .tcp-app .iphone {
    width: 260px;
    height: 532px;
    border-radius: 44px;
  }

  .tcp-app .iphone::after,
  .tcp-app .iphone__screen {
    border-radius: 42px;
  }

  .tcp-app .iphone__island {
    width: 84px;
    height: 24px;
  }

  .tcp-app .iphone__side-btn {
    top: 100px;
    height: 56px;
  }

  .tcp-app .features-left,
  .tcp-app .features-right {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d89b9d9 *//* =========================================================
   THE CASE PROJECT — DOWNLOAD SECTION
   Fixed for Elementor HTML Widget
========================================================= */

.tcp-download,
.tcp-download * {
  box-sizing: border-box;
}

.tcp-download {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --ink: #f5f5f5;
  --ink-dim: #8a8a8a;
  --ink-muted: #444444;
  --accent: #ff5a00;
  --line: rgba(255, 255, 255, 0.07);
  --line-accent: rgba(255, 90, 0, 0.25);
  --display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  position: relative;
  background: var(--bg);
  padding: 120px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: var(--ink);
  font-family: var(--display);
}

.tcp-download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 90vw);
  height: min(600px, 70vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.tcp-download .download-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tcp-download .download__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.tcp-download .download__tag::before,
.tcp-download .download__tag::after {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.55;
}

.tcp-download .download__title {
  margin: 0 0 20px;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--ink);
}

.tcp-download .download__title span {
  color: var(--accent);
  text-shadow:
    0 0 20px rgba(255, 90, 0, 0.6),
    0 0 60px rgba(255, 90, 0, 0.25);
  animation: tcpNeonGlow 3.5s ease-in-out infinite alternate;
}

@keyframes tcpNeonGlow {
  from {
    text-shadow:
      0 0 10px rgba(255, 90, 0, 0.5),
      0 0 30px rgba(255, 90, 0, 0.2);
  }
  to {
    text-shadow:
      0 0 20px rgba(255, 90, 0, 1),
      0 0 80px rgba(255, 90, 0, 0.4);
  }
}

.tcp-download .download__sub {
  margin: 0 auto 52px;
  max-width: 400px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-dim);
  line-height: 1.68;
}

.tcp-download .store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tcp-download .store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tcp-download .store-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tcp-download .store-btn:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(255, 90, 0, 0.35);
  transform: translateY(-3px);
}

.tcp-download .store-btn:hover::before {
  opacity: 1;
}

.tcp-download .store-btn__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tcp-download .store-btn__icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.tcp-download .store-text {
  position: relative;
  z-index: 1;
  text-align: left;
  line-height: 1.1;
}

.tcp-download .store-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}

.tcp-download .store-text strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tcp-download .download__note {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .tcp-download {
    padding: 80px 20px;
  }

  .tcp-download .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .tcp-download .store-btn {
    min-width: 0;
    width: 100%;
    padding: 14px 18px;
  }

  .tcp-download .store-text strong {
    font-size: 15px;
  }

  .tcp-download .download__title {
    letter-spacing: -1px;
  }
}/* 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 */