/* ORBS */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  background: rgba(255, 0, 150, 0.15);
  animation: floatOrb 16s infinite ease-in-out;
}

.orb--lg {
  width: 350px;
  height: 350px;
  top: 20%;
  right: 20%;
}

.orb--sm {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-duration: 20s;
}

@keyframes floatOrb {
  0% { transform: translate(0,0) scale(1); }
  25% { transform: translate(30px,-40px) scale(1.2); }
  50% { transform: translate(-20px,20px) scale(0.9); }
  100% { transform: translate(0,0) scale(1); }
}

/* DOTS */

.dot {
  position: absolute;
  border-radius: 50%;
  background: #ff2e9a;
  animation: floatDot 5s infinite ease-in-out;
}

.dot--1 { width:8px;height:8px;top:20%;left:15%; }
.dot--2 { width:6px;height:6px;top:30%;right:20%;animation-delay:.5s; }
.dot--3 { width:5px;height:5px;bottom:30%;left:25%;animation-delay:1s; }
.dot--4 { width:10px;height:10px;bottom:25%;right:30%;animation-delay:.8s; }

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

/* BADGE */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.badge__pulse {
  width:8px;
  height:8px;
  border-radius: 50%;
  background: #ff2e9a;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  50% { opacity: .4; }
}

/* HEADLINE */

.hero__headline {
  max-width: 720px;
  margin: 0 auto;
}

.hero__headline h1 {
  font-size: clamp(1.9rem, 5.2vw, 3.55rem);
  line-height: 1.1;
  margin: 10px 0;
}

.highlight {
  position: relative;
  color: #ff2e9a;
}

.underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ff2e9a;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s ease forwards 1.2s;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* SUBTITLE */

.hero__subtitle {
  max-width: 700px;
  margin: 30px auto;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.55;
  opacity: .7;
}

/* BUTTON */

.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn {
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .3s ease;
}

.btn--primary {
  background: #ff2e9a;
  color: white;
  box-shadow: 0 0 40px rgba(255, 46, 154, 0.5);
}

.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 46, 154, 0.8);
}

.btn--whatsapp {
  background: linear-gradient(180deg, #25d366, #17b554);
  color: white;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.5);
}

.btn__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-link {
  opacity: .6;
  text-decoration: underline;
}

.hero__models-link {
  margin-left: 0;
}

@media (max-width: 900px) {
  .hero__headline {
    max-width: none;
  }

  .hero__headline h1 {
    font-size: clamp(1.75rem, 4.9vw, 3rem);
  }
}

/* STATS */

.stats {
  margin-top: 80px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.stats__item strong {
  display: block;
  font-size: 1.8rem;
  color: #ff2e9a;
}


.project-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all .5s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 0 40px rgba(255, 46, 166, 0.4);
}

.project-card:focus-visible {
  outline: 2px solid rgba(255, 46, 166, 0.9);
  outline-offset: 4px;
}

.project-card::after {
  content: "Clique para abrir";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .3s ease;
}

.project-card:hover::after,
.project-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.project-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card__content {
  padding: 24px;
}

.project-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.project-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.project-card__content p {
  font-size: .9rem;
  opacity: .7;
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-card__content p:last-child {
  margin-bottom: 0;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(12px);
}

.project-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22,22,28,0.96), rgba(12,12,16,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
  transform: translateY(14px) scale(.98);
  transition: transform .35s ease;
}

.project-modal.is-open .project-modal__dialog {
  transform: translateY(0) scale(1);
}

.project-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.project-modal__media {
  min-height: 100%;
  background: rgba(255,255,255,0.03);
}

.project-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-modal__body {
  padding: 42px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-modal__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.project-modal__text {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.78;
}

.project-modal__highlight {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 46, 166, 0.08);
  border: 1px solid rgba(255, 46, 166, 0.18);
  color: #fff;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .project-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(90vh, 860px);
    overflow-y: auto;
  }

  .project-modal__media {
    max-height: 320px;
  }

  .project-modal__body {
    padding: 28px 22px 24px;
  }
}

.differential-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all .4s ease;
}

.differential-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(255,46,166,0.3);
}

.differential-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,46,166,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.differential-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.differential-card p {
  font-size: .9rem;
  opacity: .7;
}
