:root{
  --black:#0a0a0a;
  --black-2:#111;
  --red:#e11d2e;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --header-height:84px;
  --gradient-red: linear-gradient(135deg, #e11d2e, #c41e3a);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  background:var(--black);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
  cursor: default; /* ARREGLADO: cursor visible */
}

/* Layout */
.container{ width:min(1200px, 92%); margin-inline:auto; }

/* =================== HEADER MEJORADO =================== */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.85));
  border-bottom:1px solid #1f1f1f;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:var(--header-height);
  padding: 0 2rem;
}

/* Marca mejorada */
.brand{
  display:flex; align-items:center; gap:.75rem;
  text-decoration:none; color:var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-logo{ 
  width:100px; height:100px; object-fit:contain;
  filter: drop-shadow(0 0 10px rgba(225, 29, 46, 0.3));
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 15px rgba(225, 29, 46, 0.6));
}

.brand-text{
  font-weight:700; letter-spacing:.5px;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navegación mejorada */
.nav{ display:flex; }
.nav-list{
  display:flex; align-items:center; gap:1.2rem;
  list-style:none; margin:0; padding:0;
}
.nav-link{
  position:relative;
  padding:.9rem 1rem;
  text-decoration:none; color:var(--text);
  font-weight:700; text-transform:uppercase; font-size:.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.nav-link:hover{ 
  color:#fff; 
  text-shadow: 0 0 10px rgba(225, 29, 46, 0.5);
}
.nav-link::after{
  content:""; position:absolute; left:1rem; right:1rem; bottom:.5rem;
  height:3px; background:transparent; transform:scaleX(0);
  transform-origin:left; transition:.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover::after, .nav-link.is-active::after{
  background:var(--gradient-red); transform:scaleX(1);
  box-shadow: 0 0 8px rgba(225, 29, 46, 0.6);
}
.nav-link.cta{
  border:2px solid transparent;
  background: var(--gradient-red);
  background-clip: padding-box;
  border-radius:999px;
  padding:.7rem 1rem;
  position: relative;
  cursor: pointer;
}
.nav-link.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-red);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.nav-link.cta:hover{ 
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.4);
}

/* Pills mejoradas */
.pill{
  font-size:.7rem; font-weight:800; text-transform:uppercase;
  padding:.15rem .45rem; border-radius:999px;
  background:var(--black-2); color:var(--muted); border:1px solid #222;
  transition: all 0.3s ease;
}
.pill-hot{ 
  background:rgba(225,29,46,.15); color:#fff; border-color:rgba(225,29,46,.5);
  box-shadow: 0 0 10px rgba(225, 29, 46, 0.3);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(225, 29, 46, 0.3); }
  50% { box-shadow: 0 0 15px rgba(225, 29, 46, 0.6); }
}

/* Mobile Nav */
.nav-toggle{
  display:none; width:44px; height:44px;
  border:1px solid #222; background:#0c0c0c; border-radius:10px;
  cursor:pointer; align-items:center; justify-content:center;
  transition: all 0.3s ease;
}
.nav-toggle:hover {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(225, 29, 46, 0.3);
}
.nav-toggle .bar{ display:block; width:22px; height:2px; background:#ddd; margin:3px 0; transition: all 0.3s ease; }

@media (max-width: 920px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position:fixed; top:var(--header-height); left:0; right:0;
    display:none; background:rgba(0,0,0,.98);
    backdrop-filter: blur(10px);
  }
  .nav.open{ display:block; }
  .nav-list{ flex-direction:column; align-items:stretch; padding:1rem; }
  .nav-link{ padding:1rem; font-size:1rem; }
}

/* =================== HERO MEJORADO =================== */
.hero{
  position:relative; height:100vh; width:100%; overflow:hidden;
}
.hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center; z-index:1;
}
.hero-fallback{
  position:absolute; inset:0; z-index:0;
  background-image:url('img/adri/adri-tatuando-pro.jpeg');
  background-size:cover; background-position:center;
}

.hero-overlay{
  position:relative; z-index:2; height:100%;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  text-align:left; color:#fff;
  padding-left: calc((100vw - min(1200px, 92vw)) / 2);
  padding-right: 1rem;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(225,29,46,0.1) 100%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,0.6) 0%, transparent 70%);
}

/* Partículas de fondo opcional */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(225,29,46,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(225,29,46,0.2), transparent);
  background-repeat: repeat;
  background-size: 120px 100px;
  z-index: 1;
  opacity: 0.3;
  animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-100px) translateX(50px); }
}

/* Animaciones Hero mejoradas */
.hero-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
  text-shadow: 
    0 0 20px rgba(0,0,0,.8),
    0 0 40px rgba(225,29,46,.3);
  text-align: left;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: .8rem;
  color: #e2e1e1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
  max-width: 700px;
  line-height: 1.6;
}

