@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- 1. CONFIGURACIÓN GENERAL Y VARIABLES --- */
:root {
    --primary-dark: #0b2545;
    --primary-medium: #134074;
    --primary-light: #1e528e;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b3925d;
    --accent-gold-light: #f7f3eb;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark-section: #091a32;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 25px -5px rgba(11, 37, 69, 0.1), 0 10px 10px -5px rgba(11, 37, 69, 0.04);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
}

/* --- 2. LAYOUT Y NAVEGACIÓN --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.brand-text span {
    color: var(--accent-gold);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 550;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* --- 3. HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: 100px 0 120px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

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

.hero-content h1 {
    color: var(--text-light);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: rgba(197, 168, 128, 0.1);
    transform: translateY(-2px);
}

.hero-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-box img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- 4. SECTION HEADER --- */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-dark-section);
    color: var(--text-light);
}

.section-dark h2 {
    color: var(--text-light);
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: #94a3b8;
}

/* --- 5. NOSOTROS / PROPUESTA DE VALOR --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.feature-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.feature-box .icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-box .icon svg {
    width: 24px;
    height: 24px;
}

.feature-box h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- 6. SERVICIOS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 65px;
    height: 65px;
    background-color: var(--accent-gold-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary-dark);
    color: var(--accent-gold);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li svg {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* --- 7. FORMULARIO DE COTIZACIÓN (LIVEWIRE) --- */
.quote-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f7 100%);
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-container {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-span-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--text-muted);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    padding-right: 40px;
}

.error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
}

.form-footer {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

.form-footer .btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
}

/* Success Card */
.success-card {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-icon svg {
    width: 44px;
    height: 44px;
}

.success-card h3 {
    font-size: 1.75rem;
    color: #065f46;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px auto;
}

/* Spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* --- 8. FOOTER --- */
footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    border-top: 5px solid var(--accent-gold);
}

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

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info-list svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-list span {
    color: #cbd5e1;
}

.whatsapp-button-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.whatsapp-button-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* --- 9. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 35px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simplificado para este demo */
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 24px;
    }
}

/* --- 10. CHATBOT FLOTANTE --- */
.chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-trigger-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

/* Contenedor del Avatar Jiren con Marco Dorado Cuadrado (Doble de tamaño) */
.jiren-avatar-container {
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-gold);
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.15);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    transition: var(--transition-smooth);
}

.jiren-character-img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    transform-origin: bottom center;
    margin-bottom: -2px;
}

/* Barra de texto "Pregúntale a JIREN" */
.jiren-text-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 2;
}

.chatbot-trigger-container:hover .jiren-avatar-container {
    transform: scale(1.08);
    border-color: var(--accent-gold-hover);
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.35);
}

.chatbot-trigger-container:hover .jiren-text-bar {
    transform: translateX(-3px);
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.25);
    border-color: var(--accent-gold-hover);
}

.jiren-text-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}

.jiren-text-title strong {
    color: var(--accent-gold);
}

.chevron-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    animation: bounce-chevron 2s infinite;
}

@keyframes bounce-chevron {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Botón cerrar flotante */
.chatbot-btn-close-trigger {
    width: 54px;
    height: 54px;
    background-color: #ef4444;
    border: 2px solid #fca5a5;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
    transition: var(--transition-smooth);
    outline: none;
}

.chatbot-btn-close-trigger:hover {
    transform: scale(1.1);
    background-color: #dc2626;
}

/* Animación de Saludo (Waving Arm/Body) */
@keyframes wave-animation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    5% { transform: translateY(-5px) rotate(-4deg); }
    10% { transform: translateY(-5px) rotate(4deg); }
    15% { transform: translateY(-5px) rotate(-4deg); }
    20% { transform: translateY(-5px) rotate(4deg); }
    25% { transform: translateY(0) rotate(0deg); }
}

.animate-wave {
    animation: wave-animation 6s ease-in-out infinite;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--text-light);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
}

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

.chatbot-header-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    padding: 2px;
}

.chatbot-header h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
}

.status-online {
    font-size: 0.75rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-online .dot {
    width: 6px;
    height: 6px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.chatbot-btn-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.chatbot-btn-close:hover {
    color: var(--accent-gold);
}

.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-row {
    display: flex;
    gap: 8px;
    max-width: 85%;
}

.bot-row {
    align-self: flex-start;
}

.user-row {
    align-self: flex-end;
    flex-direction: row-reverse;
    max-width: 75%;
}

.bot-avatar {
    width: 30px;
    height: 30px;
    background-color: var(--accent-gold-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-avatar svg {
    width: 18px;
    height: 18px;
}

.message-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.bot-row .message-bubble {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-top-left-radius: 0;
    box-shadow: var(--shadow-sm);
}

.user-row .message-bubble {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-top-right-radius: 0;
}

.chatbot-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 38px;
    margin-top: -8px;
}

.btn-option {
    background-color: var(--bg-white);
    border: 1px solid var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-option:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.whatsapp-btn {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: #ffffff !important;
}

.inline-svg {
    width: 14px;
    height: 14px;
}

.chatbot-footer {
    padding: 12px 16px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.chatbot-input-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-input-field {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

.chatbot-input-field:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.15);
}

.chatbot-btn-send {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chatbot-btn-send:hover {
    background-color: var(--primary-medium);
    transform: scale(1.05);
}

.chatbot-btn-send svg {
    width: 18px;
    height: 18px;
}

.chatbot-input-placeholder {
    text-align: center;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

/* Animations */
.animate-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 420px;
        bottom: 70px;
        right: -10px;
    }
}
