/* Wellnessbridge landings — paleta y tipografías del Canva original */
@import url("/css/canva-fonts.css");

:root {
  --wb-bg: #f8f5ef;
  --wb-bg-soft: #efebce;
  --wb-cream: #faedcd;
  --wb-sand: #ede8de;
  --wb-text: #423f32;
  --wb-brown: #513e29;
  --wb-brown-deep: #5d3b27;
  --wb-teal: #2f636a;
  --wb-teal-deep: #304254;
  --wb-muted: #849a97;
  --wb-sage: #a3a380;
  --wb-sage-soft: #92ada4;
  --wb-taupe: #a6806b;
  --wb-gold: #c5a280;
  --wb-rose: #d8a48f;
  --wb-ink: #231f20;
  --wb-white: #ffffff;
  --wb-radius: 0;
  --wb-max: 72rem;
  --wb-font: "Poppins", "Arimo", Helvetica, Arial, sans-serif;
  --wb-font-display: "Comfortaa", "Tabarra Round", sans-serif;
  --wb-font-alt: "Balgin", "Loubag", sans-serif;
  --wb-font-accent: "Shantell Sans", "Bellota", cursive;
  --wb-font-ui: "Arimo", "Poppins", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wb-font);
  font-weight: 300;
  color: var(--wb-text);
  background: var(--wb-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--wb-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wb-brown);
}

.wb-skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  background: var(--wb-white);
  color: var(--wb-text);
  padding: 0.55rem 0.9rem;
  z-index: 100;
  border: 1px solid rgba(66, 63, 50, 0.2);
}

.wb-skip:focus {
  transform: none;
}

.wb-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid rgba(66, 63, 50, 0.12);
  backdrop-filter: blur(10px);
}

