/* ============================================================
   M'arte Studio — BASE.CSS
   Variables globales, reset, nav, footer, utilidades
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Pacifico&family=Space+Grotesk:wght@300;400;500;600&display=swap');
/* ============================================================
   M'arte Studio — BASE.CSS
   Variables globales, reset, nav, footer, utilidades
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Pacifico&family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --c1: #070A29;
  --c2: #0D1045;
  --c3: #440BD4;
  --c4: #D33BFF;
  --c5: #FF2079;
  --c6: #FA8585;
  --c7: #ff8400;
  --white: #ffffff;
  --glow: rgba(255,255,255,0.9);
  --card-bg: rgba(255,255,255,0.03);
  --border: rgba(255,32,121,0.3);

  --font-display: 'Rajdhani', sans-serif;
  --font-cursive: 'Pacifico', cursive;
  --font-body: 'Space Grotesk', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-glow: 0 0 20px rgba(255,32,121,0.4);
  --shadow-glow-lg: 0 0 40px rgba(255,32,121,0.3);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--c1);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

body::-webkit-scrollbar { width: 4px; }
body::-webkit-scrollbar-track { background: var(--c1); }
body::-webkit-scrollbar-thumb { background: var(--c5); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== NAVEGACIÓN ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(7,10,41,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c5);
  text-shadow: 0 0 20px var(--c5);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c5);
  box-shadow: 0 0 12px var(--c5);
}
.logo-cursive { font-family: var(--font-cursive); font-size: 0.9em; }
.logo-tilde { color: var(--white); text-shadow: 0 0 10px var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c5), var(--c4));
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* CTA nav button */
.nav-cta {
  background: linear-gradient(135deg, var(--c5), var(--c4));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(255,32,121,0.5);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255,32,121,0.7) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--c5), var(--c4));
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* Mobile nav */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,10,41,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.4rem;
    padding: 14px 30px;
  }
  .nav-cta { margin-top: 10px; }
}

/* ===== PAGE PADDING (compensa header fixed) ===== */
main { padding-top: 80px; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(to top, #03040f, var(--c1));
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c5), var(--c4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--c5);
  color: var(--c5);
  box-shadow: 0 0 15px rgba(255,32,121,0.4);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--c5); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  footer { padding: 40px 24px 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== BOTONES GLOBALES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c5) 0%, var(--c4) 100%);
  color: var(--white);
  box-shadow: 0 0 25px rgba(255,32,121,0.5);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255,32,121,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--c5);
  color: var(--c5);
  box-shadow: 0 0 20px rgba(255,32,121,0.3);
}

/* ===== SECCIÓN BASE ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-sm { padding: 60px 40px; max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c5);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--c5), var(--c4));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title .accent { color: var(--c5); text-shadow: 0 0 30px var(--c5); }

.section-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 16px;
}

/* ===== CARD BASE ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,32,121,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(255,32,121,0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* ===== NEON GLOW TEXT ===== */
.neon { color: var(--c5); text-shadow: 0 0 20px var(--c5), 0 0 40px rgba(255,32,121,0.5); }

/* ===== GRID UTILS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 24px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 50px 20px; }
}

/* ===== ANIMACIONES DE ENTRADA ===== */
/* Visible por defecto — la animación es un bonus progresivo con JS */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* JS añade esta clase al body para activar las animaciones */
body.js-animations .reveal {
  opacity: 0;
  transform: translateY(40px);
}
body.js-animations .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== DIVIDER GLITCH ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c5), var(--c4), transparent);
  margin: 60px 0;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--c5);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c5);
}

