/* --- General Wrapper --- */
.chatbot-landing-wrapper {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: #fafbfc;
    color: #212121;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* --- HERO Section --- */
.hero-container {
    background: linear-gradient(120deg, #eb0029 0%, #bb004b 100%);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color:white;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    opacity: .93;
}

.cta-button {
    background: #ff1744;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 36px;
    padding: 15px 44px;
    box-shadow: 0 2px 24px -4px #ff174480;
    transition: background 0.18s;
    cursor: pointer;
}
.cta-button:hover { background: #d50032; }

/* --- BENEFICIOS --- */
.benefits-container {
    background: #fff;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #bb004b;
    margin-bottom: 2.2rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 28px;
    margin: 0 auto;
    max-width: 960px;
}
.benefit-card {
    background: #fafbfc;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 #f7d6de26;
    padding: 32px 22px;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s;
}
.benefit-card:hover {
    box-shadow: 0 10px 44px 0 #d5003211;
    transform: translateY(-6px) scale(1.02);
}
.benefit-title {
    font-size: 1.23rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #eb0029;
}
.benefit-desc {
    font-size: 1rem;
    color: #444;
    opacity: .91;
}

/* --- PLANES --- */
.plans-container {
    background: #fff;
}
.plans-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 0 auto;
}
.plan-card {
    background: linear-gradient(120deg, #f8e9ec 0%, #fff 100%);
    border-radius: 22px;
    box-shadow: 0 2px 26px 0 #f7d6de12;
    min-width: 230px;
    padding: 34px 24px;
    text-align: center;
    transition: box-shadow .17s, transform .17s;
}
.plan-card:hover {
    box-shadow: 0 6px 32px 0 #eb002933;
    transform: translateY(-6px) scale(1.03);
}
.plan-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #bb004b;
    margin-bottom: 0.5rem;
}
.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff1744;
    margin-bottom: 10px;
}
.plan-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 22px;
}
.plan-cta-button {
    background: #eb0029;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 18px -4px #eb002955;
    transition: background .17s;
    cursor: pointer;
}
.plan-cta-button:hover { background: #bb004b; }

/* --- CTA Final --- */
.final-cta-container {
    background: #eb0029;
    color: #fff;
    text-align: center;
    padding-top: 58px;
    padding-bottom: 58px;
}
.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}
.cta-button-final {
    background: #fff;
    color: #eb0029;
    border: none;
    border-radius: 36px;
    padding: 15px 50px;
    font-size: 1.14rem;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 2px 20px -4px #fff6;
    transition: background .18s, color .18s;
    cursor: pointer;
}
.cta-button-final:hover {
    background: #ff1744;
    color: #fff;
}