.wb-top__inner {
  max-width: var(--wb-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wb-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--wb-font-display);
  font-weight: 700;
  color: var(--wb-brown);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wb-brand .logo-round {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.wb-brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.wb-brand span {
  font-family: var(--wb-font-ui);
  font-weight: 700;
  color: var(--wb-taupe);
  margin-left: 0.35rem;
}

.wb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.95rem;
  justify-content: flex-end;
}

.wb-nav a {
  color: var(--wb-text);
  text-decoration: none;
  font-size: 0.92rem;
}

.wb-nav a[aria-current="page"] {
  color: var(--wb-teal);
  font-weight: 700;
}

.wb-hero {
  max-width: var(--wb-max);
  margin: 0 auto;
  padding: 2.1rem 1.25rem 0.65rem;
  display: block;
}

/* Revista / periódico: la imagen flota a nivel de main y el texto la envuelve */
main {
  display: flow-root;
}

.wb-media--editorial {
  float: right;
  width: min(44%, 28rem);
  margin: 2.35rem 1.25rem 1.5rem 2rem;
  shape-outside: margin-box;
  shape-margin: 1rem;
  background: var(--wb-bg-soft);
  overflow: hidden;
}

.wb-media--editorial img {
  width: 100%;
  height: auto;
  min-height: 22rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wb-hero--split {
  display: block;
}

.wb-hero--split > div:not(.wb-media) {
  display: block;
}

.wb-hero--split .wb-lead {
  max-width: none;
}

.wb-hero--split .wb-chips,
.wb-hero--split .wb-actions {
  clear: none;
}

.wb-hero--split .wb-actions {
  padding-top: 0.35rem;
  margin-bottom: 0.35rem;
}

/* Elementos de bloque ancho no deben quedar aplastados junto a la imagen */
.wb-grid,
.wb-faq,
.wb-band,
.wb-cta,
.wb-contact,
.wb-quote {
  clear: both;
}

.wb-nav-mobile {
  display: none;
}

@media (max-width: 860px) {
  .wb-media--editorial {
    float: none;
    width: auto;
    margin: 1rem 1rem 0;
    shape-outside: none;
  }

  .wb-media--editorial img {
    min-height: 14rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .wb-top__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .wb-nav {
    display: none;
  }

  .wb-nav-mobile {
    display: flex !important;
    width: 100%;
    padding: 0 1.25rem 0.85rem;
    gap: 0.45rem 0.65rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .wb-nav-mobile a {
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(66, 63, 50, 0.14);
    background: var(--wb-white);
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .wb-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .wb-section {
    padding: 1.75rem 1rem;
  }

  .wb-actions {
    width: 100%;
  }

  .wb-actions .wb-btn {
    flex: 1 1 auto;
    min-width: 9rem;
    text-align: center;
  }

  .wb-footer__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .wb-social {
    gap: 0.45rem;
  }
}

@media (max-width: 480px) {
  .wb-brand span {
    display: none;
  }

  .wb-hero h1 {
    font-size: 1.55rem;
  }

  .wb-btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

.wb-kicker {
  font-family: var(--wb-font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wb-taupe);
  margin: 0 0 0.75rem;
}

.wb-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--wb-font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--wb-brown-deep);
  font-weight: 700;
  text-wrap: balance;
}

.wb-lead {
  margin: 0;
  font-size: 1.08rem;
  max-width: none;
  color: var(--wb-text);
  text-wrap: pretty;
}

.wb-lead + .wb-lead {
  margin-top: 0.85rem;
}

.wb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.wb-btn--primary {
  background: var(--wb-teal);
  color: var(--wb-white);
}

.wb-btn--primary:hover {
  background: var(--wb-brown);
  color: var(--wb-white);
}

.wb-btn--ghost {
  background: transparent;
  color: var(--wb-brown);
  border-color: rgba(81, 62, 41, 0.35);
}

.wb-btn--ghost:hover {
  background: var(--wb-cream);
  color: var(--wb-brown);
}

.wb-media {
  background: var(--wb-bg-soft);
  overflow: hidden;
}

.wb-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.wb-section {
  max-width: var(--wb-max);
  margin: 0 auto;
  padding: 1.35rem 1.25rem;
  border-top: 1px solid rgba(66, 63, 50, 0.08);
}

main > .wb-hero + .wb-section {
  border-top: none;
  padding-top: 0.35rem;
}

.wb-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--wb-font-display);
  color: var(--wb-brown);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
  max-width: 40rem;
}

.wb-section p {
  margin: 0 0 0.85rem;
  max-width: 46rem;
  text-wrap: pretty;
}

/* Editorial continuo: sin columnas laterales vacías */
@media (min-width: 861px) {
  .wb-hero--split .wb-kicker,
  .wb-hero--split h1 {
    max-width: none;
  }

  .wb-hero--split .wb-lead,
  .wb-section p,
  .wb-section li {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }

  .wb-section p,
  .wb-section .wb-list,
  .wb-faq {
    max-width: none;
  }

  .wb-section h2 {
    max-width: none;
  }

  /* Medida tipográfica editorial a ancho completo del contenedor */
  .wb-section > p,
  .wb-section .wb-list,
  .wb-faq,
  .wb-lead {
    max-width: none;
  }

  .wb-section h2 {
    max-width: none;
  }

  main > .wb-hero + .wb-section > p,
  main > .wb-hero + .wb-section > h2 {
    max-width: none;
  }
}

.wb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.wb-card {
  background: var(--wb-white);
  border: 1px solid rgba(66, 63, 50, 0.1);
  padding: 1.25rem;
}

.wb-card h3 {
  margin: 0 0 0.5rem;
  color: var(--wb-brown);
  font-size: 1.05rem;
}

.wb-card p {
  margin: 0;
  font-size: 0.95rem;
}

.wb-card a {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.wb-band {
  background: var(--wb-bg-soft);
  border-block: 1px solid rgba(66, 63, 50, 0.08);
}

.wb-quote {
  max-width: 40rem;
  margin: 0;
  font-family: var(--wb-font-accent);
  font-size: 1.15rem;
  font-style: normal;
  color: var(--wb-brown);
}

.wb-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--wb-font-ui);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wb-muted);
}

.wb-list {
  margin: 0;
  padding-left: 1.15rem;
  max-width: 40rem;
}

.wb-list li {
  margin-bottom: 0.45rem;
}

.wb-cta {
  background: var(--wb-teal);
  color: var(--wb-white);
}

.wb-cta .wb-section {
  text-align: center;
}

.wb-cta h2,
.wb-cta p {
  color: var(--wb-white);
  margin-left: auto;
  margin-right: auto;
}

