/* ============================================
   SENECTUD ANIMAL — CSS Editorial
   Paleta: #6B7D5A | #3F3F3F | #F4F5F2
   ============================================ */

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

:root {
  --olive:      #6B7D5A;
  --olive-dark: #4E5D41;
  --olive-light:#8A9E74;
  --charcoal:   #3F3F3F;
  --charcoal-d: #242424;
  --offwhite:   #F4F5F2;
  --warm-gray:  #D8D9D4;
  --text-body:  #555550;
  --gold:       #B8965A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--offwhite);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }

p { font-weight: 300; line-height: 1.75; }

em { font-style: italic; }
strong { font-weight: 500; }

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 1rem;
}
.label--light { color: var(--olive-light); }

.body-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  max-width: 520px;
}

/* ── LAYOUT ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 7rem 0; }
.section--light { background: var(--offwhite); }
.section--dark  { background: var(--charcoal-d); color: var(--offwhite); }
.section--olive { background: var(--olive); color: var(--offwhite); }
.section--notice { background: #fffdf5; }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .label { display: inline-block; }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 1.5rem auto 0;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(36,36,36,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
}
.nav-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 500;
}
.nav-logo span { color: var(--olive-light); margin-left: 0.3em; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,245,242,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-cta {
  border: 1px solid var(--olive-light) !important;
  color: var(--olive-light) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--olive-light) !important; color: var(--charcoal-d) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(24,24,20,0.92) 0%,
    rgba(24,24,20,0.5) 40%,
    rgba(24,24,20,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 8rem;
  animation: fadeUp 1.2s 0.4s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pretitle {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1.2rem;
}
.hero-title {
  color: var(--offwhite);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(244,245,242,0.7);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244,245,242,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUp 1.5s 1s var(--ease) both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(244,245,242,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--olive);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s;
}
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-2px); }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.split-image--portrait img { height: 600px; object-position: top; }

.image-caption {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-top: 1rem;
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid var(--olive-light);
}

/* ── QUOTE ── */
.section--quote {
  background: var(--charcoal);
  padding: 5rem 0;
}
.section--quote blockquote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.section--quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--offwhite);
  line-height: 1.5;
  font-weight: 300;
}
.section--quote blockquote em { color: var(--gold); }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(244,245,242,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--olive-light);
  background: rgba(107,125,90,0.08);
  transform: translateY(-6px);
}
.card-icon {
  font-size: 1.5rem;
  color: var(--olive-light);
  margin-bottom: 1.2rem;
}
.card h3 { color: var(--offwhite); margin-bottom: 0.8rem; font-size: 1.1rem; }
.card p  { font-size: 0.92rem; color: rgba(244,245,242,0.65); }

/* ── SECTION IMAGE FULL ── */
.section-image-full {
  position: relative;
  margin-top: 4rem;
  height: 420px;
  overflow: hidden;
}
.section-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.section-image-text {
  position: absolute;
  bottom: 3rem;
  left: 5%;
  max-width: 480px;
}
.section-image-text p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--offwhite);
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ── PRINCIPLES ── */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.principle {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--warm-gray);
  transition: background 0.3s;
}
.principle:first-child { border-top: 1px solid var(--warm-gray); }
.principle-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--warm-gray);
  min-width: 80px;
  line-height: 1;
  transition: color 0.3s;
}
.principle:hover .principle-num { color: var(--olive-light); }
.principle-body h3 { margin-bottom: 0.6rem; color: var(--charcoal); }
.principle-body p  { font-size: 0.97rem; color: var(--text-body); max-width: 580px; }

/* ── TOPICS ── */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.topic {
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(244,245,242,0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(244,245,242,0.85);
  cursor: default;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.topic:hover {
  background: rgba(244,245,242,0.12);
  border-color: rgba(244,245,242,0.7);
  transform: translateY(-2px);
}

/* ── AVATAR TAGS ── */
.avatar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.avatar-tags span {
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--olive-light);
  color: var(--olive-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* ── NOTICE ── */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--gold);
  background: rgba(184,150,90,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice-icon { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; }
.notice-box h3 { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.notice-box p  { font-size: 0.92rem; color: var(--text-body); }

/* ── CONTACT ── */
.contacto-wrap { max-width: 800px; }
.contact-form  { margin-top: 3rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--olive); }
.form-group { margin-bottom: 1.5rem; }
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--olive);
}

/* ── FOOTER ── */
#footer {
  background: var(--charcoal-d);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--offwhite);
  font-weight: 400;
}
.footer-logo span { color: var(--olive-light); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(244,245,242,0.45);
  line-height: 1.7;
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,245,242,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--olive-light); }
.footer-legal {
  font-size: 0.72rem;
  color: rgba(244,245,242,0.25);
  max-width: 600px;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  width: 100%;
  text-align: center;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(36,36,36,0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.05em; }
  .form-row { grid-template-columns: 1fr; }
  .principle { flex-direction: column; gap: 1rem; }
  .principle-num { font-size: 2rem; }
  .section-image-full { height: 300px; }
  .split-image img { height: 320px; }
}