/* Estados finales */
.hero-overlay.play .hero-kicker {
  opacity: 1;
  transform: translateX(0);
}

.hero-overlay.play .hero-title {
  opacity: 1;
  transform: translateX(0);
}

.hero-overlay.play .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker .swap-word {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.swap-word{ display:inline-block; }
.swap-animate{ animation: swapFade 480ms ease both; }
@keyframes swapFade{
  0%{ opacity:0; transform: translateY(6px) rotateX(90deg); }
  100%{ opacity:1; transform: translateY(0) rotateX(0deg); }
}

/* =================== SECCIONES MEJORADAS =================== */
.section{
  min-height:60vh; display:flex; align-items:center; justify-content:center;
  padding:6rem 0; 
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,29,46,0.3), transparent);
}

.section h2{ 
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size:3rem; 
  text-align: center;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

/* =================== SOBRE MÍ MEJORADO =================== */
.sobre-mi {
  padding: 120px 5%;
  background: 
    radial-gradient(ellipse at top, rgba(225,29,46,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  color: #fff;
  position: relative;
}

.sobre-mi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e11d2e" fill-opacity="0.02"><rect width="1" height="1"/></g></g></svg>');
  opacity: 0.5;
}

.sobre-mi-contenido {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.sobre-mi-img {
  position: relative;
}

.sobre-mi-img::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--gradient-red);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.sobre-mi-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.sobre-mi-img:hover img {
  transform: scale(1.02) rotateY(5deg);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.8),
    0 0 0 1px rgba(225,29,46,0.3);
}

.sobre-mi-texto {
  flex: 1;
  max-width: 600px;
}

.sobre-mi-texto h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.sobre-mi-texto p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.sobre-mi-texto strong {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* =================== TATUAJES MEJORADO =================== */
.tatuajes {
  padding: 120px 5%;
  background: 
    linear-gradient(45deg, #111 0%, #0f0f0f 50%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
}

.tatuajes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(225,29,46,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(225,29,46,0.05) 0%, transparent 50%);
}

.tatuajes h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.tatuajes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.tatuaje {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #1a1a1a;
}

.tatuaje::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-red);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  mix-blend-mode: overlay;
}

.tatuaje:hover::before {
  opacity: 0.1;
}

.tatuaje img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: contrast(1.1) saturate(0.9);
}

.tatuaje:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.8),
    0 0 0 1px rgba(225,29,46,0.3);
}

.tatuaje:hover img {
  transform: scale(1.1);
  filter: contrast(1.2) saturate(1.1);
}

/* =================== FLASH MEJORADO =================== */
.flash {
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.flash h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.flash p {
  margin-bottom: 50px;
  color: #ccc;
  font-size: 1.1rem;
}

.flash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* =================== FLASH ITEMS CON ENLACES MEJORADO =================== */
.flash-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer; /* Cursor visible */
}

.flash-item {
  background: 
    linear-gradient(145deg, #1a1a1a, #111);
  border: 2px solid rgba(255,255,255,0.05); /* Borde más grueso para mejor efecto */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}

/* NUEVO: Efectos de hover mejorados */
.flash-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 3;
}

.flash-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at center, rgba(225,29,46,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

/* Efectos al hacer hover */
.flash-link:hover .flash-item {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--red); /* Borde rojito */
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.8),
    0 0 0 3px rgba(225,29,46,0.4), /* Glow rojito */
    0 0 30px rgba(225,29,46,0.3);
  background: 
    linear-gradient(145deg, #2a1a1a, #1a1111); /* Fondo ligeramente más claro */
}

.flash-link:hover .flash-item::before {
  transform: scaleX(1);
}

.flash-link:hover .flash-item::after {
  opacity: 1;
}

.flash-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
  filter: contrast(1.1);
  position: relative;
  z-index: 2;
}

.flash-link:hover .flash-item img {
  transform: scale(1.08);
  filter: contrast(1.3) saturate(1.2) brightness(1.1);
}

