/* Contact page styles */
/* Contact Page Style */

/* =========================
   Contact
========================= */

.contact-page {
  --container-width: 1310px;
  background:
    radial-gradient(circle at top left, rgba(239, 111, 151, 0.1), transparent 16%),
    radial-gradient(circle at top right, rgba(255, 230, 237, 0.9), transparent 22%),
    linear-gradient(180deg, #fffefd 0%, #fff8fa 48%, #fff5f7 100%);
}

.contact-page .container {
  width: min(100% - 32px, var(--container-width));
}

.contact-page .navbar {
  top: 0;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 214, 223, 0.88);
  border-radius: 0;
  background: rgba(255, 252, 252, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.contact-page .navbar-content {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 68px;
  padding: 0;
  gap: 20px;
}

.contact-page .nav-toggle {
  display: none;
  border-color: rgba(243, 214, 223, 0.94);
  background: rgba(255, 255, 255, 0.96);
  color: #ef6f97;
}

.contact-page .logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
  color: #eb6f94;
}

.contact-page .nav-menu {
  margin-left: 0;
  justify-self: end;
  gap: 16px;
  color: rgba(47, 47, 58, 0.78);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-page .nav-menu a {
  padding: 10px 0;
  color: rgba(47, 47, 58, 0.78);
}

.contact-page .nav-menu a:hover,
.contact-page .nav-menu a.active {
  color: #ef6f97;
  background: rgba(255, 239, 244, 0.9);
}

.contact-main {
  padding-bottom: 72px;
}

.contact-editorial-hero {
  padding: 24px 0 20px;
  border-bottom: 1px solid rgba(243, 214, 223, 0.82);
}

.contact-editorial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  min-height: 520px;
}

.contact-editorial-copy {
  max-width: 560px;
  padding: 28px 0;
}

.contact-editorial-copy h1 {
  margin-top: 16px;
  color: #29171d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-editorial-copy p:not(.home-section-kicker) {
  margin-top: 20px;
  max-width: 470px;
  color: #6e5b62;
  font-size: 1.08rem;
  line-height: 1.62;
}

.contact-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-editorial-primary {
  gap: 10px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #ef6f97 0%, #e24f87 100%);
  box-shadow: 0 16px 28px rgba(228, 88, 136, 0.24);
}

.contact-editorial-primary svg,
.contact-cta-button svg {
  width: 18px;
  height: 18px;
}

.contact-editorial-secondary {
  min-width: 188px;
  border-color: rgba(243, 214, 223, 0.92);
}

.contact-editorial-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.96), transparent 24%),
    radial-gradient(circle at 72% 22%, rgba(233, 196, 208, 0.26), transparent 22%),
    linear-gradient(120deg, rgba(255, 250, 251, 0.98) 0%, rgba(249, 238, 241, 0.92) 48%, rgba(243, 224, 231, 0.95) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(244, 223, 230, 0.92),
    0 18px 42px rgba(186, 125, 146, 0.12);
}

.contact-editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 252, 0.46) 0%, rgba(255, 250, 251, 0.12) 45%, rgba(255, 250, 251, 0) 100%);
  pointer-events: none;
}

.contact-editorial-visual-glow {
  position: absolute;
  inset: auto -40px -50px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 236, 0.76), rgba(255, 229, 236, 0));
  filter: blur(18px);
  pointer-events: none;
}

.contact-editorial-hero-image {
  position: absolute;
  right: -26px;
  bottom: -30px;
  z-index: 1;
  width: min(74%, 580px);
  filter: drop-shadow(0 26px 42px rgba(177, 123, 145, 0.18));
}

.contact-response-card {
  position: absolute;
  top: 32px;
  left: 28px;
  z-index: 2;
  width: min(48%, 320px);
  padding: 28px 18px 18px;
  border-radius: 30px;
  border: 1px solid rgba(243, 214, 223, 0.92);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(199, 155, 169, 0.14);
}

.contact-response-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(243, 214, 223, 0.88);
}

