:root {
  --orange: #f04a23;
  --orange-dark: #d93613;
  --yellow: #ffd21c;
  --blue: #087fc1;
  --pink: #ec1f76;
  --ink: #1d1b1b;
  --muted: #6d6765;
  --paper: #fffaf7;
  --white: #ffffff;
  --border: rgba(33, 27, 25, 0.1);
  --shadow: 0 24px 70px rgba(70, 31, 20, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  position: relative;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(240, 74, 35, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 74, 35, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  width: 410px;
  height: 410px;
  right: -120px;
  top: -150px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 210, 28, 0.55), rgba(240, 74, 35, 0.12) 70%);
}

.orb-two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(8, 127, 193, 0.2), transparent 72%);
  animation-delay: -3s;
}

.orb-three {
  width: 230px;
  height: 230px;
  right: 32%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(236, 31, 118, 0.16), transparent 70%);
  animation-delay: -5s;
}

.site-header {
  padding: 22px 6vw 0;
}

.header-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(390px, 58vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(57, 31, 24, 0.08));
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(58, 34, 25, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.header-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(58, 34, 25, 0.13);
}

.phone-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7858);
}

.header-call small,
.header-call strong {
  display: block;
}

.header-call small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.header-call strong {
  font-size: 14px;
  letter-spacing: .2px;
}

main {
  padding: 34px 6vw 36px;
}

.hero {
  width: min(1180px, 100%);
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

h1 {
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 800;
}

h1 em {
  color: var(--orange);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: -7px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 18'%3E%3Cpath d='M3 12 C55 3, 115 16, 247 5' fill='none' stroke='%23ffd21c' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  z-index: -1;
}

.intro {
  max-width: 630px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.status-card {
  max-width: 620px;
  margin-top: 28px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(240, 74, 35, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 15px 40px rgba(60, 30, 20, .07);
  backdrop-filter: blur(12px);
}

.status-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--orange);
  font-size: 25px;
  background: rgba(240, 74, 35, .1);
  animation: pulse 2s ease-in-out infinite;
}

.status-card strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.status-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff704c);
  box-shadow: 0 16px 35px rgba(240, 74, 35, .28);
}

.button-primary span {
  font-size: 11px;
  opacity: .82;
  line-height: 1;
}

.button-primary b {
  font-size: 15px;
  line-height: 1.1;
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.8);
  box-shadow: 0 12px 30px rgba(50, 29, 22, .07);
}

.button-secondary:hover {
  background: var(--white);
}

.services {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.services span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #5d5654;
  background: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 500;
}

.visual {
  min-height: 540px;
  position: relative;
  perspective: 1000px;
}

.creative-card {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease-out;
}

.card-one {
  width: 250px;
  height: 330px;
  left: 0;
  top: 100px;
  padding: 26px;
  transform: rotate(-9deg);
  background: #151313;
}

.card-two {
  width: 250px;
  height: 330px;
  right: 2px;
  top: 22px;
  padding: 26px;
  transform: rotate(8deg);
  background: #fff;
}

.card-three {
  width: 230px;
  height: 280px;
  right: 82px;
  bottom: 12px;
  padding: 23px;
  transform: rotate(-4deg);
  background: linear-gradient(145deg, var(--orange), #ff7653);
}

.card-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
}

.card-one .card-label { color: var(--white); }
.card-two .card-label { color: var(--ink); }
.card-three .card-label { color: rgba(255,255,255,.72); }

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-orange {
  width: 180px;
  height: 180px;
  right: -40px;
  top: 50px;
  background: var(--orange);
}

.shape-pink {
  width: 105px;
  height: 105px;
  left: -18px;
  bottom: 58px;
  background: var(--pink);
}

.line {
  height: 7px;
  position: relative;
  margin-top: 14px;
  border-radius: 99px;
  background: rgba(255,255,255,.7);
}

.card-one .line { top: 205px; }
.card-two .line { top: 180px; background: rgba(29,27,27,.15); }
.line.long { width: 82%; }
.line.medium { width: 62%; }
.line.short { width: 42%; }

.print-wheel {
  width: 145px;
  height: 145px;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 9px white, 0 12px 25px rgba(0,0,0,.1);
}

.print-wheel span {
  width: 50%;
  height: 50%;
  position: absolute;
}

.print-wheel span:nth-child(1) { left: 0; top: 0; background: var(--blue); }
.print-wheel span:nth-child(2) { right: 0; top: 0; background: var(--yellow); }
.print-wheel span:nth-child(3) { left: 0; bottom: 0; background: var(--pink); }
.print-wheel span:nth-child(4) { right: 0; bottom: 0; background: var(--orange); }

.poster-title {
  margin-top: 28px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  line-height: .88;
  letter-spacing: -3px;
  font-weight: 800;
}

.floating-dot,
.floating-cross {
  position: absolute;
  z-index: 4;
}

.dot-one {
  width: 32px;
  height: 32px;
  top: 50px;
  left: -8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 20px rgba(255,210,28,.25);
}

.dot-two {
  width: 19px;
  height: 19px;
  right: -15px;
  bottom: 100px;
  border-radius: 50%;
  background: var(--blue);
}

.floating-cross {
  left: 46%;
  top: 18px;
  color: var(--pink);
  font: 800 42px/1 "Montserrat", sans-serif;
  transform: rotate(12deg);
}

footer {
  width: min(1180px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7a716f;
  font-size: 11px;
  border-top: 1px solid var(--border);
}

.footer-note {
  text-align: right;
}

.floating-whatsapp {
  width: 54px;
  height: 54px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 50%;
  color: white;
  background: #25d366;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 13px 30px rgba(37, 211, 102, .3);
  animation: breathe 2.2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 18px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-content {
    text-align: center;
  }

  .eyebrow,
  .actions,
  .services {
    justify-content: center;
  }

  .intro,
  .status-card {
    margin-left: auto;
    margin-right: auto;
  }

  .visual {
    width: min(520px, 100%);
    margin: -5px auto 0;
  }
}

@media (max-width: 680px) {
  .site-header { padding: 16px 20px 0; }
  main { padding: 28px 20px 24px; }

  .header-wrap {
    align-items: flex-start;
  }

  .brand { width: min(280px, 62vw); }
  .header-call { padding: 8px; border-radius: 14px; }
  .header-call div,
  .header-call span:last-child { display: none; }
  .phone-icon { width: 39px; height: 39px; }

  h1 {
    font-size: clamp(43px, 14vw, 66px);
    letter-spacing: -2.8px;
  }

  .intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .status-card {
    text-align: left;
    align-items: flex-start;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-primary {
    align-items: center;
  }

  .visual {
    min-height: 430px;
    transform: scale(.82);
    transform-origin: center top;
    margin-bottom: -70px;
  }

  footer {
    width: calc(100% - 40px);
    flex-direction: column;
    text-align: center;
  }

  .footer-note { text-align: center; }
}

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