/* ═══════════════════════════════════════════════════════════════
   CAFÉINA CREATIVA — Landing Page Design System
   Awwwards-level editorial / experimental / cinematic
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette */
  --cc-navy:          #050B22;
  --cc-navy-deep:     #00274C;
  --cc-blue:          #0F5699;
  --cc-electric:      #1151FF;
  --cc-coral:         #FE6F73;
  --cc-light:         #F4F6F8;
  --cc-white:         #FFFFFF;
  --cc-black:         #050505;

  /* Derived */
  --cc-navy-90:       rgba(5,11,34,0.9);
  --cc-navy-60:       rgba(5,11,34,0.6);
  --cc-electric-20:   rgba(17,81,255,0.2);
  --cc-coral-20:      rgba(254,111,115,0.2);
  --cc-coral-50:      rgba(254,111,115,0.5);

  /* Typography */
  --ff-primary:       'Mulish', sans-serif;
  --ff-secondary:     'Inter', sans-serif;

  /* Fluid sizes */
  --fs-hero:          clamp(54px, 7vw, 120px);
  --fs-section:       clamp(42px, 5vw, 88px);
  --fs-h3:            clamp(24px, 2.5vw, 36px);
  --fs-h4:            clamp(20px, 2vw, 28px);
  --fs-body:          clamp(15px, 1.1vw, 18px);
  --fs-small:         clamp(12px, 0.9vw, 14px);
  --fs-eyebrow:       clamp(11px, 0.8vw, 13px);

  /* Spacing */
  --space-section:    clamp(100px, 12vw, 180px);
  --space-h:          clamp(24px, 6vw, 96px);
  --max-w:            1440px;

  /* Radius */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-pill: 999px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:    0.3s;
  --dur-mid:     0.6s;
  --dur-slow:    1s;

  /* Header */
  --header-h: 80px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* GSAP handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--cc-white);
  background: var(--cc-navy);
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--cc-coral);
  color: var(--cc-white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cc-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cc-coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              background 0.3s;
}

.cc-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(254,111,115,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out),
              height 0.4s var(--ease-out),
              border-color 0.3s;
}

.cc-cursor.is-hover {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--cc-coral);
  mix-blend-mode: normal;
}

.cc-cursor-ring.is-hover {
  width: 60px;
  height: 60px;
  border-color: var(--cc-electric-20);
}

@media (max-width: 1024px) {
  .cc-cursor,
  .cc-cursor-ring { display: none !important; }
  body { cursor: auto; }
}

/* ── HEADER ────────────────────────────────────────────────── */
.cc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-h);
  transition: background var(--dur-fast) var(--ease-smooth),
              backdrop-filter var(--dur-fast);
}

.cc-header.is-scrolled {
  background: rgba(5,11,34,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cc-header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 10;
}

.cc-header__logo img {
  height: 36px;
  width: auto;
}

.cc-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.cc-header__nav a {
  font-family: var(--ff-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast);
  position: relative;
}

.cc-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cc-coral);
  transition: width var(--dur-fast) var(--ease-out);
}

.cc-header__nav a:hover {
  color: var(--cc-white);
}

.cc-header__nav a:hover::after {
  width: 100%;
}

/* Floating Menu Button */
.cc-menu-btn {
  position: fixed;
  top: 32px;
  right: var(--space-h);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cc-electric);
  border: none;
  color: var(--cc-white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(17,81,255,0.4);
  transition: transform var(--dur-fast), background var(--dur-fast);
}

.cc-menu-btn:hover {
  background: var(--cc-coral);
  box-shadow: 0 4px 24px rgba(254,111,115,0.4);
  transform: scale(1.1);
}

/* Fullscreen Menu Overlay - Ultra Luxury & Functional */
.cc-fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  padding: 60px var(--space-h);
}

.cc-fullscreen-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cc-fullscreen-menu__bg-glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 87, 51, 0.15) 0%, rgba(26, 68, 255, 0.1) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cc-fullscreen-menu__container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .cc-fullscreen-menu__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }
}

.cc-fullscreen-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cc-menu-link__num {
  font-family: var(--ff-secondary);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--cc-coral);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.cc-menu-link__text {
  font-family: var(--ff-primary);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.cc-menu-link:hover .cc-menu-link__text {
  color: var(--cc-coral);
  transform: translateX(12px);
}

.cc-menu-link:hover .cc-menu-link__num {
  color: var(--cc-electric);
}

.cc-fullscreen-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .cc-fullscreen-menu__meta {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
  }
}

