@media only screen and (max-width: 479px) {
  :root {
    font-size: 4.103vw;
  }
}
.wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
/* helpers */
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap--24 {
  gap: 1.5rem;
}
.gap--16 {
  gap: 1rem;
}
.gap--12 {
  gap: 0.75rem;
}
.text-align-center {
  text-align: center;
}
.position-relative {
  position: relative;
}
.width-100 {
  width: 100%;
}
.z-index-1 {
  z-index: 1;
}
.text-color-white {
  color: #fff;
}
.text-color-ddbbf1 {
  color: #ddbbf1;
}

/* Tipografia */
h1,
h2,
h3,
p {
  margin: 0;
}
.text-size-h1 {
  font-size: 4rem;
  /* font-weight: 700; */
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.heading-size-h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
.h3-medium {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}
.body-3-medium {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.85;
}
.text-size-16-16-14 {
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .text-size-h1 {
    font-size: 2.5rem;
  }
  .heading-size-h2 {
    font-size: 2rem;
  }
  .h3-medium {
    font-size: 1.5rem;
  }
  .body-3-medium {
    font-size: 1rem;
  }
}

.glass-button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  --outline-w: 1px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  /* font-weight: 600; */
}

.glass-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--outline-w);
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.glass-button.is-cta {
  background: linear-gradient(
    95deg,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.5);
}
.hero-label {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(221, 187, 241, 0.3);
}

.talk-card {
  background: rgba(12, 6, 18, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.5);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: #1d0434ed;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  color: white;
  font-size: 1rem;
  transition: all 0.2s;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
}
.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ddbbf1;
}
.btn-submit {
  background: linear-gradient(135deg, #dc1bcd 0%, #ff9e52 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.btn-submit:hover {
  transform: scale(0.98);
  box-shadow: 0 10px 25px -8px #a855f7;
}
/* footer minimal */
.footer-mini {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}
/* decor elements */
.blur-bg-decor {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.25) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .talk-card {
    padding: 1.5rem;
  }
  .glass-button {
    padding: 0.6rem 1.2rem;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.back-link:hover {
  opacity: 0.7;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #dc1bcd;
}
.success-message {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid #22c55e;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  display: none;
}