.contact-response-item+.contact-response-item {
  margin-top: 12px;
}

.contact-response-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: #ef6f97;
  box-shadow: none;
}

.contact-response-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.contact-response-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-response-item strong {
  display: block;
  color: #29171d;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-response-item p {
  margin-top: 4px;
  color: #7a6870;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-response-item span {
  display: block;
  margin-top: 3px;
  color: #29171d;
  font-size: 0.93rem;
  font-weight: 600;
}

.contact-trust-section {
  padding: 20px 0 0;
}

.contact-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 28px;
  border-radius: 34px;
  border: 1px solid rgba(243, 214, 223, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 251, 0.94));
  box-shadow: 0 14px 30px rgba(213, 176, 188, 0.12);
}

.contact-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-trust-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 241, 245, 0.94);
  box-shadow: inset 0 0 0 1px rgba(243, 214, 223, 0.92);
}

.contact-trust-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.contact-trust-item strong {
  display: block;
  color: #29171d;
  font-size: 0.98rem;
  line-height: 1.35;
}

.contact-trust-item p {
  margin-top: 4px;
  color: #7d6a72;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-workspace-section {
  padding: 26px 0 0;
}

.contact-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(243, 214, 223, 0.92);
  background:
    radial-gradient(circle at top right, rgba(255, 236, 242, 0.84), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 250, 0.96));
  box-shadow: 0 16px 34px rgba(213, 176, 188, 0.12);
}

.contact-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #29171d;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.contact-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contact-panel-head .contact-panel-kicker {
  margin-bottom: 0;
}

.contact-channel-list,
.contact-tip-list {
  display: grid;
  gap: 16px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 18px 14px;
  border-radius: 24px;
  border: 1px solid rgba(243, 214, 223, 0.88);
  background: rgba(255, 255, 255, 0.9);
}

.contact-channel-main {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}

.contact-channel-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: #ef6f97;
  box-shadow: none;
}

.contact-channel-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.contact-channel-icon-whatsapp {
  color: inherit;
  background: transparent;
}

.contact-channel-icon-instagram {
  color: inherit;
  background: transparent;
}

.contact-channel-main strong {
  display: block;
  color: #29171d;
  font-size: 1.02rem;
  line-height: 1.35;
}

.contact-channel-main p {
  margin-top: 4px;
  color: #29171d;
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-channel-main span {
  display: block;
  margin-top: 3px;
  max-width: 270px;
  color: #806d75;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-inline-btn {
  min-width: 132px;
  padding: 0 20px;
  white-space: nowrap;
  box-shadow: none;
}

.contact-faq-panel {
  display: flex;
  flex-direction: column;
}

.contact-faq-intro {
  margin-top: 12px;
  color: #7a6068;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-faq-list {
  margin-top: 16px;
  max-width: none;
}

.contact-faq-panel .faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-faq-panel .faq-question {
  padding: 18px 20px;
  font-size: 0.97rem;
}

.contact-faq-panel .faq-answer p {
  padding: 0 20px 18px;
}

.contact-faq-footer {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 214, 223, 0.82);
}

.contact-faq-footer p {
  color: #7a6068;
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-faq-button {
  justify-self: start;
}

.contact-hours-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 243, 247, 0.94);
  color: #8a727a;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.contact-panel-note,
.contact-tip-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(243, 214, 223, 0.84);
  color: #7a6068;
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-panel-note {
  background: linear-gradient(180deg, rgba(255, 246, 248, 0.96), rgba(255, 240, 244, 0.9));
}

.contact-tip-note {
  background: linear-gradient(180deg, rgba(255, 241, 245, 0.92), rgba(255, 247, 249, 0.96));
}

.contact-panel-note-icon,
.contact-tip-note-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: #ef6f97;
  box-shadow: none;
}

.contact-panel-note-icon img,
.contact-tip-note-icon img,
.contact-panel-note-icon svg,
.contact-tip-note-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.contact-tip-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(243, 214, 223, 0.88);
  background: rgba(255, 255, 255, 0.9);
}