.cc-fullscreen-menu__tagline p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cc-meta-label {
  display: block;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.cc-meta-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.cc-meta-link:hover {
  color: var(--cc-coral);
}

.cc-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cc-social-row a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cc-social-row a:hover {
  color: var(--cc-coral);
}


@media (max-width: 899px) {
  .cc-header__nav { display: none; }
  .cc-menu-btn { display: flex; }
}

/* ── SIDE NAV (Desktop Only) ───────────────────────────────── */
.cc-sidenav {
  position: fixed;
  left: clamp(16px, 2vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cc-sidenav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform var(--dur-fast);
}

.cc-sidenav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--cc-blue);
  background: transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.cc-sidenav__num {
  font-family: var(--ff-secondary);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast);
  letter-spacing: 0.05em;
}

.cc-sidenav__item:hover .cc-sidenav__num {
  color: var(--cc-white);
}

.cc-sidenav__item.is-active {
  transform: scale(1.1);
}

.cc-sidenav__item.is-active .cc-sidenav__dot {
  background: var(--cc-coral);
  border-color: var(--cc-coral);
  transform: scale(1.3);
}

.cc-sidenav__item.is-active .cc-sidenav__num {
  color: var(--cc-coral);
}

.cc-sidenav__line {
  width: 1px;
  height: 40px;
  background: transparent;
  border-left: 1px dashed rgba(254,111,115,0.4);
  position: relative;
  transition: border-color var(--dur-mid);
}

.cc-sidenav__line.is-active {
  border-color: var(--cc-coral);
}

.cc-sidenav__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cc-white);
  margin-top: 4px;
}

.cc-sidenav__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--cc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue);
  font-size: 12px;
  margin-top: 12px;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.cc-sidenav__icon:hover {
  background: var(--cc-blue);
  color: var(--cc-white);
}

@media (max-width: 1199px) {
  .cc-sidenav { display: none; }
}

/* ── SCROLL INDICATOR ──────────────────────────────────────── */
.cc-scroll-indicator {
  position: absolute;
  bottom: clamp(100px, 14vh, 160px);
  right: clamp(30px, 5vw, 80px);
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 25;
  pointer-events: auto;
  cursor: pointer;
}

.cc-scroll-indicator__text {
  font-family: var(--ff-secondary);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.cc-scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cc-scroll-indicator__dot {
  width: 4px;
  height: 9px;
  background: var(--cc-coral);
  border-radius: 4px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--cc-coral);
  animation: cc-scroll-bounce 2s ease-in-out infinite;
}

@keyframes cc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; }
}

@media (max-width: 768px) {
  .cc-scroll-indicator {
    right: 20px;
    bottom: 80px;
  }
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.cc-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  background: var(--cc-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 var(--space-h);
}

.cc-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cc-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.cc-hero__container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--space-h);
}

.cc-hero__content {
  position: relative;
  z-index: 5;
  max-width: 80%;
  padding-top: var(--header-h);
}

.cc-hero__eyebrow {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-hero__eyebrow span {
  color: var(--cc-coral);
}

.cc-hero__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin-bottom: 32px;
}

.cc-hero__title .cc-coral {
  color: var(--cc-coral);
}

.cc-hero__desc {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cc-hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero scene (taza 3D) */
.cc-hero__scene {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 50vw, 800px);
  z-index: 3;
  pointer-events: none;
}

.cc-hero__scene img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}

/* Floating particles (CSS only) */
.cc-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: cc-float 6s ease-in-out infinite;
}

@keyframes cc-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(8px) rotate(-3deg); }
}

.cc-particle--coral { background: var(--cc-coral); }
.cc-particle--blue  { background: var(--cc-electric); }
.cc-particle--navy  { background: var(--cc-blue); }

/* Geometric cubes */
.cc-cube {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--cc-electric);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  animation: cc-cube-float 8s ease-in-out infinite;
}

@keyframes cc-cube-float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(60deg) translateY(-20px); }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-secondary);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
}

.cc-btn--primary {
  background: var(--cc-coral);
  color: var(--cc-white);
  padding: 16px 28px;
  border-radius: var(--r-pill);
}

.cc-btn--primary:hover {
  background: #ff8589;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cc-coral-50);
}

.cc-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
}

.cc-btn--ghost:hover {
  color: var(--cc-white);
  border-bottom-color: var(--cc-coral);
}

.cc-btn--outline {
  background: transparent;
  color: var(--cc-navy);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--cc-navy);
}

.cc-btn--outline:hover {
  background: var(--cc-navy);
  color: var(--cc-white);
}

.cc-btn--dark {
  background: var(--cc-navy);
  color: var(--cc-white);
  padding: 16px 28px;
  border-radius: var(--r-pill);
}

