:root {
  --bg: #070707;
  --bg-soft: #111111;
  --card: rgba(19, 19, 22, 0.68);
  --card-border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #cfcfd6;
  --soft: #8f9099;
  --brand-red: #ff3939;
  --brand-red-dark: #b80f16;
  --whatsapp: #19c767;
  --whatsapp-dark: #0b8f46;
  --instagram: #ff4d93;
  --instagram-dark: #b92d72;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius-xl: 52px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 57, 57, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 76%, rgba(255, 77, 147, 0.14), transparent 24rem),
    linear-gradient(145deg, #030303 0%, #121214 48%, #090909 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 56px);
  display: grid;
  place-items: center;
}

.profile-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    var(--card);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  animation: cardIn 800ms var(--ease) both;
}

.brand-glow {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
}

.brand-glow-one {
  top: -170px;
  right: 12%;
  background: rgba(255, 57, 57, 0.2);
}

.brand-glow-two {
  bottom: -190px;
  left: 8%;
  background: rgba(255, 255, 255, 0.08);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.profile-visual {
  display: grid;
  place-items: center;
}

.profile-ring {
  width: clamp(168px, 22vw, 250px);
  aspect-ratio: 1;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(#171719, #171719) padding-box,
    linear-gradient(140deg, var(--brand-red), rgba(255, 255, 255, 0.86), #111111) border-box;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.45),
    0 0 0 10px rgba(255, 255, 255, 0.035);
  animation: floatSoft 5s ease-in-out infinite;
}

.profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  background: #ffffff;
}

.profile-content {
  min-width: 0;
}

.eyebrow,
.slide-kicker {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.bio {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.45;
}

.bio p {
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-width: min(100%, 178px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    filter 220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.12);
  outline: none;
}

.button-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.button-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 18px 38px rgba(25, 199, 103, 0.22);
}

.button-instagram {
  background: linear-gradient(135deg, var(--instagram), var(--instagram-dark));
  box-shadow: 0 18px 38px rgba(255, 77, 147, 0.2);
}

.showcase {
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 7vw, 78px);
}

.section-heading {
  width: min(100%, 620px);
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
}

.carousel-window {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 520ms var(--ease);
  will-change: transform;
}

.service-slide {
  min-width: 100%;
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 57, 57, 0.18), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.slide-media {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.22), transparent 12rem),
    linear-gradient(145deg, var(--brand-red), var(--brand-red-dark) 58%, #111111);
}

.slide-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 900;
}

.slide-icon {
  width: clamp(118px, 20vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 12px solid #070707;
  border-radius: 32px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.28), transparent 44%),
    rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.slide-icon svg {
  width: 68%;
  height: 68%;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.slide-icon .icon-fill {
  fill: currentColor;
}

.slide-icon .icon-cut {
  fill: #171719;
  opacity: 1;
}

.slide-image {
  width: min(100%, 360px);
  height: min(76%, 300px);
  display: block;
  object-fit: cover;
  border: 10px solid #070707;
  border-radius: 28px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.slide-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.slide-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1;
}

.slide-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.carousel-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.carousel-arrow span {
  line-height: 1;
  font-size: 2.4rem;
  transform: translateY(-2px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgba(255, 57, 57, 0.72);
  background: rgba(255, 57, 57, 0.22);
  outline: none;
  transform: scale(1.06);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 220ms var(--ease),
    background 220ms var(--ease);
}

.carousel-dot.is-active {
  width: 32px;
  background: var(--brand-red);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 820px) {
  .profile-card {
    border-radius: 38px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-content {
    display: grid;
    justify-items: center;
  }

  .actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    flex: 1 1 180px;
  }

  .carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-arrow span {
    font-size: 2rem;
  }

  .service-slide {
    min-height: 470px;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .slide-copy {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px;
  }

  .profile-card {
    padding: 24px 16px 28px;
    border-radius: 30px;
  }

  .profile-ring {
    width: 156px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .bio {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel-window {
    order: 1;
  }

  .carousel-arrow {
    position: absolute;
    z-index: 2;
    top: 184px;
    background: rgba(0, 0, 0, 0.42);
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .service-slide {
    min-height: 500px;
    border-radius: 26px;
    grid-template-rows: 210px 1fr;
  }

  .slide-media {
    padding: 24px;
  }

  .slide-icon {
    border-width: 9px;
    border-radius: 26px;
  }

  .slide-copy {
    padding: 28px 22px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