.contact-tip-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f694b4 0%, #ef6f97 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(239, 111, 151, 0.22);
}

.contact-tip-card strong {
  display: block;
  color: #29171d;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-tip-card p {
  margin-top: 6px;
  color: #806d75;
  font-size: 0.93rem;
  line-height: 1.56;
}

.contact-cta-section {
  padding: 28px 0 0;
}

.contact-cta-banner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(243, 214, 223, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 249, 0.96));
  box-shadow: 0 16px 34px rgba(213, 176, 188, 0.12);
}

.contact-cta-visual {
  height: 126px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(255, 231, 238, 0.92), rgba(255, 245, 248, 0.3)),
    rgba(255, 249, 251, 0.9);
}

.contact-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.contact-cta-copy h2 {
  color: #29171d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-cta-copy p {
  margin-top: 10px;
  max-width: 470px;
  color: #6e5b62;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-cta-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.contact-cta-button {
  min-width: 300px;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ef6f97 0%, #e24f87 100%);
  box-shadow: 0 16px 28px rgba(228, 88, 136, 0.24);
}

.contact-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7f6870;
  font-size: 0.93rem;
  font-weight: 600;
}

.contact-cta-note svg {
  width: 18px;
  height: 18px;
  color: #ef6f97;
}

.contact-footer {
  margin-top: 28px;
}

@media (max-width: 1200px) {
  .contact-editorial-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-editorial-copy {
    max-width: 620px;
    padding-bottom: 0;
  }

  .contact-editorial-visual {
    min-height: 480px;
  }

  .contact-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-banner {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .contact-cta-actions {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .contact-workspace-grid {
    grid-template-columns: 1fr;
  }

  .contact-response-card {
    width: min(56%, 330px);
  }
}

@media (max-width: 640px) {
  .contact-page .navbar {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .contact-page .navbar-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 0 12px;
    gap: 12px;
  }

  .contact-page .logo {
    order: 1;
    font-size: 1.28rem;
  }

  .contact-page .nav-toggle {
    order: 2;
    margin-left: auto;
    display: inline-flex;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ef6f97;
    font-size: 1.15rem;
  }

  .contact-page .nav-menu {
    order: 3;
    width: 100%;
  }

  .contact-main {
    padding-bottom: 58px;
  }

  .contact-editorial-hero {
    padding-top: 14px;
  }

  .contact-editorial-shell {
    gap: 18px;
  }

  .contact-editorial-copy {
    max-width: none;
    padding: 6px 0 0;
  }

  .contact-editorial-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    line-height: 1.01;
  }

  .contact-editorial-copy p:not(.home-section-kicker) {
    max-width: none;
    font-size: 1rem;
  }

  .contact-editorial-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-editorial-primary,
  .contact-editorial-secondary {
    width: 100%;
  }

  .contact-editorial-visual {
    min-height: 420px;
    border-radius: 30px;
  }

  .contact-response-card {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 22px 14px 14px;
    border-radius: 24px;
  }

  .contact-editorial-hero-image {
    right: -36px;
    bottom: -20px;
    width: min(94%, 430px);
  }

  .contact-trust-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-radius: 28px;
  }

  .contact-panel {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .contact-faq-panel .faq-question {
    padding: 16px 16px;
  }

  .contact-faq-panel .faq-answer p {
    padding: 0 16px 16px;
  }

  .contact-channel-card {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
  }

  .contact-channel-main span {
    max-width: none;
  }

  .contact-inline-btn,
  .contact-hours-chip {
    align-self: flex-start;
  }

  .contact-tip-card {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .contact-tip-index {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
  }

  .contact-panel-note,
  .contact-tip-note {
    align-items: flex-start;
    padding: 16px 14px;
  }

  .contact-cta-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-radius: 30px;
  }

  .contact-cta-visual {
    height: 160px;
  }

  .contact-cta-actions {
    justify-items: stretch;
  }

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

  .contact-cta-note {
    justify-content: center;
  }
}