.cc-btn--dark:hover {
  background: var(--cc-navy-deep);
  transform: translateY(-2px);
}

/* ── SECTION TRANSITIONS ───────────────────────────────────── */
.cc-transition {
  position: relative;
  height: clamp(80px, 10vw, 140px);
  width: 100%;
  overflow: hidden;
}

.cc-transition--hero-to-formula {
  background: var(--cc-electric);
  margin-top: calc(-1 * clamp(80px, 10vw, 140px));
  margin-bottom: -1px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  position: relative;
  z-index: 10;
}

.cc-transition--hero-to-formula::before {
  display: none;
}

.cc-transition--formula-to-services {
  background: var(--cc-light);
  margin-top: -1px;
}

.cc-transition--formula-to-services::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cc-electric);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.cc-transition--services-to-portfolio {
  background: var(--cc-navy);
  margin-top: -1px;
}

.cc-transition--services-to-portfolio::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -5%;
  right: -5%;
  height: 110%;
  background: var(--cc-light);
  border-radius: 0 0 52% 48%;
}

.cc-transition--portfolio-to-process {
  background: var(--cc-coral);
  margin-top: -1px;
}

.cc-transition--portfolio-to-process::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -5%;
  right: -5%;
  height: 110%;
  background: var(--cc-navy);
  border-radius: 0 0 46% 54%;
}

/* ── FORMULA SECTION ───────────────────────────────────────── */
.cc-formula {
  background: var(--cc-electric);
  padding: var(--space-section) var(--space-h);
  position: relative;
  overflow: hidden;
  min-height: clamp(550px, 60vw, 850px);
  display: flex;
  align-items: center;
}

.cc-formula__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.cc-formula__eyebrow {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.cc-formula__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-section);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

.cc-portfolio__desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-body);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cc-formula__desc {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-body);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cc-formula__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.cc-formula__cup-img {
  width: clamp(380px, 45vw, 680px);
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease;
}

.cc-formula__cup-img:hover {
  transform: scale(1.03);
}

/* Orbital labels */
.cc-orbital {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: #fff;
}

.cc-orbital__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cc-coral);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--cc-coral);
}

.cc-orbital__line {
  background: rgba(255, 255, 255, 0.4);
}

.cc-orbital__text {
  font-family: var(--ff-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

.cc-orbital--top {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
}
.cc-orbital--top .cc-orbital__line {
  width: 1px;
  height: 35px;
  border-left: 2px dashed rgba(255,255,255,0.4);
  background: transparent;
}

.cc-orbital--left {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  flex-direction: row;
}
.cc-orbital--left .cc-orbital__line {
  width: 40px;
  height: 1px;
  border-top: 2px dashed rgba(255,255,255,0.4);
  background: transparent;
}

.cc-orbital--right {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  flex-direction: row-reverse;
}
.cc-orbital--right .cc-orbital__line {
  width: 40px;
  height: 1px;
  border-top: 2px dashed rgba(255,255,255,0.4);
  background: transparent;
}

.cc-orbital--bottom {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column-reverse;
}
.cc-orbital--bottom .cc-orbital__line {
  width: 1px;
  height: 35px;
  border-left: 2px dashed rgba(255,255,255,0.4);
  background: transparent;
}

/* ── SERVICES SECTION ──────────────────────────────────────── */
.cc-services {
  position: relative;
  overflow: hidden;
  padding-top: clamp(100px, 12vh, 160px); /* Increased padding per user request */
  padding-bottom: clamp(40px, 6vh, 70px);
  background: var(--cc-light);
  width: 100%;
}

.cc-services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-h);
  width: 100%;
}

.cc-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: clamp(16px, 2.5vh, 32px);
  align-items: end;
}

.cc-services__eyebrow {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-coral);
  margin-bottom: 12px;
}

.cc-services__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-section);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--cc-navy);
  margin: 0;
}

.cc-services__title .cc-coral {
  color: var(--cc-coral);
  font-style: italic;
}