/* ===== COOKIE POPUP (shared) ===== */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: min(560px, 90vw);
  background: rgba(7,10,41,0.97);
  border: 1px solid var(--c5);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 28px;
  z-index: 2000;
  box-shadow: 0 0 40px rgba(255,32,121,0.2);
  animation: slideUpCookie 0.5s ease forwards;
}
@keyframes slideUpCookie {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-popup h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--c5); margin-bottom: 12px; }
.cookie-popup p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.cookie-popup a  { color: var(--c5); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns button {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btns .c-accept { background: linear-gradient(135deg, var(--c5), var(--c4)); color: var(--white); }
.cookie-btns .c-reject { background: transparent; border: 1px solid var(--border); color: rgba(255,255,255,0.5); }
.cookie-btns .c-config { background: transparent; border: 1px solid var(--c5); color: var(--c5); }
.cookie-btns button:hover { transform: scale(1.04); box-shadow: 0 0 15px rgba(255,32,121,0.4); }

/* ===== PAGE HERO SHARED (usado en varias páginas) ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.ph-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}
.ph-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 24px 60px; min-height: auto; }
}

/* ============================================================
   M'arte Studio — HOME.CSS
   ============================================================ */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--c5), transparent);
  top: -100px; right: -150px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--c3), transparent);
  bottom: 0; left: -100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,32,121,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,32,121,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero text */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c5);
  box-shadow: 0 0 10px var(--c5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.9s 0.15s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.9s 0.25s ease both;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: fadeSlideUp 0.9s 0.35s ease both;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c5);
  text-shadow: 0 0 20px rgba(255,32,121,0.5);
}
.stat-l { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero visual */
.hero-img-wrap {
  position: relative;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}
.hero-img {
  width: 100%;
  border-radius: 30px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 50%, transparent 100%);
}
.hero-badge {
  position: absolute;
  background: rgba(7,10,41,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c5);
  box-shadow: 0 0 20px rgba(255,32,121,0.2);
}
.hero-badge--1 { top: 10%; left: -10%; animation: float1 6s ease-in-out infinite; }
.hero-badge--2 { top: 45%; right: -8%; animation: float2 7s ease-in-out infinite; }
.hero-badge--3 { bottom: 15%; left: -5%; animation: float1 5s ease-in-out infinite reverse; }

@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c5), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SERVICIOS PREVIEW ===== */
.services-preview { padding-top: 120px; }

.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
}
.sp-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c5), var(--c4));
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.sp-card:hover {
  border-color: rgba(255,32,121,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,32,121,0.15);
}
.sp-card:hover::before { transform: scaleX(1); }

.sp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,32,121,0.15), rgba(211,59,255,0.15));
  border: 1px solid rgba(255,32,121,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c5);
  margin-bottom: 20px;
  transition: var(--transition);
}
.sp-card:hover .sp-icon {
  background: linear-gradient(135deg, var(--c5), var(--c4));
  color: var(--white);
  box-shadow: 0 0 25px rgba(255,32,121,0.5);
  transform: scale(1.1);
}

.sp-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.sp-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.sp-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,32,121,0.1);
  color: var(--c5);
  font-size: 0.8rem;
  margin-top: 20px;
  transition: var(--transition);
}
.sp-card:hover .sp-arrow {
  background: var(--c5);
  color: var(--white);
  transform: translateX(4px);
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  position: relative;
  margin: 60px 0;
  overflow: hidden;
}
.at-bg { position: absolute; inset: 0; pointer-events: none; }
.at-orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,11,212,0.12), transparent);
  left: -200px; top: 50%;
  transform: translateY(-50%);
  filter: blur(60px);
}

.at-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.at-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.at-img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.at-img-frame:hover img { transform: scale(1.03); }

.at-img-deco {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(255,32,121,0.3), transparent) border-box;
  pointer-events: none;
}

.at-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.at-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.at-list li i { color: var(--c5); font-size: 1rem; }

/* ===== PORTFOLIO PREVIEW ===== */
.pp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.pp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px;
  gap: 16px;
}

.pp-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.pp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pp-item:hover img { transform: scale(1.06); }

.pp-item--large { grid-row: span 1; }

.pp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,10,41,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.pp-item:hover .pp-overlay { opacity: 1; }

.pp-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c5);
  background: rgba(255,32,121,0.15);
  border: 1px solid rgba(255,32,121,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  display: inline-block;
  width: fit-content;
}

.pp-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c5);
}
.pp-link:hover { gap: 10px; }

/* ===== PROCESO STRIP ===== */
.proceso-strip {
  background: linear-gradient(180deg, var(--c1), rgba(13,16,69,0.5), var(--c1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  margin: 60px 0;
}

.proceso-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.ps-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.ps-step:hover {
  border-color: rgba(255,32,121,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.ps-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c5);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.ps-step h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ps-step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.ps-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== HOME CTA ===== */
.home-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hcta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,32,121,0.08) 0%, transparent 70%);
}
.hcta-inner {
  text-align: center;
  max-width: 700px;
}
.hcta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sp-grid { grid-template-columns: 1fr 1fr; }
  .pp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; }
  .pp-item--large { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .at-inner { grid-template-columns: 1fr; gap: 40px; }
  .at-img-col { display: none; }
  .proceso-steps { flex-wrap: wrap; justify-content: center; }
  .ps-arrow { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 16px; }
  .sp-grid { grid-template-columns: 1fr; }
  .pp-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pp-item { height: 240px; }
  .pp-item--large { grid-column: auto; }
  .sp-header { flex-direction: column; align-items: flex-start; }
  .pp-header { flex-direction: column; align-items: flex-start; }
}

