/* ============================================
   CREAGENTE — LIGHT & WARM DESIGN SYSTEM
   Fondo claro cálido, acento coral, Apple-moderno
   ============================================ */

:root {
  --coral:      #FF6B3D;
  --coral-soft: #FF9A6B;
  --coral-pale: #FFF0E8;
  --ink:        #241810;
  --muted:      #8A7F72;
  --line:       #F0E7DA;
  --bg:         #FBF7F3;
  --card:       #FFFFFF;
  --success:    #12B76A;
  --warn:       #FCD34D;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Sora', sans-serif;
  --shadow-sm:  0 2px 6px rgba(120,80,40,.05);
  --shadow-md:  0 10px 30px rgba(120,80,40,.08);
  --shadow-lg:  0 24px 50px rgba(120,80,40,.12);
  --rad-sm: 12px;
  --rad-md: 16px;
  --rad-lg: 24px;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
b { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
  background: rgba(251,247,243,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo b { color: var(--coral); }

.main-nav { display: flex; gap: 26px; align-items: center; }
.nav-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .25s;
}
.nav-link:hover { color: var(--ink); }

.header-cta { text-decoration: none; }

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: all .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 99;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
}
.mobile-nav .nav-link { 
  padding: 12px 4px; 
  font-size: 16px; 
  font-weight: 500; 
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav.open { 
  max-height: 380px; 
  opacity: 1; 
  padding: 16px 28px 24px;
}
.mobile-nav.open .nav-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open .nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open .nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open .nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open .nav-link:nth-child(5) { transition-delay: 0.25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 99px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1.5px); box-shadow: 0 8px 20px rgba(36,24,16,.18); }
.btn-outline { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { 
  border-color: var(--coral-soft); 
  background-color: var(--coral-pale); 
  color: var(--coral); 
  transform: translateY(-1.5px); 
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.w-full { width: 100%; }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 22px;
}
.pill.center { display: inline-flex; }
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,107,61,.15);
}

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.8px;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 540px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}
.section-subtitle.center { text-align: center; margin: 0 auto; }
.center { text-align: center; }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 112px 0;
}
.section + .section { border-top: 1px solid var(--line); }

.hero-section {
  padding: 176px 0 112px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255,107,61,.16), transparent 60%),
    radial-gradient(700px 350px at -10% 110%, rgba(255,154,107,.10), transparent 55%),
    var(--bg);
}