.cc-services__subtitle {
  color: #64748b;
  font-size: var(--fs-body);
  max-width: 420px;
  align-self: end;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cc-services__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.cc-service-gallery-wrapper {
  width: calc(100% - var(--space-h) * 2);
  margin: 0 auto;
  height: clamp(400px, 55vh, 600px); /* Increased height to prevent cutoff */
  background: var(--cc-light);
  border-radius: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  will-change: width, height, border-radius;
}

.cc-service-wall {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  padding: 0 40px;
  will-change: transform;
}

.cc-service-card {
  width: clamp(270px, 23vw, 320px);
  min-width: 270px;
  flex: 0 0 clamp(270px, 23vw, 320px);
  padding: clamp(20px, 2.2vh, 26px) 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  min-height: clamp(380px, 44vh, 440px);
  transform: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.cc-service-card:hover {
  z-index: 10;
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.cc-service-card--navy  { background: var(--cc-navy); color: var(--cc-white); }
.cc-service-card--blue  { background: var(--cc-electric); color: var(--cc-white); }
.cc-service-card--coral { background: var(--cc-coral); color: var(--cc-white); }

/* Inverted Rounded Corners (Straight upright cards, no tilt) */
.cc-service-card:nth-child(1) { border-radius: 16px 64px 16px 16px; }
.cc-service-card:nth-child(2) { border-radius: 64px 16px 16px 16px; }
.cc-service-card:nth-child(3) { border-radius: 16px 16px 64px 16px; }
.cc-service-card:nth-child(4) { border-radius: 16px 16px 16px 64px; }
.cc-service-card:nth-child(5) { border-radius: 64px 16px 16px 16px; }
.cc-service-card:nth-child(6) { border-radius: 16px 64px 16px 16px; }
.cc-service-card:nth-child(7) { border-radius: 16px 16px 64px 16px; }
.cc-service-card:nth-child(8) { border-radius: 64px 16px 16px 16px; }
.cc-service-card:nth-child(9) { border-radius: 16px 64px 16px 16px; }
.cc-service-card:nth-child(10) { border-radius: 16px 16px 64px 16px; }
.cc-service-card:nth-child(11) { border-radius: 64px 16px 16px 16px; }

@media (max-width: 991px) {
  .cc-services {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cc-service-wall {
    padding-bottom: 20px;
  }
  .cc-service-card {
    width: 280px;
    min-width: 280px;
    transform: none !important;
  }
}

.cc-service-card__num {
  font-family: var(--ff-primary);
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 900;
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.cc-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.cc-service-card__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h4);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.cc-service-card__desc {
  font-size: var(--fs-small);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cc-service-card__link {
  font-size: var(--fs-small);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast),
              gap var(--dur-fast),
              transform var(--dur-fast) var(--ease-out);
}

.cc-service-card__link span {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}

.cc-service-card:hover .cc-service-card__link,
.cc-service-card__link:hover {
  background: var(--cc-white);
  color: var(--cc-navy);
  border-color: var(--cc-white);
  gap: 12px;
  transform: translateY(-2px);
}

.cc-service-card:hover .cc-service-card__link span,
.cc-service-card__link:hover span {
  transform: translateX(4px);
}

/* ── PORTFOLIO SECTION ─────────────────────────────────────── */
.cc-portfolio {
  background: var(--cc-navy);
  padding: var(--space-section) 0;
  position: relative;
}

.cc-portfolio__inner {
  padding: 0 0 0 var(--space-h);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.cc-portfolio__header {
  max-width: var(--max-w);
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding: 0 var(--space-h);
  text-align: center;
}

.cc-portfolio__header .cc-portfolio__desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cc-portfolio__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
}

.cc-portfolio__eyebrow {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-coral);
  margin-bottom: 16px;
}

.cc-portfolio__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-section);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.cc-portfolio__title .cc-coral {
  color: var(--cc-coral);
  font-style: italic;
}

/* Horizontal scroll track */
.cc-portfolio__track-wrapper {
  width: calc(100% - var(--space-h) * 2);
  margin: 0 auto;
  height: clamp(400px, 60vh, 700px);
  background: var(--cc-bg); /* Or match a tone */
  border-radius: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  will-change: width, height, border-radius;
}

.cc-portfolio__track {
  display: grid;
  grid-template-rows: repeat(2, clamp(200px, 18vw, 260px));
  grid-auto-columns: clamp(240px, 22vw, 340px);
  grid-auto-flow: column;
  gap: clamp(16px, 1.5vw, 24px);
  padding: 0 40px;
  width: max-content;
  will-change: transform;
}

.cc-portfolio__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/* ── BENTO MODIFIERS ── */
.cc-portfolio__item--square {
  grid-row: span 1;
  grid-column: span 1;
}

.cc-portfolio__item--tall {
  grid-row: span 2;
  grid-column: span 1;
}

.cc-portfolio__item--wide {
  grid-row: span 1;
  grid-column: span 2;
}

.cc-portfolio__item--huge {
  grid-row: span 2;
  grid-column: span 2;
}

.cc-portfolio__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 24px; /* Uniform premium curve */
  overflow: hidden;
  position: relative;
}

.cc-portfolio__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.cc-portfolio__item:hover .cc-portfolio__img-wrap img {
  transform: scale(1.03);
}

/* ── ALGUNOS CLIENTES ─────────────────────────────────────── */
.cc-portfolio__clients {
  max-width: var(--max-w);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--space-h);
  text-align: center;
}