/* ══════════════════════════════════════════
   VETTY — CHAT WIDGET (diseño editorial)
   ══════════════════════════════════════════ */

/* ── Contenedor raíz ── */
#vetty-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

/* ════════════════════════════════
   BOTÓN PILL FLOTANTE
   ════════════════════════════════ */
#vetty-bubble {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 1.1rem 0.35rem 0.35rem;
  background: var(--olive);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
  position: relative;
}
#vetty-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.28);
}
/* Ocultar pill cuando panel está abierto */
#vetty-bubble.panel-open {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85) translateY(8px);
}

/* Avatar circular dentro del pill */
.vetty-pill-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2.5px solid rgba(255,255,255,0.35);
  display: block;
  flex-shrink: 0;
}

/* Texto del pill */
.vetty-pill-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.vetty-pill-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.vetty-pill-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Ícono burbuja de chat */
.vetty-pill-icon {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.65);
  margin-left: 0.4rem;
  flex-shrink: 0;
}

/* ════════════════════════════════
   PANEL DE CHAT
   ════════════════════════════════ */
#vetty-panel {
  position: fixed;          /* independiente del widget */
  bottom: 0;
  right: 2rem;
  width: 400px;
  max-height: 580px;
  border-radius: 20px 20px 0 0;   /* anclado al fondo, sin bordes inferiores */
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.15), 0 -1px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  /* Estado cerrado */
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 10000;
}
#vetty-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ── Header verde ── */
.vetty-header {
  background: var(--olive);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.vetty-header-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.vetty-header-text {
  flex: 1;
}
.vetty-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.vetty-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  margin-top: 3px;
  letter-spacing: 0.03em;
}
#vetty-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
#vetty-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* ── Cuerpo crema ── */
.vetty-body {
  background: #F2F0EB;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

/* ── Burbuja disclaimer estática ── */
.vetty-disclaimer-bubble {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.3rem 1.2rem 0.5rem;
  background: #E8E5DD;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  flex-shrink: 0;
}
.vetty-disclaimer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107,125,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
}
.vetty-disclaimer-bubble p {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 400;
}

/* ── Área de mensajes dinámicos ── */
.vetty-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
  min-height: 0;
}
.vetty-messages:empty { padding: 0; }
.vetty-messages::-webkit-scrollbar { width: 3px; }
.vetty-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* Burbujas individuales */
.vetty-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: msgIn 0.28s var(--ease) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vetty-msg--bot  { align-self: flex-start; }
.vetty-msg--user { align-self: flex-end; }

.vetty-msg-bubble {
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.87rem;
  line-height: 1.6;
  font-weight: 400;
}
.vetty-msg--bot .vetty-msg-bubble {
  background: #E8E5DD;
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
}
.vetty-msg--user .vetty-msg-bubble {
  background: var(--olive);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.vetty-msg-time {
  font-size: 0.63rem;
  color: #aaa;
  margin-top: 3px;
  padding: 0 4px;
}
.vetty-msg--user .vetty-msg-time { text-align: right; }

/* Typing dots */
.vetty-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.7rem 1rem;
  background: #E8E5DD;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: msgIn 0.28s var(--ease) both;
}
.vetty-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-light);
  animation: tdot 1.2s ease-in-out infinite;
}
.vetty-typing span:nth-child(2) { animation-delay: 0.2s; }
.vetty-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdot {
  0%,60%,100% { transform: translateY(0); opacity: 0.35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* ── Separador "¿Cómo puedo orientarte hoy?" ── */
.vetty-separator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.6rem 1.2rem 0.8rem;
  flex-shrink: 0;
}
.vetty-separator::before,
.vetty-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #D4D0C8;
}
.vetty-separator span {
  font-size: 0.72rem;
  color: #999;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.vetty-separator.hidden { display: none; }

/* ── Input area ── */
.vetty-input-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 1rem 0.5rem;
  background: #fff;
  border: 1.5px solid #DDD9CF;
  border-radius: 14px;
  padding: 0.6rem 0.6rem 0.6rem 1rem;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.vetty-input-area:focus-within { border-color: var(--olive); }

#vettyInput {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  resize: none;
  line-height: 1.5;
  max-height: 100px;
  overflow-y: auto;
}
#vettyInput::placeholder { color: #BBB8B0; }

#vettySend {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  transition: background 0.25s, transform 0.2s;
}
#vettySend:hover  { background: var(--olive-dark); transform: scale(1.08); }
#vettySend:disabled { background: #C8C4BB; cursor: not-allowed; transform: none; }

