:root {
    --primary: #00d2ff;
    --primary-dark: #3a7bd5;
    --accent: #00f2fe;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 1000px;
}

/* Header & Nav */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--gradient);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 180px 0 60px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding: 10px 25px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--glass);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.5rem;
    color: white;
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Visual Mockups */
.hero-visual {
    position: relative;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dashboard-mockup {
    height: 300px;
    display: flex;
    gap: 15px;
}

.sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-row {
    display: flex;
    gap: 10px;
    height: 100px;
}

.chart {
    flex: 1;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    opacity: 0.3;
}

.bar-1::after {
    height: 60%;
}

.bar-2::after {
    height: 80%;
}

.bar-3::after {
    height: 40%;
}

.table-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-mock .row {
    height: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
}


/* Solutions Cards */
.solutions {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.solution-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 12px;
}

/* SaaS Product Features */
.saas-section {
    padding: 60px 0;
    background: radial-gradient(circle at bottom, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.product-feature.reverse {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
}

.mockup-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
}

.mockup-img {
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stock-mockup::before {
    content: 'Stock Overview';
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.feature-text {
    flex: 1;
}

.product-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.feature-text ul {
    list-style: none;
}

.feature-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-text i {
    color: var(--primary);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-gray);
}

.small-loc {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    opacity: 0.3;
    margin-top: 5px;
}

.footer-links h4,
.footer-cta h4 {
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary-mini {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-secondary-mini:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Portfolio Styles */
.portfolio {
    padding: 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--glass-border);
}

.port-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .port-img {
    transform: scale(1.1);
}

.portfolio-item:hover .port-overlay {
    opacity: 1;
}

.port-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.port-overlay p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.btn-mini {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual,
.solution-card,
.product-feature {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Footer & Mobile adjust */
/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Dashboard Visual Refinement */
.chart-row .chart {
    position: relative;
}

.chart::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

@media (max-width: 991px) {

    .hero-grid,
    .product-feature,
    .product-feature.reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-text {
        justify-content: center;
    }
}

/* --- Alianzas Page Styles --- */
.story-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.02));
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

.story-content h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.exchange-menu {
    padding: 60px 0;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.level-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.level-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.level-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.level-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    min-height: 6rem;
    /* Increased to accommodate 3 lines if necessary */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.level-value {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
    min-height: 3rem;
    /* Fixed height for 2 lines if needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-nights {
    font-size: 1.6rem;
    /* Slightly smaller to fit multi-line hybrid text */
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 15px;
    min-height: 6rem;
    /* Increased to match hybrid text block */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.level-features {
    list-style: none;
    flex-grow: 1;
}

.level-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.level-features i {
    color: var(--primary);
    margin-top: 4px;
}

.conditions-section {
    padding: 60px 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.condition-item {
    text-align: center;
}

.condition-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.condition-item h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.condition-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.trust-section {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-linkedin {
    background: #0077b5;
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {

    .story-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        text-align: center;
    }
}

/* ========================================
   CHATBOT FLOTANTE - SYNERGIALEADS
   ======================================== */

.chatbot-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Botón Flotante Toggle */
.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.5);
}

.chatbot-toggle-icon,
.chatbot-toggle-close {
    color: white;
    font-size: 1.6rem;
    position: absolute;
    transition: all 0.3s ease;
}

.chatbot-toggle-icon {
    opacity: 1;
    transform: scale(1);
}

.chatbot-toggle-close {
    opacity: 0;
    transform: scale(0);
}

.chatbot-container.open .chatbot-toggle-icon {
    opacity: 0;
    transform: scale(0);
}

.chatbot-container.open .chatbot-toggle-close {
    opacity: 1;
    transform: scale(1);
}

/* Pulso animado */
.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chatbot-container.open .chatbot-pulse {
    display: none;
}

/* Ventana del Chat */
.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    backdrop-filter: blur(20px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header del Chat */
.chatbot-header {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15) 0%, rgba(58, 123, 213, 0.15) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Área de Mensajes */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Mensajes */
.chatbot-message {
    display: flex;
    gap: 10px;
    animation: fadeInMessage 0.3s ease;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.bot {
    align-items: flex-start;
}

.chatbot-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.message-content {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chatbot-message.user .message-content {
    align-items: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chatbot-message.bot .message-bubble {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-bottom-left-radius: 6px;
}

.chatbot-message.user .message-bubble {
    background: var(--gradient);
    color: white;
    border-bottom-right-radius: 6px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-gray);
    padding: 0 8px;
}

/* Área de Input */
.chatbot-input-area {
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.chatbot-quick-actions {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.quick-action-btn {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: calc(50% - 4px);
}

.quick-action-btn:hover {
    background: rgba(0, 210, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.quick-action-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.quick-action-desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.chatbot-input-container {
    display: flex;
    gap: 10px;
}

#chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 12px 18px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

#chatbot-input::placeholder {
    color: var(--text-gray);
}

#chatbot-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-send-btn {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* Responsive del Chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        bottom: 75px;
        right: 0;
        border-radius: 20px;
    }

    .quick-action-btn {
        min-width: 100%;
    }

    .chatbot-header {
        padding: 15px;
    }

    .chatbot-name {
        font-size: 0.9rem;
    }
}

/* Botón de WhatsApp dentro del chat */
.chat-whatsapp-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.chat-whatsapp-btn {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.chat-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #1fad53 !important;
}