.flash-item h4 {
  font-size: 1.4rem;
  margin: 20px 0 8px;
  font-weight: 700;
  color: #fff;
  padding: 0 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.flash-link:hover .flash-item h4 {
  color: var(--red);
  text-shadow: 0 0 15px rgba(225,29,46,0.6);
  transform: translateY(-3px);
}

.flash-item .precio {
  margin-bottom: 20px;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 0 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.flash-link:hover .flash-item .precio {
  text-shadow: 0 0 10px rgba(225,29,46,0.6);
  transform: translateY(-2px);
  filter: brightness(1.2);
}

/* Efecto adicional de pulsación al hacer click */
.flash-item:active {
  transform: translateY(-8px) scale(1.02);
  transition: all 0.1s ease;
}

/* Animación de pulso sutil */
@keyframes flash-pulse {
  0%, 100% { 
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  50% { 
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }
}

.flash-item {
  animation: flash-pulse 3s ease-in-out infinite;
}

.flash-link:hover .flash-item {
  animation: none; /* Desactivar animación al hacer hover */
}

/* =================== ESTUDIO MEJORADO =================== */
.estudio{
  position: relative;
  min-height: 100vh;
  background: url('img/estudio/estudio.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.estudio::before{
  content:"";
  position:absolute; inset:0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,.6) 0%, rgba(225,29,46,.1) 50%, rgba(0,0,0,.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.4) 70%);
}

.estudio-overlay{ 
  position: relative; z-index: 2; 
  padding: 120px 0 80px; 
}

.estudio-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.estudio-card{
  background: 
    linear-gradient(145deg, rgba(0,0,0,.7), rgba(20,20,20,.6));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 
    0 15px 35px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: all 0.4s ease;
}

.estudio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225,29,46,0.3);
  box-shadow: 
    0 25px 50px rgba(0,0,0,.8),
    0 0 0 1px rgba(225,29,46,0.2);
}

