* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.09), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at 50% 95%, rgba(255,255,255,0.045), transparent 30%),
    #000;
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: 100%;
  padding: 22px 7%;
  position: fixed;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.4));
}

.logo-box span {
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 14px;
  color: #f5f5f5;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #a9a9a9;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  transition: 0.3s;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.85);
}

.hero {
  min-height: 100vh;
  padding: 150px 7% 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  background: #000;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 40px;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
}

.eyebrow {
  color: #d7d7d7;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1,
h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 0.9;
}

h1 {
  font-size: clamp(68px, 10vw, 150px);
  max-width: 900px;
  background: linear-gradient(120deg, #6f6f6f 0%, #ffffff 22%, #bdbdbd 45%, #f7f7f7 60%, #707070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,255,255,0.20));
}

h1 span {
  display: block;
}

.hero-description {
  max-width: 620px;
  margin: 32px 0;
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  transition: 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #9c9c9c 45%, #f5f5f5);
  color: #000;
  box-shadow: 0 0 35px rgba(255,255,255,0.23);
}

.btn-secondary {
  color: #fff;
  background: #000;
  border: 1px solid rgba(255,255,255,0.28);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(255,255,255,0.35);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chrome-ring {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 80px rgba(255,255,255,0.13),
    inset 0 0 60px rgba(255,255,255,0.08);
  animation: spin 16s linear infinite;
}

.chrome-ring::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.22);
}

.hero-logo-card {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 70px rgba(255,255,255,0.14),
    inset 0 0 35px rgba(255,255,255,0.05);
  z-index: 2;
}

.hero-logo-card img {
  width: 78%;
  filter: drop-shadow(0 0 28px rgba(255,255,255,0.5));
}

.styles-section,
.process-section,
.contact-section {
  background: #000;
  padding: 110px 7%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-heading h2,
.contact-section h2 {
  font-size: clamp(52px, 8vw, 110px);
  background: linear-gradient(120deg, #696969, #ffffff, #bababa, #f8f8f8, #686868);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  color: #aaa;
  line-height: 1.7;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.style-card {
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.13);
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.78);
  transition: 0.5s ease;
}

.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 8%, rgba(0,0,0,0.72) 38%, transparent 75%);
}

.style-card:hover img {
  transform: scale(1.08);
  filter: grayscale(20%) contrast(1.1) brightness(0.9);
}

.style-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.style-info span,
.process-card span {
  display: block;
  color: #f1f1f1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.style-info h3,
.process-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 8px;
}

.style-info p,
.process-card p {
  color: #bdbdbd;
  line-height: 1.6;
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  min-height: 280px;
  padding: 34px;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: inset 0 0 35px rgba(255,255,255,0.035);
  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 45px rgba(255,255,255,0.10);
}

.contact-section {
  text-align: center;
  padding-bottom: 120px;
}

.contact-section p {
  color: #b5b5b5;
  margin-bottom: 32px;
}

.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 70px 7% 35px;
  text-align: center;
}

.footer-brand img {
  width: 90px;
  filter: drop-shadow(0 0 24px rgba(255,255,255,0.42));
  margin-bottom: 18px;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #777, #fff, #aaa, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: #999;
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.footer-links a {
  color: #aaa;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.footer-links a:hover {
  color: #fff;
}

.copy {
  color: #666;
  font-size: 13px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header {
    position: absolute;
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 190px;
  }

  .style-grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    height: 430px;
  }

  .chrome-ring {
    width: 310px;
    height: 310px;
  }

  .hero-logo-card {
    width: 260px;
    height: 260px;
  }
}
/* PORTAFOLIO REAL DE TATUAJES */

.tattoo-portfolio-section {
  background: #000;
  padding: 100px 7%;
}

.tattoo-portfolio-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tattoo-portfolio-card {
  height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.13);
  position: relative;
}

.tattoo-portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.45s ease;
}

.tattoo-portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 65%);
  pointer-events: none;
}

.tattoo-portfolio-card:hover img {
  transform: scale(1.07);
  
}

.tattoo-portfolio-card:hover {
  box-shadow: 0 0 45px rgba(255,255,255,0.12);
}

@media (max-width: 950px) {
  .tattoo-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tattoo-portfolio-card {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .tattoo-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .tattoo-portfolio-card {
    height: 300px;
  }
}
.powered-by {
    display: inline-block;
    margin: 35px 0 15px;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 900;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    box-shadow:
        0 0 20px rgba(255,255,255,.08),
        inset 0 0 20px rgba(255,255,255,.04);

    transition: all .35s ease;
}

.powered-by:hover {
    color: #000;

    background: linear-gradient(
        135deg,
        #ffffff,
        #d8d8d8
    );

    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(255,255,255,.35),
        0 0 60px rgba(255,255,255,.15);
}