.cc-portfolio__clients-label {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-coral);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.cc-portfolio__clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 18px);
}

.cc-portfolio__client {
  width: 136px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.cc-portfolio__client img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.4);
  opacity: 0.55;
  transition: filter var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}

.cc-portfolio__client:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.cc-portfolio__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(5,11,34,0.85));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.cc-portfolio__item:hover .cc-portfolio__overlay {
  opacity: 1;
  transform: translateY(0);
}
.cc-portfolio__item-name {
  font-family: var(--ff-primary);
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 4px;
}

.cc-portfolio__item-cat {
  font-size: var(--fs-small);
  color: var(--cc-coral);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── PROCESS SECTION ───────────────────────────────────────── */
.cc-process {
  background: var(--cc-coral);
  padding: var(--space-section) var(--space-h);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 0 0 5vw 5vw;
}

.cc-process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: center;
  position: relative;
}

.cc-process__content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.cc-process__header {
  margin-bottom: 60px;
}

.cc-process__eyebrow {
  font-family: var(--ff-secondary);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-navy-deep);
  margin-bottom: 20px;
}

.cc-process__title {
  font-family: var(--ff-primary);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--cc-white);
}

/* Timeline Horizontal (Desktop) */
.cc-process__timeline {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.cc-process__line-svg {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 0;
  transform: translateY(-50%);
}

.cc-process__line-svg svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cc-process__step {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Staggered Heights to follow the curve on desktop */
.cc-process__step--1 { transform: translateY(0px); }
.cc-process__step--2 { transform: translateY(-40px); }
.cc-process__step--3 { transform: translateY(-20px); }
.cc-process__step--4 { transform: translateY(30px); }

.cc-process__step-node {
  width: 70px;
  height: 70px;
  background: var(--cc-navy-deep);
  border: 4px solid var(--cc-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-secondary);
  font-size: 18px;
  font-weight: 700;
  color: var(--cc-white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cc-process__step:hover .cc-process__step-node {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Halo ring on step 3 */
.cc-process__step-halo {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
  border-right-color: rgba(255,255,255,0.4);
  animation: spin 8s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.cc-process__step-title {
  font-family: var(--ff-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--cc-navy-deep);
  margin-bottom: 8px;
}

.cc-process__step-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Right Column Visual (Desfase & Motion) */
.cc-process__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.cc-process__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.35));
  transform: scale(1.15) translateY(20px) translateX(20px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  animation: floatMug 6s ease-in-out infinite alternate;
}

@keyframes floatMug {
  0% { transform: scale(1.15) translateY(20px) translateX(20px); }
  100% { transform: scale(1.18) translateY(-10px) translateX(10px); }
}

/* Responsive & Mobile Vertical Timeline */
@media (max-width: 991px) {
  .cc-process__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cc-process__visual {
    margin-top: 20px;
    justify-content: center;
  }

  .cc-process__img {
    transform: none;
    max-width: 380px;
    animation: none;
  }

  /* Vertical Timeline Layout on Mobile */
  .cc-process__line-svg { display: none; }

  .cc-process__timeline {
    position: relative;
    padding-left: 20px;
  }

  .cc-process__timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 55px;
    width: 2px;
    border-left: 2px dashed rgba(255, 255, 255, 0.4);
    z-index: 0;
  }

  .cc-process__steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .cc-process__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    transform: none !important;
  }

  .cc-process__step-node {
    margin-bottom: 0;
    z-index: 1;
  }

  .cc-process__step-title {
    margin-top: 14px;
    font-size: 22px;
  }

  .cc-process__step-desc {
    max-width: 100%;
  }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.cc-footer {
  background: var(--cc-navy-deep);
  position: relative;
  overflow: hidden;
  margin-top: -6vw;
  padding-top: 6vw;
}

.cc-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--space-h);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

@media (min-width: 768px) {
  .cc-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.cc-footer__cta-left h2 {
  font-family: var(--ff-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.cc-footer__cta-desc {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}



/* ── PREMIUM FORM ────────────────────────────────────────── */
.cc-form-floating {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.cc-form-floating label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: var(--ff-body);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  padding: 0 4px;
}

.cc-form-floating textarea + label {
  top: 16px;
  transform: none;
}

.cc-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  color: var(--cc-white);
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: var(--ff-body);
  backdrop-filter: blur(10px);
}

.cc-input:focus,
.cc-input:not(:placeholder-shown) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.cc-input:focus + label,
.cc-input:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cc-white);
  background: var(--cc-navy-deep);
  transform: translateY(0);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cc-btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--cc-coral) 0%, #ff5e3a 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 15px;
  font-family: var(--ff-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px -10px rgba(255, 68, 51, 0.5);
  overflow: hidden;
  position: relative;
}

.cc-btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.cc-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(255, 68, 51, 0.7);
}

.cc-btn-premium:hover::before {
  left: 100%;
}

.cc-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--space-h);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.cc-footer__logo img {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

.cc-footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.cc-footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all var(--dur-fast);
}