.estudio-card h2{ 
  font-size: 2.5rem; 
  margin-bottom: 20px; 
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.estudio-dir{ margin-bottom: 20px; color:#eaeaea; font-size: 1.1rem; }

.estudio-horario{ margin-bottom: 25px; }
.estudio-horario strong{ display:block; margin-bottom: 10px; color: #fff; font-size: 1.1rem; }
.estudio-horario ul{ list-style: none; padding: 0; margin: 0 0 10px; }
.estudio-horario li{ 
  margin: 6px 0; 
  padding-left: 20px;
  position: relative;
}
.estudio-horario li::before {
  content: '●';
  color: var(--red);
  position: absolute;
  left: 0;
}

.estudio-cta{ display:flex; gap:15px; flex-wrap:wrap; margin-top:20px; }
.btn{
  display:inline-block; text-decoration:none;
  background: var(--gradient-red);
  color:#fff; padding: 12px 24px;
  border-radius: 50px; font-weight: 800; 
  text-transform: uppercase; letter-spacing:.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(225,29,46,0.4);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::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: left 0.6s ease;
}

.btn:hover::before { left: 100%; }

.btn:hover{ 
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(225,29,46,0.6);
}

.btn-alt{ 
  background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
  border:1px solid rgba(225,29,46,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.btn-alt:hover {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.estudio-mapa{
  background: 
    linear-gradient(145deg, rgba(0,0,0,.7), rgba(20,20,20,.6));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: 
    0 15px 35px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: all 0.4s ease;
}

.estudio-mapa:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0,0,0,.8),
    0 0 0 1px rgba(225,29,46,0.2);
}

.estudio-mapa iframe{
  display:block; width:100%; height:450px; border:0;
  filter: contrast(1.1) saturate(0.8);
  transition: filter 0.4s ease;
}

.estudio-mapa:hover iframe {
  filter: contrast(1.2) saturate(1);
}

/* Reviews mejoradas */
.estudio-reviews{ margin-top: 60px; }
.estudio-reviews h3{ 
  text-align:center; 
  margin-bottom:40px; 
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
}

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap:25px;
}

.review{
  background: 
    linear-gradient(145deg, rgba(0,0,0,.7), rgba(20,20,20,.6));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 25px;
  color: #e8e8e8;
  box-shadow: 
    0 10px 25px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: all 0.4s ease;
  position: relative;
}

.review::before {
  content: '"';
  font-size: 4rem;
  color: rgba(225,29,46,0.3);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.review:hover {
  transform: translateY(-5px);
  border-color: rgba(225,29,46,0.2);
  box-shadow: 
    0 15px 35px rgba(0,0,0,.7),
    0 0 0 1px rgba(225,29,46,0.1);
}

.review-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-bottom:15px;
  position: relative;
  z-index: 2;
}
.review-name{
  font-weight:800;
  letter-spacing:.3px;
  color: #fff;
}

.review-stars{
  display:inline-flex;
  gap:4px;
}
.review-stars .star{
  width:20px; height:20px; 
  fill:#ffcc33;
  filter: drop-shadow(0 0 3px rgba(255,204,51,.4));
  transition: all 0.3s ease;
}

.review:hover .review-stars .star {
  filter: drop-shadow(0 0 6px rgba(255,204,51,.6));
}

.review p {
  position: relative;
  z-index: 2;
  line-height: 1.6;
  margin: 0;
}

.btn-outline{
  display:inline-block; 
  margin:30px auto 0; 
  padding:12px 24px;
  border:2px solid rgba(225,29,46,0.5); 
  color:#eee; 
  text-decoration:none; 
  border-radius:50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-red);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover { 
  color:#fff; 
  border-color: var(--red);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(225,29,46,0.4);
}

@media (max-width: 980px){
  .estudio-grid{ grid-template-columns: 1fr; }
  .estudio-mapa iframe{ height: 320px; }
  .reviews-grid{ grid-template-columns: 1fr; }
}

/* =================== CONTACTO MEJORADO =================== */
.contacto {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #111 50%, #0f0f0f 75%, #0a0a0a 100%),
    radial-gradient(ellipse at 30% 20%, rgba(225,29,46,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(225,29,46,0.03) 0%, transparent 50%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e11d2e" fill-opacity="0.03"><circle cx="40" cy="40" r="1"/></g></g></svg>');
  z-index: 1;
  opacity: 0.4;
}

.contacto .container {
  position: relative;
  z-index: 2;
}

.contacto h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 800;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.contacto h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-red);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(225,29,46,0.5);
}

.contacto-sub {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 70px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

.contacto-item {
  background: 
    linear-gradient(145deg, rgba(0,0,0,0.5), rgba(30,30,30,0.3));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 35px;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contacto-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-red);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contacto-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(225,29,46,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: -1;
}

.contacto-item:hover::before {
  transform: translateX(100%);
}

.contacto-item:hover::after {
  width: 300px;
  height: 300px;
}

.contacto-item:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(225, 29, 46, 0.4);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.6),
    0 0 0 2px rgba(225,29,46,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.contacto-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contacto-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
}

.contacto-item:hover .contacto-icon::before {
  opacity: 0.6;
}

.contacto-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  position: relative;
}

/* Colores específicos mejorados */
.whatsapp-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.contacto-item:hover .whatsapp-icon {
  transform: rotate(-15deg) scale(1.15);
  box-shadow: 
    0 15px 40px rgba(37, 211, 102, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.instagram-icon {
  background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #C13584 100%);
  box-shadow: 
    0 8px 25px rgba(228, 64, 95, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.contacto-item:hover .instagram-icon {
  transform: rotate(15deg) scale(1.15);
  box-shadow: 
    0 15px 40px rgba(228, 64, 95, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.gmail-icon {
  background: linear-gradient(135deg, #EA4335 0%, #34A853 50%, #FBBC05 100%);
  box-shadow: 
    0 8px 25px rgba(234, 67, 53, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.contacto-item:hover .gmail-icon {
  transform: rotate(-10deg) scale(1.15);
  box-shadow: 
    0 15px 40px rgba(234, 67, 53, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.contacto-item h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.contacto-item p {
  margin-bottom: 20px;
  color: #bbb;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.contacto-item a {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}

.contacto-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.contacto-item a:hover::before {
  left: 100%;
}

.contacto-item a:hover {
  color: var(--red);
  background: rgba(225, 29, 46, 0.1);
  border-color: rgba(225, 29, 46, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225,29,46,0.3);
  text-shadow: 0 0 10px rgba(225,29,46,0.5);
}

/* CTA Principal mejorada */
.contacto-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: 
    linear-gradient(145deg, rgba(0,0,0,0.4), rgba(30,30,30,0.2));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contacto-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(225,29,46,0.1) 0%, transparent 50%);
  z-index: 1;
}

.contacto-cta > * {
  position: relative;
  z-index: 2;
}

.contacto-cta p {
  font-size: 1.5rem;
  margin-bottom: 35px;
  color: #eee;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-cta-principal {
  display: inline-block;
  background: var(--gradient-red);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 25px rgba(225, 29, 46, 0.5),
    0 0 0 0 rgba(225, 29, 46, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  cursor: pointer;
}

.btn-cta-principal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s ease;
}

.btn-cta-principal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-cta-principal:hover::before {
  left: 100%;
}

.btn-cta-principal:hover::after {
  opacity: 1;
}

.btn-cta-principal:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(225, 29, 46, 0.7),
    0 0 0 6px rgba(225, 29, 46, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #ff1744, var(--red));
}

.btn-cta-principal:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

/* =================== SCROLL SMOOTH & LOADING =================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =================== RESPONSIVE MEJORADO =================== */
@media (max-width:768px){
  .hero{ height:100svh; }
  .hero-overlay{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-kicker {
    font-size: 1.6rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section h2 {
    font-size: 2.5rem;
  }
  
  .sobre-mi-contenido {
    gap: 40px;
  }
  
  .sobre-mi-texto h2 {
    font-size: 2.8rem;
  }
  
  .contacto h2 {
    font-size: 2.5rem;
  }
  
  .contacto-sub {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }
  
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .contacto-item {
    padding: 35px 25px;
  }
  
  .contacto-icon {
    width: 70px;
    height: 70px;
  }
  
  .contacto-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .btn-cta-principal {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .contacto-cta {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1rem;
  }
  
  .brand-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-kicker {
    font-size: 1.4rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .contacto-grid {
    grid-template-columns: 1fr;
  }
  
  .contacto-item {
    padding: 25px 20px;
  }
}