/* ── Footer confidencial ── */
.vetty-confidential {
  text-align: center;
  font-size: 0.68rem;
  color: #B0AD A5;
  color: #AEA99F;
  padding: 0.4rem 0 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  #vetty-widget { bottom: 1rem; right: 1rem; }
  #vetty-panel  { width: 100vw; right: 0; border-radius: 20px 20px 0 0; }
  .vetty-pill-name { font-size: 1rem; }
  .vetty-pill-avatar { width: 50px; height: 50px; }
}
/* ── Vetty chips de respuesta rápida ── */
.vetty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem 0.5rem;
}
.vetty-chip {
  background: #fff;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
.vetty-chip:hover {
  background: var(--olive);
  color: #fff;
}
/* ── Vetty chips de respuesta rápida ── */
.vetty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem 0.5rem;
}
.vetty-chip {
  background: #fff;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
.vetty-chip:hover {
  background: var(--olive);
  color: #fff;
}

/* ══════════════════════════════════════
   SECCIÓN CONSULTA VETERINARIA
   ══════════════════════════════════════ */
.section--consulta {
  background: var(--charcoal);
  color: var(--offwhite);
}

.consulta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.consulta-text .body-text { max-width: 480px; }

.consulta-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.consulta-list li {
  font-size: 0.92rem;
  color: rgba(244,245,242,0.75);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}
.consulta-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive-light);
}

.consulta-precio {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.consulta-monto {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--offwhite);
  line-height: 1;
}
.consulta-desc {
  font-size: 0.8rem;
  color: rgba(244,245,242,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-consulta {
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
  background: var(--olive);
  display: inline-block;
}
.btn-consulta:hover { background: var(--olive-dark); }

.consulta-sub {
  font-size: 0.75rem;
  color: rgba(244,245,242,0.4);
  margin-top: 1rem;
  font-weight: 300;
}

/* Cards decorativas */
.consulta-deco {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.consulta-card {
  padding: 1.8rem 2rem;
  border: 1px solid rgba(244,245,242,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.consulta-card:hover {
  border-color: var(--olive-light);
  background: rgba(107,125,90,0.08);
}
.consulta-card-icon {
  font-size: 1.2rem;
  color: var(--olive-light);
  margin-bottom: 0.8rem;
}
.consulta-card h3 {
  color: var(--offwhite);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.consulta-card p {
  font-size: 0.88rem;
  color: rgba(244,245,242,0.6);
  line-height: 1.6;
}

/* Link CTA dentro de Vetty */
.vetty-cta-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--olive);
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .consulta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ── Vetty chips de respuesta rápida ── */
.vetty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem 0.5rem;
}
.vetty-chip {
  background: #fff;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
.vetty-chip:hover {
  background: var(--olive);
  color: #fff;
}

/* ══════════════════════════════════════
   SECCIÓN CONSULTA VETERINARIA
   ══════════════════════════════════════ */
.section--consulta {
  background: var(--charcoal);
  color: var(--offwhite);
}

.consulta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.consulta-text .body-text { max-width: 480px; }

.consulta-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.consulta-list li {
  font-size: 0.92rem;
  color: rgba(244,245,242,0.75);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}
.consulta-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive-light);
}

.consulta-precio {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.consulta-monto {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--offwhite);
  line-height: 1;
}
.consulta-desc {
  font-size: 0.8rem;
  color: rgba(244,245,242,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-consulta {
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
  background: var(--olive);
  display: inline-block;
}
.btn-consulta:hover { background: var(--olive-dark); }

.consulta-sub {
  font-size: 0.75rem;
  color: rgba(244,245,242,0.4);
  margin-top: 1rem;
  font-weight: 300;
}

/* Cards decorativas */
.consulta-deco {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.consulta-card {
  padding: 1.8rem 2rem;
  border: 1px solid rgba(244,245,242,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.consulta-card:hover {
  border-color: var(--olive-light);
  background: rgba(107,125,90,0.08);
}
.consulta-card-icon {
  font-size: 1.2rem;
  color: var(--olive-light);
  margin-bottom: 0.8rem;
}
.consulta-card h3 {
  color: var(--offwhite);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.consulta-card p {
  font-size: 0.88rem;
  color: rgba(244,245,242,0.6);
  line-height: 1.6;
}

/* Link CTA dentro de Vetty */
.vetty-cta-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--olive);
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .consulta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ══════════════════════════════════════
   CTA CONSULTA (reemplaza franja cita)
   ══════════════════════════════════════ */
.section--cta-consulta { padding: 4rem 0; }
.cta-consulta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-consulta-text h2 {
  color: var(--offwhite);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.cta-consulta-text p {
  color: rgba(244,245,242,0.65);
  max-width: 480px;
  font-size: 1rem;
}
.btn-cta-consulta {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════
   PRINCIPIOS EN GRID 4 COLUMNAS
   ══════════════════════════════════════ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.principle-col {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--olive-light);
}
.principle-col .principle-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--olive);
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
.principle-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}
.principle-col p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PRODUCTOS IFRAME
   ══════════════════════════════════════ */
.productos-iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

/* ══════════════════════════════════════
   FOOTER DISCLAIMER
   ══════════════════════════════════════ */
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(244,245,242,0.35);
  max-width: 700px;
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,245,242,0.08);
}

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .cta-consulta-inner { flex-direction: column; text-align: center; }
  .principles-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .principles-grid { grid-template-columns: 1fr; }
}