.cc-footer__socials a:hover {
  border-color: var(--cc-coral);
  color: var(--cc-coral);
  transform: translateY(-3px);
}

.cc-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-family: var(--ff-body);
}

.cc-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.cc-footer__links a:hover {
  color: var(--cc-coral);
}

.cc-footer__divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

.cc-footer__copy {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
.cc-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--cc-coral);
  z-index: 10000;
  width: 0%;
  transition: none;
}

/* ── MODAL CONTACTO ────────────────────────────────────────── */
.cc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cc-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cc-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 20, 0.85);
  backdrop-filter: blur(8px);
}

.cc-modal__content {
  position: relative;
  background: var(--cc-navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cc-modal.is-open .cc-modal__content {
  transform: translateY(0);
}

.cc-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}

.cc-modal__close:hover {
  color: var(--cc-white);
}

.cc-modal__title {
  font-family: var(--ff-primary);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cc-white);
}

.cc-modal__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 30px;
}

.cc-modal__form .form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  display: block;
}

.cc-modal__form .form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cc-white);
  font-size: 14px;
  transition: all 0.2s;
}

.cc-modal__form .form-input:focus {
  outline: none;
  border-color: var(--cc-coral);
  background: rgba(255,255,255,0.05);
}

/* ── FORM GRID (sin Bootstrap en index.php) ───────────────── */
.cc-modal__form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.cc-modal__form .col-12,
.cc-modal__form .col-sm-6 {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

.cc-modal__form .form-group {
  display: flex;
  flex-direction: column;
}

.cc-modal__form .text-center {
  text-align: center;
}

.cc-modal__form .mt-5 {
  margin-top: 2rem;
}

.cc-modal__form .ms-2 {
  margin-left: 0.5rem;
}

.cc-modal__form .h,
.cc-modal__form .d-none {
  display: none !important;
}

@media (min-width: 576px) {
  .cc-modal__form .col-sm-6 {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* ── REVEAL ANIMATIONS (initial states) ────────────────────── */
.cc-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.cc-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}

.cc-reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

.cc-reveal--scale {
  opacity: 0;
  transform: scale(0.92);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1199px) {
  .cc-hero__content { max-width: 50%; }
  .cc-hero__scene { width: clamp(350px, 48vw, 600px); right: -5vw; }

  .cc-formula__inner { grid-template-columns: 1fr; gap: 40px; }
  .cc-formula__visual { min-height: auto; justify-content: flex-start; }
  .cc-formula__cup-img { width: 100%; max-width: 500px; }

  .cc-services__header { grid-template-columns: 1fr; }

  .cc-service-wall {
    grid-template-columns: repeat(4, 1fr);
  }
  .cc-service-card { grid-column: span 2; }

  .cc-portfolio__header { grid-template-columns: 1fr; }

  .cc-process__inner { grid-template-columns: 1fr; }
  .cc-process__visual { margin-top: 40px; display: none; /* Often hidden on tablet to save space, or keep it */ }
  .cc-process__steps { 
    display: flex; 
    flex-direction: column; 
    gap: 32px; 
  }
  .cc-process__step { transform: none !important; }
  .cc-process__line-svg { display: none; }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  .cc-hero {
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 40px;
    min-height: 100svh;
  }

  .cc-hero__content {
    max-width: 100%;
    padding-top: 20px;
    text-align: left;
  }

  .cc-hero__scene {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 85%;
    margin: 24px auto 0;
  }

  .cc-hero__ctas {
    justify-content: flex-start;
  }

  .cc-formula__inner { grid-template-columns: 1fr; }
  .cc-formula__visual { min-height: 280px; }
  .cc-formula__cup-img { width: 200px; }

  .cc-service-wall {
    grid-template-columns: 1fr;
  }
  .cc-service-card { grid-column: span 1; min-height: 220px; }

  .cc-portfolio__header { grid-template-columns: 1fr; }
  .cc-portfolio__track { gap: 16px; padding: 0 20px; }
  .cc-portfolio__item { width: 280px; }
  .cc-portfolio__img-wrap { height: 360px; }

  .cc-process__inner { grid-template-columns: 1fr; }
  .cc-process__steps { flex-direction: column; gap: 24px; }
  .cc-process__steps::before { display: none; }
  .cc-process__visual img { width: 240px; }

  .cc-footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .cc-footer__legal { flex-direction: column; gap: 12px; }
}

/* ── ACCESSIBILITY ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cc-cursor,
  .cc-cursor-ring { display: none !important; }
  body { cursor: auto; }
  .cc-particle,
  .cc-cube { animation: none !important; }
}

/* ── UTILITY ───────────────────────────────────────────────── */
.cc-coral { color: var(--cc-coral); }
.cc-electric { color: var(--cc-electric); }
.cc-navy-text { color: var(--cc-navy); }
.cc-italic { font-style: italic; }

/* ── PROYECTOS ESPECIALES & TEMPLETES WEB (NEW UI/UX) ─────── */
.cc-templates-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) var(--space-h) 60px;
  background: radial-gradient(circle at 10% 20%, rgba(26, 68, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(255, 87, 51, 0.12) 0%, transparent 50%),
              var(--cc-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-templates-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .cc-templates-hero__inner {
    grid-template-columns: 1fr;
  }
}

.cc-templates-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 87, 51, 0.1);
  border: 1px solid rgba(255, 87, 51, 0.3);
  color: var(--cc-coral);
  font-family: var(--ff-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cc-templates-hero__title {
  font-family: var(--ff-primary);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cc-templates-hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cc-price-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.cc-price-tag-pill__amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cc-coral);
}

.cc-price-tag-pill__details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Filter Pills */
.cc-filter-section {
  padding: 40px var(--space-h) 20px;
  background: var(--cc-navy);
}

.cc-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cc-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cc-filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cc-filter-btn.is-active {
  background: var(--cc-electric);
  color: #fff;
  border-color: var(--cc-electric);
  box-shadow: 0 8px 24px rgba(26, 68, 255, 0.4);
}

/* Template Grid & Cards */
.cc-templates-grid {
  padding: 40px var(--space-h) 100px;
  background: var(--cc-navy);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 991px) {
  .cc-templates-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.cc-template-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(12px);
  position: relative;
}

.cc-template-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 51, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 87, 51, 0.15);
}