.wb-cta .wb-btn--primary {
  background: var(--wb-white);
  color: var(--wb-teal);
}

.wb-cta .wb-btn--ghost {
  color: var(--wb-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.wb-footer {
  max-width: var(--wb-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--wb-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(66, 63, 50, 0.1);
}

.wb-footer a {
  color: var(--wb-text);
  text-decoration: none;
}

.wb-disclaimer {
  font-size: 0.85rem;
  color: var(--wb-muted);
  max-width: 42rem;
}

.wb-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
}

.wb-social__link {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--wb-text);
  text-decoration: none;
  border: 1px solid rgba(66, 63, 50, 0.16);
  background: var(--wb-white);
  border-bottom: 1px solid rgba(66, 63, 50, 0.16);
}

.wb-social__link:hover {
  color: var(--wb-teal);
  border-color: var(--wb-teal);
}

.wb-social__link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.wb-footer {
  flex-direction: column;
  align-items: flex-start;
}

.wb-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.wb-section--social {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.wb-footer__home {
  display: flex;
  align-items: center;
}

.wb-footer .wb-social {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(66, 63, 50, 0.1);
  width: 100%;
}

.wb-seo-block h2 {
  margin-top: 0;
}

.wb-faq {
  max-width: 42rem;
  margin: 1.25rem 0 0;
}

.wb-faq details {
  border-bottom: 1px solid rgba(66, 63, 50, 0.12);
  padding: 0.85rem 0;
}

.wb-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--wb-brown);
  list-style: none;
}

.wb-faq summary::-webkit-details-marker {
  display: none;
}

.wb-faq summary::before {
  content: "+ ";
  color: var(--wb-teal);
}

.wb-faq details[open] summary::before {
  content: "– ";
}

.wb-faq p {
  margin: 0.65rem 0 0;
  color: var(--wb-text);
}

.wb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
}

.wb-chip {
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(47, 99, 106, 0.28);
  color: var(--wb-teal);
  background: rgba(255, 255, 255, 0.7);
}

/* Contact form */
.wb-contact {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 0.9fr;
  align-items: start;
}

.wb-form {
  background: var(--wb-white);
  border: 1px solid rgba(66, 63, 50, 0.12);
  padding: 1.5rem 1.35rem 1.75rem;
}

.wb-form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  color: var(--wb-brown);
}

.wb-form > p {
  margin: 0 0 1.25rem;
  color: var(--wb-muted);
  font-size: 0.95rem;
}

.wb-field {
  margin-bottom: 1rem;
}

.wb-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wb-brown);
  margin-bottom: 0.35rem;
}

.wb-field .wb-req {
  color: var(--wb-teal);
  font-weight: 700;
}

.wb-field input,
.wb-field select,
.wb-field textarea {
  width: 100%;
  font: inherit;
  color: var(--wb-text);
  background: var(--wb-bg);
  border: 1px solid rgba(66, 63, 50, 0.2);
  padding: 0.7rem 0.85rem;
  border-radius: 0;
}

.wb-field input:focus,
.wb-field select:focus,
.wb-field textarea:focus {
  outline: 2px solid rgba(47, 99, 106, 0.35);
  outline-offset: 1px;
  border-color: var(--wb-teal);
}

.wb-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.wb-field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.wb-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.wb-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.15rem;
}

.wb-form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.wb-form-status--ok {
  background: rgba(47, 99, 106, 0.1);
  border-color: rgba(47, 99, 106, 0.28);
  color: var(--wb-teal);
}

.wb-form-status--err {
  background: rgba(93, 59, 39, 0.08);
  border-color: rgba(93, 59, 39, 0.25);
  color: var(--wb-brown-deep);
}

.wb-contact-aside .wb-card {
  margin-bottom: 1rem;
}

.wb-contact-aside .wb-card:last-child {
  margin-bottom: 0;
}

.wb-contact-note {
  font-size: 0.85rem;
  color: var(--wb-muted);
  margin-top: 0.85rem;
}

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

  .wb-field-row {
    grid-template-columns: 1fr;
  }
}


.logo-psicologa {
  display: block;
  width: min(20rem, 100%);
  height: auto;
  margin: 0 0 1rem;
}

.wb-brand img,
.logo-round {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