/* --- CHATBOT WIDGET --- */
.chat-widget {
    position: fixed;
    bottom: 22px;
    right: 24px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 44px 0 #bb004b22;
    width: 340px;
    z-index: 1200;
    overflow: hidden;
    border: 1px solid #f5c0ce;
    display: flex;
    flex-direction: column;
}
@media (max-width: 600px) {
    .chat-widget { width: 97vw; right:1vw; }
}
.chat-header {
    background: linear-gradient(90deg,#eb0029 60%,#bb004b 100%);
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    font-size: 1.14rem;
    border-bottom: 1px solid #f7d6de;
    letter-spacing: .4px;
}
.chat-body {
    background: #fff;
    min-height: 120px;
    max-height: 220px;
    padding: 18px 14px;
    font-size: 1.07rem;
    overflow-y: auto;
    color: #222;
}
.chat-message {
    background: #f8e9ec;
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 8px 13px;
    max-width: 90%;
    color: #bb004b;
    font-weight: 500;
}
.chat-input-area {
    display: flex;
    gap: 8px;
    padding: 14px 13px;
    background: #fff;
    border-top: 1px solid #f7d6de;
}
.chat-input {
    flex: 1;
    border: none;
    outline: none;
    border-radius: 22px;
    padding: 10px 15px;
    font-size: 1rem;
    background: #f8e9ec;
    color: #222;
    transition: box-shadow 0.15s;
}
.chat-input:focus {
    box-shadow: 0 2px 14px #eb00293a;
}
.chat-send-button {
    background: #eb0029;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background .18s;
}
.chat-send-button:hover {
    background: #bb004b;
}

/* --- Utilidades --- */
.py-5 { padding-top: 60px; padding-bottom: 60px; }
.text-center { text-align: center; }

.tiktok-ad-section {
    background: linear-gradient(120deg,#fff 60%,#f8e9ec 100%);
    border-radius: 22px;
    box-shadow: 0 2px 24px 0 #eb002911;
    margin: 50px auto 60px auto;
    max-width: 960px;
    padding: 42px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiktok-ad-flex {
    display: flex;
    gap: 42px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.tiktok-ad-imgbox {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tiktok-ad-img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 16px #eb002933);
}

.tiktok-ad-content {
    flex: 1;
    min-width: 230px;
    max-width: 520px;
}

.tiktok-ad-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1.2px;
}

.tiktok-ad-desc {
    font-size: 1.16rem;
    color: #202020;
    margin-bottom: 16px;
    line-height: 1.6;
}

.tiktok-ad-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}
.tiktok-ad-benefits li {
    font-size: 1rem;
    margin-bottom: 7px;
    color: #bb004b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tiktok-ad-cta {
    background: #eb0029;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 38px;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 2px 20px -4px #eb002977;
    cursor: pointer;
    transition: background .18s;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tiktok-ad-cta:hover {
    background: #ff1744;
}
.tiktok-cta-icon {
    font-size: 1.2em;
    margin-right: 5px;
}

@media (max-width: 700px) {
    .tiktok-ad-section { flex-direction: column; padding: 26px 7vw;}
    .tiktok-ad-flex { flex-direction: column; gap:22px;}
    .tiktok-ad-imgbox { margin-bottom: 18px; }
}

.wa-ad-section {
    background: linear-gradient(120deg, #f5fffa 60%, #e7f9f2 100%);
    border-radius: 20px;
    box-shadow: 0 3px 24px 0 #25d36618;
    margin: 44px auto 56px auto;
    max-width: 1000px;
    padding: 44px 30px 38px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wa-ad-flex {
    display: flex;
    gap: 46px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.wa-ad-imgbox {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-ad-img {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 0 22px #25d36633);
}

.wa-ad-content {
    flex: 1;
    min-width: 250px;
    max-width: 540px;
}

.wa-ad-title {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1.3px;
    color: #1c1c1c;
}

.wa-ad-desc {
    font-size: 1.17rem;
    color: #212121;
    margin-bottom: 18px;
    line-height: 1.65;
}

.wa-ad-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}
.wa-ad-benefits li {
    font-size: 1.03rem;
    margin-bottom: 10px;
    color: #075e54;
    font-weight: 600;
    display: flex;
    align-items: start;
    gap: 9px;
}
.wa-benefit-label {
    font-weight: bold;
    color: #25d366;
    margin-right: 6px;
}
.wa-fire {
    font-size: 1.23em;
    margin-right: 3px;
}

.wa-social-proof {
    font-size: .97rem;
    color: #128c7e;
    margin-bottom: 17px;
    font-weight: 600;
}
.wa-trust-badge {
    background: #e7f9f2;
    color: #075e54;
    border-radius: 12px;
    padding: 6px 14px;
}

.wa-ad-cta {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 33px;
    padding: 15px 44px;
    font-size: 1.13rem;
    font-weight: 800;
    box-shadow: 0 2px 14px -2px #25d36699;
    cursor: pointer;
    transition: background .17s;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-ad-cta:hover {
    background: #128c7e;
}
.wa-cta-icon {
    font-size: 1.23em;
    margin-right: 7px;
}

@media (max-width: 700px) {
    .wa-ad-section { flex-direction: column; padding: 22px 4vw;}
    .wa-ad-flex { flex-direction: column; gap:18px;}
    .wa-ad-imgbox { margin-bottom: 18px; }
}

.virtual-employee-section {
    background: #f8f9fa;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 #bb004b15;
    margin: 56px auto 0 auto;
    max-width: 980px;
    padding: 50px 22px 38px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ve-video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.ve-video {
    width: 100%;
    max-width: 540px;
    border-radius: 18px;
    box-shadow: 0 6px 24px #eb002922;
    background: #000;
}

.ve-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ve-title {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1.3px;
    color: #eb0029;
}
.ve-highlight {
    color: #bb004b;
}
.ve-subtitle {
    font-size: 1.15rem;
    color: #212121;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ve-benefits-list {
    text-align: left;
    margin: 0 auto 20px auto;
    padding-left: 0;
    list-style: none;
    max-width: 410px;
}
.ve-benefits-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff6fa;
    border-radius: 8px;
    padding: 9px 16px;
    box-shadow: 0 1px 10px 0 #eb00290a;
}

.ve-emotion-text {
    font-size: 1.08rem;
    color: #bb004b;
    margin: 16px auto 24px auto;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
}

.ve-emoji {
    font-size: 1.38em;
}

.ve-cta-box {
    margin-top: 12px;
}
.ve-cta-title {
    font-size: 1.25rem;
    color: #212121;
    margin-bottom: 16px;
    font-weight: 800;
}
.ve-cta-button {
    background: #eb0029;
    color: #fff;
    border: none;
    border-radius: 33px;
    padding: 16px 46px;
    font-size: 1.12rem;
    font-weight: 900;
    box-shadow: 0 2px 14px -2px #eb002977;
    cursor: pointer;
    transition: background .17s;
    letter-spacing: .5px;
}
.ve-cta-button:hover {
    background: #bb004b;
}

@media (max-width: 600px) {
    .virtual-employee-section { padding: 22px 3vw; }
    .ve-content { max-width: 98vw; }
    .ve-video { max-width: 99vw; }
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    margin-bottom: 4px;
    background: #f8e9ec;
    border-radius: 16px;
    padding: 8px 18px 8px 14px;
    max-width: 150px;
    min-width: 60px;
}
.typing-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #eb0029;
    display: inline-block;
    opacity: .8;
    animation: typingBlink 1s infinite alternate;
}
.typing-dot:nth-child(2) {
    animation-delay: 0.25s;
}
.typing-dot:nth-child(3) {
    animation-delay: 0.5s;
}
@keyframes typingBlink {
    0% { opacity: .3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.25);}
}


/* Header del chat: layout y drag-hint */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
}
.chat-header--draggable {
  cursor: move;
  user-select: none;
}

/* Título del header */
.chat-header-title {
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}

/* Botón minimizar/expandir */
.chat-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;            /* separa del texto */
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  cursor: pointer;
}
.chat-toggle-btn:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.35);
}
.chat-toggle-btn:active {
  transform: scale(.96);
}

/* Estado colapsado del widget */
.chat-widget.is-collapsed .chat-body,
.chat-widget.is-collapsed .chat-input-area {
  display: none;
}