.cc-template-card__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.cc-template-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-template-card:hover .cc-template-card__img {
  transform: scale(1.05);
}

.cc-template-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cc-coral);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.cc-template-card__cat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26, 68, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.cc-template-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cc-template-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.cc-template-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cc-template-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cc-coral);
}

.cc-template-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cc-template-card__features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-template-card__features li i {
  color: var(--cc-electric);
  font-size: 0.75rem;
}

.cc-template-card__aspects {
  margin-top: 16px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-template-card__aspects-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.cc-template-card__aspects-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.cc-template-card__aspects-img:hover {
  transform: scale(1.02);
}

.cc-template-card__footer {
  margin-top: auto !important;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-template-card__footer .cc-btn {
  padding: 14px 20px;
  font-size: 0.9rem;
}

/* Clean Final Specials Banner (No Gradients, Flat Dark Aesthetic) */
.cc-specials-section {
  background: var(--cc-navy);
  padding: 50px var(--space-h);
  position: relative;
  z-index: 5;
}

.cc-specials-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cc-specials-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}

.cc-specials-banner:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .cc-specials-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cc-specials-banner__visual {
    justify-content: center;
  }
}

.cc-specials-tag {
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cc-coral);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cc-specials-title {
  font-family: var(--ff-primary);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.cc-specials-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.cc-specials-banner__visual {
  display: flex;
  justify-content: flex-end;
}

.cc-specials-banner__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.cc-specials-banner:hover .cc-specials-banner__img {
  transform: translateY(-4px);
}

/* ── FORM ALERTS & VALIDATION IN CORAL COLOR ──────────────── */
.cc-input:invalid:not(:placeholder-shown),
.cc-input.is-invalid {
  border-color: var(--cc-coral) !important;
  background: rgba(255, 87, 51, 0.04) !important;
  box-shadow: 0 0 15px rgba(255, 87, 51, 0.25) !important;
}

.cc-input:invalid:not(:placeholder-shown) + label,
.cc-input.is-invalid + label {
  color: var(--cc-coral) !important;
}

.cc-form-alert,
.alert-danger,
.error-label {
  background: rgba(255, 87, 51, 0.12) !important;
  border: 1px solid var(--cc-coral) !important;
  color: var(--cc-coral) !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  display: none;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 20px rgba(255, 87, 51, 0.15) !important;
}

/* ── RADIOGRAFÍA DIGITAL (SALES TEST) DARK DESIGN SYSTEM ── */
.test-ventas-section {
  background: var(--cc-navy);
  color: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}

.test-container {
  max-width: 900px;
  margin: 0 auto;
}

.question-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 32px;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.question-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.question-number {
  font-family: var(--ff-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cc-coral);
  background: rgba(255, 87, 51, 0.12);
  border: 1px solid rgba(255, 87, 51, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.question-title {
  font-family: var(--ff-primary);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.option-pill input[type="radio"] {
  accent-color: var(--cc-coral);
  width: 20px;
  height: 20px;
  margin-right: 14px;
  cursor: pointer;
}

.pill-label {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.option-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.option-pill input[type="radio"]:checked + .pill-label,
.option-pill:has(input[type="radio"]:checked) {
  background: rgba(255, 87, 51, 0.12) !important;
  border-color: var(--cc-coral) !important;
  box-shadow: 0 4px 20px rgba(255, 87, 51, 0.2);
}

.option-pill input[type="radio"]:checked + .pill-label {
  color: #ffffff;
  font-weight: 700;
}

.other-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 12px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  margin-left: 8px;
}

.other-input:focus {
  border-color: var(--cc-coral);
}

.validation-summary-box {
  background: rgba(255, 87, 51, 0.12);
  border: 1px solid var(--cc-coral);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--cc-coral);
}

.summary-header {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.summary-list {
  padding-left: 20px;
  margin: 0;
  font-size: 0.9rem;
}

/* ── BRAND PRELOADER & SVG ZOOM MASK REVEAL ────────────────── */
.cc-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cc-navy);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.7s ease;
}

.cc-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cc-preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.cc-preloader__logo-wrap {
  width: clamp(110px, 16vw, 160px);
  height: auto;
  aspect-ratio: 595.3 / 522.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform;
}

.cc-preloader__svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cc-preloader__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cc-preloader__counter {
  font-family: var(--ff-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cc-preloader__status {
  font-family: var(--ff-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.cc-preloader__bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.cc-preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--cc-coral); /* Changed to solid color per user request */
  border-radius: 100px;
  transition: width 0.15s linear;
}

/* ── SERVICE MODALS ────────────────────────────────────────── */
.cc-modal__content--service {
  max-width: 900px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
}

.cc-modal-nav-outer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cc-modal-nav-outer:hover {
  background: var(--cc-primary);
  border-color: var(--cc-primary);
  transform: translateY(-50%) scale(1.1);
}

.cc-modal-nav-outer--prev {
  left: 3vw;
}

.cc-modal-nav-outer--next {
  right: 3vw;
}

@media (max-width: 768px) {
  .cc-modal-nav-outer {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .cc-modal-nav-outer--prev {
    left: 10px;
  }
  .cc-modal-nav-outer--next {
    right: 10px;
  }
}

.cc-service-modal-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .cc-service-modal-inner {
    flex-direction: row;
  }
}

.cc-service-modal-image {
  flex: 0 0 45%;
  position: relative;
  min-height: 250px;
}

.cc-service-modal-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-service-modal-text {
  flex: 1;
  padding: 40px;
  background: var(--cc-navy);
  color: var(--cc-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cc-service-modal-eyebrow {
  color: var(--cc-blue);
  font-family: var(--ff-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.cc-service-modal-title {
  font-family: var(--ff-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cc-service-modal-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cc-service-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.cc-service-modal-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cc-service-modal-list li i {
  color: var(--cc-blue);
  margin-top: 4px;
}

.cc-service-modal-text .cc-btn {
  align-self: flex-start;
}

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
.cc-wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-coral);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(254, 111, 115, 0.35);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.cc-wa-float i {
  font-size: 22px;
  line-height: 1;
}

.cc-wa-float:hover {
  transform: scale(1.14);
  box-shadow: 0 10px 26px rgba(254, 111, 115, 0.45);
}

/* Anillo de pulso expandiéndose hacia afuera */
.cc-wa-float::before,
.cc-wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(254, 111, 115, 0.4);
  animation: cc-wa-ring 3s var(--ease-out) infinite;
}

.cc-wa-float::after {
  animation-delay: 1.5s;
}

@keyframes cc-wa-ring {
  0%   { box-shadow: 0 0 0 0 rgba(254, 111, 115, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(254, 111, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 111, 115, 0); }
}

/* Tooltip "Hablemos" en hover */
.cc-wa-float__label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--cc-navy);
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(5, 11, 34, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              visibility var(--dur-fast);
}

.cc-wa-float:hover .cc-wa-float__label,
.cc-wa-float:focus-visible .cc-wa-float__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 575.98px) {
  .cc-wa-float {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .cc-wa-float i {
    font-size: 20px;
  }
}
