/* Estilos específicos para la página completa del chatbot */
.fullpage-chatbot {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 120px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    background-color: var(--dark);
    position: relative;
}

.chatbot-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--primary);
}

.chatbot-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chatbot-title i {
    font-size: 2.5rem;
    color: var(--primary);
}

.chatbot-title h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin: 0;
}

.chatbot-subtitle p {
    color: var(--light);
    opacity: 0.8;
    font-size: 1.1rem;
    margin: 0;
}

.chatbot-conversation {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    max-height: 60vh;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-light);
}

.message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    line-height: 1.5;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    align-self: flex-end;
    background-color: var(--primary);
    color: white;
    border-bottom-right-radius: 5px;
}

.bot-message {
    align-self: flex-start;
    background-color: var(--dark-light);
    color: var(--light);
    border-bottom-left-radius: 5px;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.chatbot-input-container {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-light);
}

.suggestions {
    margin-bottom: 1.5rem;
}

.suggestions p {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.suggestion-btn {
    background-color: var(--dark);
    color: var(--primary-light);
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion-btn:hover {
    background-color: var(--primary-light);
    color: white;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    background-color: var(--dark-light);
    color: var(--light);
    font-size: 1rem;
}

.input-group input:focus {
    outline: 2px solid var(--primary);
}

.input-group button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.input-group button:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .fullpage-chatbot {
        padding: 1.5rem;
        min-height: calc(100vh - 100px);
    }
    
    .chatbot-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .chatbot-title h1 {
        font-size: 1.8rem;
    }
    
    .chatbot-conversation {
        padding: 1.5rem;
        max-height: 55vh;
    }
    
    .message {
        max-width: 90%;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .chatbot-title h1 {
        font-size: 1.5rem;
    }
    
    .chatbot-subtitle p {
        font-size: 1rem;
    }
    
    .chatbot-conversation {
        padding: 1rem;
    }
    
    .input-group input {
        padding: 0.8rem 1.2rem;
    }
    
    .input-group button {
        width: 45px;
        height: 45px;
    }
}