.whatsapp-section { background: linear-gradient(180deg, var(--bg), #FFF7F2 100%); }
.crm-section { background: var(--bg); }
.automation-section { background: linear-gradient(180deg, var(--bg), #FFF7F2 100%); }
.jobits-section { background: #FFF9F5; }
.faq-section { background: var(--bg); }
.contact-section { background: #FFF9F5; }

/* ---------- Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Hero ---------- */
.hero-copy { max-width: 560px; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  color: var(--ink);
  margin-bottom: 20px;
}
.text-grad {
  background: linear-gradient(120deg, var(--coral), var(--coral-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 42px;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.5px;
  color: var(--ink);
}
.stat span { font-size: 12.5px; color: var(--muted); }

/* ---------- Product window ---------- */
.prod-window {
  background: linear-gradient(160deg, #fff 0%, #FFF7F2 100%);
  border: 1px solid #F5E2D5;
  border-radius: var(--rad-lg);
  box-shadow: 0 24px 50px rgba(255,107,61,.14), 0 4px 12px rgba(120,80,40,.06);
  overflow: hidden;
}
.pw-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.pw-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.pw-head .dot.red { background: #FCA5A5; }
.pw-head .dot.yellow { background: #FCD34D; }
.pw-head .dot.green { background: #6EE7B7; }
.pw-url {
  margin-left: 12px;
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pw-body { display: grid; grid-template-columns: 88px 1fr; }
.pw-sidebar {
  border-right: 1px solid var(--line);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-menu {
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
}
.pw-menu.on { background: var(--coral-pale); color: var(--coral); font-weight: 600; }
.pw-main { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pw-card.wide { grid-column: 1 / -1; }
.pw-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
}
.pw-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.5px;
  color: var(--ink);
}
.accent-coral { color: var(--coral) !important; }
.pw-bar {
  height: 6px;
  width: var(--w, 50%);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--coral), var(--coral-soft));
}

/* ---------- Feature list ---------- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}
.action-box { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hint { font-size: 13px; color: var(--muted); }

/* ---------- WhatsApp simulator ---------- */
.simulator-wrapper {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.chat-container {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 220px;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.chat-status { font-size: 11px; color: var(--success); font-weight: 500; }
.chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  flex-grow: 1;
  max-height: 230px;
}
.msg {
  max-width: 80%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}
.msg.received {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.msg.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--coral), #FF8F63);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.msg-sender { display: block; font-size: 10.5px; font-weight: 600; margin-bottom: 3px; opacity: .75; }
.msg-time { display: block; font-size: 10px; opacity: .7; text-align: right; margin-top: 5px; }

.crm-board {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  padding: 14px;
}
.crm-columns-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.crm-column {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 10px;
  min-width: 140px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.crm-column-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.crm-cards-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  min-height: 90px;
}
.empty-state-mini {
  text-align: center;
  width: 100%;
  color: #d8d2c8;
  font-size: 11px;
  margin: auto 0;
}
.crm-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--warn);
  border-radius: 10px;
  padding: 10px;
  animation: cardAppear .4s cubic-bezier(.175,.885,.32,1.275);
}
.crm-card.inbox { border-left-color: var(--coral); }
.crm-card.qualified { border-left-color: var(--warn); }
.crm-card.won { border-left-color: var(--success); }
@keyframes cardAppear {
  0% { opacity: 0; transform: scale(.85) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.crm-card-title { font-size: 12px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-card-detail { font-size: 11px; color: var(--muted); display: flex; justify-content: space-between; margin-top: 8px; }
.badge-ai {
  display: inline-block;
  background: rgba(255,107,61,.1);
  color: var(--coral);
  border: 1px solid rgba(255,107,61,.2);
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 9.5px;
  margin-bottom: 6px;
}

/* ---------- Jobits ---------- */
.feature-bullets { display: flex; flex-direction: column; gap: 14px; }
.bullet { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.b-icon {
  color: var(--coral);
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral-pale);
  border-radius: 50%;
}
.jobits-cards { display: flex; flex-direction: column; gap: 14px; }
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.benefit-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Automation grid ---------- */
.center-title-area { margin-bottom: 44px; }
.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.automation-grid .benefit-card { box-shadow: var(--shadow-md); }

/* ---------- FAQ ---------- */
.faq-accordion-container {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.faq-item.active { border-color: rgba(255,107,61,.4); box-shadow: var(--shadow-md); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  outline: none;
}
.faq-question { font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.faq-icon {
  font-size: 20px;
  color: var(--muted);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--coral); }
.faq-answer-wrapper { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-answer { padding: 0 24px 22px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Contact / Form ---------- */
.mini-stats { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.mini-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 12px 18px;
  min-width: 120px;
}
.mini-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: 4px; }
.mini-stat b { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--ink); }

.form-wrapper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 11px; text-transform: uppercase; letter-spacing: .7px; font-weight: 600; color: var(--muted); }
.form-input, .form-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all .3s;
}
.form-input:focus, .form-select:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,61,.12); }
.form-select { appearance: none; }
.form-select option { background: var(--bg); color: var(--ink); }
.form-feedback {
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  margin-top: 4px;
}
.form-feedback.success { background: #E8F8F1; border: 1px solid rgba(18,183,106,.25); color: var(--success); }
.form-feedback.error { background: var(--coral-pale); border: 1px solid rgba(255,107,61,.25); color: var(--coral); }
.hidden { display: none !important; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1E1A14;
  color: #E9E2D8;
  border-radius: var(--rad-lg) var(--rad-lg) 0 0;
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer-title { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #fff; display: block; margin-bottom: 12px; }
.footer-title b { color: var(--coral-soft); }
.footer-tagline { font-size: 13.5px; color: #A79C8A; max-width: 300px; line-height: 1.6; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col .col-title { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff; }
.footer-links-col a { font-size: 13.5px; color: #A79C8A; text-decoration: none; transition: color .25s; }
.footer-links-col a:hover { color: var(--coral-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(169,156,138,.2);
  font-size: 12px;
  color: #A79C8A;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal="scale-up"] { transform: scale(.94); }
[data-reveal].revealed { opacity: 1; transform: translate(0) scale(1); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .hero-section { padding: 140px 0 80px; }
  .section { padding: 80px 0; }
  .automation-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pw-body { grid-template-columns: 64px 1fr; }
}
@media (max-width: 600px) {
  .main-header { padding: 0 18px; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .pw-main { grid-template-columns: 1fr; }
}

/* ---------- Active Nav States ---------- */
.nav-link.active {
  color: var(--coral) !important;
  font-weight: 600;
}

/* ---------- Focus Ring Accessibility ---------- */
.btn:focus-visible, .form-input:focus-visible, .form-select:focus-visible, .menu-toggle:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ---------- Form Input Validation Style ---------- */
.error-msg {
  display: none;
  color: #D93025;
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 4px;
  animation: fadeInError 0.2s ease forwards;
}

@keyframes fadeInError {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-input:user-invalid {
  border-color: #D93025;
  background-color: #FFF5F5;
}

.form-input:user-invalid + .error-msg {
  display: block;
}

.form-input:user-valid {
  border-color: var(--success);
  background-color: #F6FFF9;
}

/* Validation Class Fallbacks */
.form-input.user-invalid-fallback {
  border-color: #D93025;
  background-color: #FFF5F5;
}

.form-input.user-invalid-fallback + .error-msg {
  display: block;
}

.form-input.user-valid-fallback {
  border-color: var(--success);
  background-color: #F6FFF9;
}

/* ---------- Contact Info Cliqueable Link CSS ---------- */
.contact-direct-info {
  margin: 22px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-direct-info .direct-link {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.contact-direct-info .direct-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.contact-direct-info .divider {
  color: var(--line);
}

/* ---------- Botón Flotante de WhatsApp ---------- */
.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  animation: whatsappPulse 2s infinite;
  text-decoration: none;
}
.whatsapp-bubble:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 12px 35px rgba(0, 0, 0, 0.22);
}
.whatsapp-bubble svg {
  transition: transform 0.3s ease;
}
.whatsapp-bubble:hover svg {
  transform: rotate(8deg);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .whatsapp-bubble {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-bubble svg {
    width: 24px;
    height: 24px;
  }
}